From 382d7f0ba54a4752275446e613b1b295203e9dbf Mon Sep 17 00:00:00 2001 From: Jan Schmidt Date: Sun, 4 Mar 2007 13:41:00 +0000 Subject: [PATCH] ext/dv/gstdvdec.c: Use gst_pad_new_from_static_template instead of static_pad_template_get+pad_new. Original commit message from CVS: * ext/dv/gstdvdec.c: (gst_dvdec_init): Use gst_pad_new_from_static_template instead of static_pad_template_get+pad_new. --- ChangeLog | 6 ++++++ ext/dv/gstdvdec.c | 10 ++-------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index 01e3902..e019360 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-03-04 Jan Schmidt + + * ext/dv/gstdvdec.c: (gst_dvdec_init): + Use gst_pad_new_from_static_template instead of + static_pad_template_get+pad_new. + 2007-03-03 Tim-Philipp Müller Patch by: Loïc Minier diff --git a/ext/dv/gstdvdec.c b/ext/dv/gstdvdec.c index 1e7fa8e..11088c8 100644 --- a/ext/dv/gstdvdec.c +++ b/ext/dv/gstdvdec.c @@ -204,21 +204,15 @@ gst_dvdec_class_init (GstDVDecClass * klass) static void gst_dvdec_init (GstDVDec * dvdec, GstDVDecClass * g_class) { - dvdec->sinkpad = - gst_pad_new_from_template (gst_static_pad_template_get (&sink_temp), - "sink"); + dvdec->sinkpad = gst_pad_new_from_static_template (&sink_temp, "sink"); gst_pad_set_setcaps_function (dvdec->sinkpad, GST_DEBUG_FUNCPTR (gst_dvdec_sink_setcaps)); gst_pad_set_chain_function (dvdec->sinkpad, gst_dvdec_chain); gst_pad_set_event_function (dvdec->sinkpad, gst_dvdec_sink_event); gst_element_add_pad (GST_ELEMENT (dvdec), dvdec->sinkpad); - dvdec->srcpad = - gst_pad_new_from_template (gst_static_pad_template_get (&src_temp), - "src"); - + dvdec->srcpad = gst_pad_new_from_static_template (&src_temp, "src"); gst_pad_use_fixed_caps (dvdec->srcpad); - gst_element_add_pad (GST_ELEMENT (dvdec), dvdec->srcpad); dvdec->framerate_numerator = 0; -- 2.7.4