mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-26 00:58:12 +00:00
uridecodebin: Missing decoder errors should be STREAM CODEC_NOT_FOUND
and not CORE MISSING_PLUGIN.
This commit is contained in:
parent
ecffd51751
commit
9677ca5037
1 changed files with 1 additions and 1 deletions
|
@ -682,7 +682,7 @@ unknown_type_cb (GstElement * element, GstPad * pad, GstCaps * caps,
|
||||||
gchar *capsstr;
|
gchar *capsstr;
|
||||||
|
|
||||||
capsstr = gst_caps_to_string (caps);
|
capsstr = gst_caps_to_string (caps);
|
||||||
GST_ELEMENT_WARNING (decoder, CORE, MISSING_PLUGIN,
|
GST_ELEMENT_WARNING (decoder, STREAM, CODEC_NOT_FOUND,
|
||||||
(_("No decoder available for type \'%s\'."), capsstr), (NULL));
|
(_("No decoder available for type \'%s\'."), capsstr), (NULL));
|
||||||
g_free (capsstr);
|
g_free (capsstr);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue