summaryrefslogtreecommitdiff
path: root/ext/ogg
diff options
context:
space:
mode:
authorYoung Han Lee <y.lee@lge.com>2015-04-10 16:05:45 +0900
committerTim-Philipp Müller <tim@centricular.com>2015-05-03 13:33:01 +0100
commitbd40d2e33ff4b112d5ca364ddfaa33efd5cc647b (patch)
tree8436cc42190d99a7a4ec6c5ca33d260ba5c83cab /ext/ogg
parent6af56187e8a793c593ed81d338001f32e6cdcc13 (diff)
oggdemux: remove unused code
These lines have done nothing for about 10 years. https://bugzilla.gnome.org/show_bug.cgi?id=748820
Diffstat (limited to 'ext/ogg')
-rw-r--r--ext/ogg/gstoggdemux.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/ext/ogg/gstoggdemux.c b/ext/ogg/gstoggdemux.c
index c61f37466..c6c652f71 100644
--- a/ext/ogg/gstoggdemux.c
+++ b/ext/ogg/gstoggdemux.c
@@ -2093,7 +2093,6 @@ static GstOggPad *
gst_ogg_chain_new_stream (GstOggChain * chain, guint32 serialno)
{
GstOggPad *ret;
- GstTagList *list;
gchar *name;
GST_DEBUG_OBJECT (chain->ogg,
@@ -2115,12 +2114,6 @@ gst_ogg_chain_new_stream (GstOggChain * chain, guint32 serialno)
if (ogg_stream_init (&ret->map.stream, serialno) != 0)
goto init_failed;
- /* FIXME: either do something with it or remove it */
- list = gst_tag_list_new_empty ();
- gst_tag_list_add (list, GST_TAG_MERGE_REPLACE, GST_TAG_SERIAL, serialno,
- NULL);
- gst_tag_list_unref (list);
-
GST_DEBUG_OBJECT (chain->ogg,
"created new ogg src %p for stream with serial %08x", ret, serialno);