mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
ext/ogg/gstogmparse.c: Fix compile again.
Original commit message from CVS: * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init): Fix compile again.
This commit is contained in:
parent
44ae8114e6
commit
c70a2b383a
2 changed files with 6 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2005-11-16 Wim Taymans <wim@fluendo.com>
|
||||||
|
|
||||||
|
* ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init):
|
||||||
|
Fix compile again.
|
||||||
|
|
||||||
2005-11-16 Thomas Vander Stichele <thomas at apestaart dot org>
|
2005-11-16 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* ext/libvisual/visual.c: (gst_visual_init):
|
* ext/libvisual/visual.c: (gst_visual_init):
|
||||||
|
|
|
@ -341,11 +341,9 @@ gst_ogm_parse_init (GstOgmParse * ogm)
|
||||||
static void
|
static void
|
||||||
gst_ogm_audio_parse_init (GstOgmParse * ogm)
|
gst_ogm_audio_parse_init (GstOgmParse * ogm)
|
||||||
{
|
{
|
||||||
GstPadTemplate *templ;
|
|
||||||
|
|
||||||
/* create the pads */
|
/* create the pads */
|
||||||
ogm->sinkpad =
|
ogm->sinkpad =
|
||||||
gst_pad_new_from_template (&ogm_audio_parse_sink_template_factory,
|
gst_pad_new_from_static_template (&ogm_audio_parse_sink_template_factory,
|
||||||
"sink");
|
"sink");
|
||||||
gst_pad_set_query_function (ogm->sinkpad, gst_ogm_parse_sink_query);
|
gst_pad_set_query_function (ogm->sinkpad, gst_ogm_parse_sink_query);
|
||||||
gst_pad_set_chain_function (ogm->sinkpad, gst_ogm_parse_chain);
|
gst_pad_set_chain_function (ogm->sinkpad, gst_ogm_parse_chain);
|
||||||
|
|
Loading…
Reference in a new issue