ext/ffmpeg/gstffmpegscale.c: Always stamp your buffers !

Original commit message from CVS:
* ext/ffmpeg/gstffmpegscale.c: (gst_ffmpegscale_chain):
Always stamp your buffers !
This commit is contained in:
Edward Hervey 2005-05-24 09:06:00 +00:00
parent 84894a02a9
commit 154ff4d069
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2005-05-24 Edward Hervey <bilboed@bilboed.com>
* ext/ffmpeg/gstffmpegscale.c: (gst_ffmpegscale_chain):
Always stamp your buffers !
2005-05-17 Luca Ognibene <luogni@tin.it>
* ext/ffmpeg/gstffmpegcodecmap.c (gst_ffmpeg_pixfmt_to_caps):

View file

@ -383,6 +383,8 @@ gst_ffmpegscale_chain (GstPad * pad, GstData * data)
img_resample (scale->res, &scale->to_frame, &scale->from_frame);
gst_buffer_stamp (outbuf, (const GstBuffer *) inbuf);
gst_buffer_unref (inbuf);
gst_pad_push (scale->srcpad, GST_DATA (outbuf));