Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
George Kiagiadakis
gst-plugins-base
Commits
1f41a160
Commit
1f41a160
authored
Jun 05, 2014
by
Sebastian Dröge
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uridecodebin: Also catch CODEC_NOT_FOUND errors and delay them until all decodebins are done
parent
0f43e801
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
gst/playback/gsturidecodebin.c
gst/playback/gsturidecodebin.c
+3
-1
No files found.
gst/playback/gsturidecodebin.c
View file @
1f41a160
...
...
@@ -2414,7 +2414,9 @@ handle_message (GstBin * bin, GstMessage * msg)
* error from no_more_pads_full()
*/
gst_message_parse_error
(
msg
,
&
err
,
NULL
);
if
(
g_error_matches
(
err
,
GST_CORE_ERROR
,
GST_CORE_ERROR_MISSING_PLUGIN
))
{
if
(
g_error_matches
(
err
,
GST_CORE_ERROR
,
GST_CORE_ERROR_MISSING_PLUGIN
)
||
g_error_matches
(
err
,
GST_STREAM_ERROR
,
GST_STREAM_ERROR_CODEC_NOT_FOUND
))
{
no_more_pads_full
(
GST_ELEMENT
(
GST_MESSAGE_SRC
(
msg
)),
FALSE
,
GST_URI_DECODE_BIN
(
bin
));
gst_message_unref
(
msg
);
...
...
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