From 7fcd7d8cf29c22ff1bbcd1969fa353306a4d49e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20J=C3=A4genstedt?= Date: Wed, 20 Oct 2010 10:21:48 +0200 Subject: [PATCH] matroskademux: Remove useless clearing of send_xiph_headers for Dirac This looks like a mistake when copy-pasting the Theora code. https://bugzilla.gnome.org/show_bug.cgi?id=632682 --- gst/matroska/matroska-demux.c | 1 - 1 file changed, 1 deletion(-) diff --git a/gst/matroska/matroska-demux.c b/gst/matroska/matroska-demux.c index bdaafa8fea..e07526489a 100644 --- a/gst/matroska/matroska-demux.c +++ b/gst/matroska/matroska-demux.c @@ -6495,7 +6495,6 @@ gst_matroska_demux_video_caps (GstMatroskaTrackVideoContext * context->send_xiph_headers = TRUE; } else if (!strcmp (codec_id, GST_MATROSKA_CODEC_ID_VIDEO_DIRAC)) { caps = gst_caps_new_simple ("video/x-dirac", NULL); - context->send_xiph_headers = FALSE; *codec_name = g_strdup_printf ("Dirac"); } else if (!strcmp (codec_id, GST_MATROSKA_CODEC_ID_VIDEO_VP8)) { caps = gst_caps_new_simple ("video/x-vp8", NULL);