Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
VLC
Commits
cb07a077
Commit
cb07a077
authored
Jan 19, 2023
by
Alexandre Janniaux
Committed by
François Cartegnie
Jan 21, 2023
Browse files
video_chroma: chain: remove useless braces
parent
422ea417
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/video_chroma/chain.c
View file @
cb07a077
...
...
@@ -438,15 +438,12 @@ static int CreateChain( filter_t *p_filter, const es_format_t *p_fmt_mid )
filter_sys_t
*
p_sys
=
p_filter
->
p_sys
;
filter_chain_Reset
(
p_sys
->
p_chain
,
&
p_filter
->
fmt_in
,
p_filter
->
vctx_in
,
&
p_filter
->
fmt_out
);
{
if
(
filter_chain_AppendConverter
(
p_sys
->
p_chain
,
p_fmt_mid
)
)
return
VLC_EGENERIC
;
}
if
(
filter_chain_AppendConverter
(
p_sys
->
p_chain
,
p_fmt_mid
)
)
return
VLC_EGENERIC
;
if
(
filter_chain_AppendConverter
(
p_sys
->
p_chain
,
&
p_filter
->
fmt_out
)
)
goto
error
;
{
if
(
filter_chain_AppendConverter
(
p_sys
->
p_chain
,
&
p_filter
->
fmt_out
)
)
goto
error
;
}
p_filter
->
vctx_out
=
filter_chain_GetVideoCtxOut
(
p_sys
->
p_chain
);
return
VLC_SUCCESS
;
error:
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment