summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2010-02-15 08:20:41 +0100
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2010-02-15 08:20:41 +0100
commit9677ca5037afafe30210da4fb2c31b4588357059 (patch)
tree33699f6b252254a1c48f876104441715c41044ef
parentecffd517510c44c06d664a5af7b45edbaeaee58e (diff)
uridecodebin: Missing decoder errors should be STREAM CODEC_NOT_FOUND
and not CORE MISSING_PLUGIN.
-rw-r--r--gst/playback/gsturidecodebin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/playback/gsturidecodebin.c b/gst/playback/gsturidecodebin.c
index 848c017a..71dbc750 100644
--- a/gst/playback/gsturidecodebin.c
+++ b/gst/playback/gsturidecodebin.c
@@ -682,7 +682,7 @@ unknown_type_cb (GstElement * element, GstPad * pad, GstCaps * caps,
gchar *capsstr;
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));
g_free (capsstr);
}