ext/ffmpeg/gstffmpegdeinterlace.c (gst_ffmpegdeinterlace_chain): Always stamp your buffers ! (ooops)

Original commit message from CVS:
* ext/ffmpeg/gstffmpegdeinterlace.c (gst_ffmpegdeinterlace_chain):
Always stamp your buffers ! (ooops)
This commit is contained in:
Luca Ognibene 2005-05-24 12:16:32 +00:00
parent 154ff4d069
commit 97fd0430f1
2 changed files with 7 additions and 0 deletions

View file

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

View file

@ -302,6 +302,8 @@ gst_ffmpegdeinterlace_chain (GstPad * pad, GstData * data)
avpicture_deinterlace (&deinterlace->to_frame, &deinterlace->from_frame,
deinterlace->pixfmt, deinterlace->width, deinterlace->height);
gst_buffer_stamp (outbuf, (const GstBuffer *) inbuf);
gst_buffer_unref (inbuf);
gst_pad_push (deinterlace->srcpad, GST_DATA (outbuf));