From 0dd2766d834e47f1a410630da106e08f217e7b2e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Fri, 10 Aug 2012 10:45:09 +0100 Subject: [PATCH] oggmux: pick delta pad earlier during header parsing and based on video/non-video Pick delta pad earlier during header parsing, and pick it based on whether it's a video stream or not rather than some rather byzantine signalling from theoraenc etc. which would set the delta flag on header packets which oggmux would then pick up and determine that this is a "delta-able" stream. Since the new videodecoder-based theoraenc didn't do that any more, we would only see the first delta flag on the second video packet, which is after we've already muxed a few audio packets flagged as key units, which trips up the unit test. Fixes pipelines/oggmux unit test. https://bugzilla.gnome.org/show_bug.cgi?id=679958 --- ext/ogg/gstoggmux.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ext/ogg/gstoggmux.c b/ext/ogg/gstoggmux.c index ae6dc27..4d60af3 100644 --- a/ext/ogg/gstoggmux.c +++ b/ext/ogg/gstoggmux.c @@ -991,6 +991,11 @@ gst_ogg_mux_queue_pads (GstOggMux * ogg_mux, gboolean * popped) gst_collect_pads_set_waiting (ogg_mux->collect, (GstCollectData *) pad, FALSE); } + + if (pad->map.is_video && ogg_mux->delta_pad == NULL) { + ogg_mux->delta_pad = pad; + GST_INFO_OBJECT (pad, "selected delta pad"); + } } if (caps) gst_caps_unref (caps); -- 2.7.4