From 3a9c675a6819ecd54c84d1810b7abe055fde3864 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Thu, 11 Apr 2002 20:42:25 +0000 Subject: GstPadTemplate <-> gst_pad_template <-> GST_PAD_TEMPLATE same with *factory and typefind. Original commit message from CVS: GstPadTemplate <-> gst_pad_template <-> GST_PAD_TEMPLATE same with *factory and typefind. also, some -Werror fixes. --- gst/avi/audiocodecs.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gst/avi/audiocodecs.c') diff --git a/gst/avi/audiocodecs.c b/gst/avi/audiocodecs.c index 05c8862c..c734957e 100644 --- a/gst/avi/audiocodecs.c +++ b/gst/avi/audiocodecs.c @@ -83,9 +83,9 @@ static GstPad *gst_avi_decoder_get_audio_srcpad_MPEG(GstAviDecoder *avi_decoder, GstElement *parse_audio, *decode; GstPad *srcpad, *sinkpad, *newpad; - parse_audio = gst_elementfactory_make("mp3parse", "parse_audio"); + parse_audio = gst_element_factory_make("mp3parse", "parse_audio"); g_return_val_if_fail(parse_audio != NULL, NULL); - decode = gst_elementfactory_make("mpg123", "decode_audio"); + decode = gst_element_factory_make("mpg123", "decode_audio"); g_return_val_if_fail(decode != NULL, NULL); gst_element_set_state(GST_ELEMENT(gst_object_get_parent(GST_OBJECT(avi_decoder))), GST_STATE_PAUSED); -- cgit