mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
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:
parent
154ff4d069
commit
97fd0430f1
2 changed files with 7 additions and 0 deletions
|
@ -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):
|
||||
|
|
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue