summaryrefslogtreecommitdiffstats
path: root/ext/dv
diff options
context:
space:
mode:
authorJan Schmidt <thaytan@mad.scientist.com>2007-03-04 13:41:00 +0000
committerJan Schmidt <thaytan@mad.scientist.com>2007-03-04 13:41:00 +0000
commit382d7f0ba54a4752275446e613b1b295203e9dbf (patch)
tree8991469dee051c6494c971bbd9cc7607e05889a1 /ext/dv
parent63886c8b3c8a06f7b3815d862ae97175a0175991 (diff)
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.
Diffstat (limited to 'ext/dv')
-rw-r--r--ext/dv/gstdvdec.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/ext/dv/gstdvdec.c b/ext/dv/gstdvdec.c
index 1e7fa8e6..11088c8a 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;