summaryrefslogtreecommitdiffstats
path: root/ext/jpeg/gstjpegdec.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/jpeg/gstjpegdec.c')
-rw-r--r--ext/jpeg/gstjpegdec.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/ext/jpeg/gstjpegdec.c b/ext/jpeg/gstjpegdec.c
index 472b3520..492831fc 100644
--- a/ext/jpeg/gstjpegdec.c
+++ b/ext/jpeg/gstjpegdec.c
@@ -232,8 +232,8 @@ gst_jpeg_dec_init (GstJpegDec * dec)
/* create the sink and src pads */
dec->sinkpad =
- gst_pad_new_from_template (gst_static_pad_template_get
- (&gst_jpeg_dec_sink_pad_template), "sink");
+ gst_pad_new_from_static_template (&gst_jpeg_dec_sink_pad_template,
+ "sink");
gst_element_add_pad (GST_ELEMENT (dec), dec->sinkpad);
gst_pad_set_setcaps_function (dec->sinkpad,
GST_DEBUG_FUNCPTR (gst_jpeg_dec_setcaps));
@@ -241,8 +241,7 @@ gst_jpeg_dec_init (GstJpegDec * dec)
GST_DEBUG_FUNCPTR (gst_jpeg_dec_chain));
dec->srcpad =
- gst_pad_new_from_template (gst_static_pad_template_get
- (&gst_jpeg_dec_src_pad_template), "src");
+ gst_pad_new_from_static_template (&gst_jpeg_dec_src_pad_template, "src");
gst_element_add_pad (GST_ELEMENT (dec), dec->srcpad);
/* setup jpeglib */
@@ -606,6 +605,9 @@ gst_jpeg_dec_setcaps (GstPad * pad, GstCaps * caps)
/* do not extract width/height here. we do that in the chain
* function on a per-frame basis (including the line[] array
* setup) */
+
+ /* But we can take the framerate values and set them on the src pad */
+
return TRUE;
}