Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
f7b2327b
Commit
f7b2327b
authored
Jun 22, 2008
by
dionoea
Browse files
Don't print (null) when we don't have a filter name.
parent
e03d215f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/misc/filter_chain.c
View file @
f7b2327b
...
...
@@ -170,13 +170,16 @@ static filter_t *filter_chain_AppendFilterInternal( filter_chain_t *p_chain,
vlc_array_append
(
&
p_chain
->
filters
,
p_filter
);
msg_Dbg
(
p_chain
->
p_this
,
"Filter '%s' (%p) appended to chain"
,
psz_name
,
p_filter
);
psz_name
?:
p_filter
->
psz_object_name
,
p_filter
);
return
p_filter
;
error:
msg_Err
(
p_chain
->
p_this
,
"Failed to create video filter '%s'"
,
psz_name
);
if
(
psz_name
)
msg_Err
(
p_chain
->
p_this
,
"Failed to create video filter '%s'"
,
psz_name
);
else
msg_Err
(
p_chain
->
p_this
,
"Failed to create video filter"
);
if
(
p_filter
->
p_module
)
module_Unneed
(
p_filter
,
p_filter
->
p_module
);
es_format_Clean
(
&
p_filter
->
fmt_in
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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