uridecodebin: Don't post missing plugin messages twice

decodebin2 already posts them after emitting the unknown-type signal,
there's no need to post another one.
This commit is contained in:
Sebastian Dröge 2009-09-24 14:56:48 +02:00
parent cf9c6a2271
commit 674e2309ac

View file

@ -33,8 +33,6 @@
#include <gst/gst.h>
#include <gst/gst-i18n-plugin.h>
#include <gst/pbutils/missing-plugins.h>
#include "gstfactorylists.h"
#include "gstplay-marshal.h"
#include "gstplay-enum.h"
@ -622,12 +620,8 @@ static void
unknown_type_cb (GstElement * element, GstPad * pad, GstCaps * caps,
GstURIDecodeBin * decoder)
{
GstMessage *msg;
gchar *capsstr;
msg = gst_missing_decoder_message_new (GST_ELEMENT_CAST (decoder), caps);
gst_element_post_message (GST_ELEMENT_CAST (decoder), msg);
capsstr = gst_caps_to_string (caps);
GST_ELEMENT_WARNING (decoder, CORE, MISSING_PLUGIN,
(_("No decoder available for type \'%s\'."), capsstr), (NULL));