mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-02 21:48:55 +00:00
gst/qtdemux/qtdemux.c: Fix swapped pad template names, spotted by Thiago Sousa Santos.
Original commit message from CVS: * gst/qtdemux/qtdemux.c: (gst_qtdemux_videosrc_template), (gst_qtdemux_audiosrc_template): Fix swapped pad template names, spotted by Thiago Sousa Santos.
This commit is contained in:
parent
882a710c29
commit
e483f6c651
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2008-04-30 Tim-Philipp Müller <tim.muller at collabora co uk>
|
||||
|
||||
* gst/qtdemux/qtdemux.c: (gst_qtdemux_videosrc_template),
|
||||
(gst_qtdemux_audiosrc_template):
|
||||
Fix swapped pad template names, spotted by Thiago Sousa Santos.
|
||||
|
||||
2008-04-30 Wim Taymans <wim.taymans@collabora.co.uk>
|
||||
|
||||
* ext/speex/gstspeexdec.c: (speex_dec_sink_event),
|
||||
|
|
|
@ -205,13 +205,13 @@ static GstStaticPadTemplate gst_qtdemux_sink_template =
|
|||
);
|
||||
|
||||
static GstStaticPadTemplate gst_qtdemux_videosrc_template =
|
||||
GST_STATIC_PAD_TEMPLATE ("audio_%02d",
|
||||
GST_STATIC_PAD_TEMPLATE ("video_%02d",
|
||||
GST_PAD_SRC,
|
||||
GST_PAD_SOMETIMES,
|
||||
GST_STATIC_CAPS_ANY);
|
||||
|
||||
static GstStaticPadTemplate gst_qtdemux_audiosrc_template =
|
||||
GST_STATIC_PAD_TEMPLATE ("video_%02d",
|
||||
GST_STATIC_PAD_TEMPLATE ("audio_%02d",
|
||||
GST_PAD_SRC,
|
||||
GST_PAD_SOMETIMES,
|
||||
GST_STATIC_CAPS_ANY);
|
||||
|
|
Loading…
Reference in a new issue