From: Edward Hervey Date: Fri, 3 Jun 2011 17:00:39 +0000 (+0200) Subject: oggmux: Use the GstPad (and not the GstOggPadData for GstPad functions X-Git-Tag: RELEASE-0.11.0~223 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=266a9be40099d450fe4153f61514334764743559;p=platform%2Fupstream%2Fgst-plugins-base.git oggmux: Use the GstPad (and not the GstOggPadData for GstPad functions For those willing, renaming that 'pad' variable to something more obvious would be nice to avoid such bugs... --- diff --git a/ext/ogg/gstoggmux.c b/ext/ogg/gstoggmux.c index 500fbf4..8b090b2 100644 --- a/ext/ogg/gstoggmux.c +++ b/ext/ogg/gstoggmux.c @@ -799,7 +799,7 @@ gst_ogg_mux_queue_pads (GstOggMux * ogg_mux) * to starting streams on the fly, and some streams (like VP8 * at least) do not send headers packets, as other muxers don't * expect/need them. */ - caps = gst_pad_get_current_caps (GST_PAD_CAST (pad)); + caps = gst_pad_get_current_caps (GST_PAD_CAST (data->pad)); pad->have_type = gst_ogg_stream_setup_map_from_caps_headers (&pad->map, caps);