mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 20:51:13 +00:00
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:
parent
cf9c6a2271
commit
674e2309ac
1 changed files with 0 additions and 6 deletions
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue