summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Matthew <jonathan@d14n.org>2009-12-23 15:43:52 +0100
committerWim Taymans <wim@metal.(none)>2009-12-23 15:43:52 +0100
commit138c85117356ad7a558595d168c937461985cad1 (patch)
tree6837f6a6bd05150d5aacbd210bee6cf9f3022520
parent16bc8fe8a1756ad4b30662ddfd3f9a05ff223e51 (diff)
uridecodebin: don't name the queue
There is no reason to name the queue. Fixes #605219
-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 5bbbe1fa9..d9f711553 100644
--- a/gst/playback/gsturidecodebin.c
+++ b/gst/playback/gsturidecodebin.c
@@ -1076,7 +1076,7 @@ analyse_source (GstURIDecodeBin * decoder, gboolean * is_raw,
GstPad *sinkpad;
/* insert a queue element right before the raw pad */
- outelem = gst_element_factory_make ("queue2", "queue");
+ outelem = gst_element_factory_make ("queue2", NULL);
gst_bin_add (GST_BIN_CAST (decoder), outelem);
sinkpad = gst_element_get_static_pad (outelem, "sink");