summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Hervey <bilboed@bilboed.com>2005-05-24 09:06:00 +0000
committerEdward Hervey <bilboed@bilboed.com>2005-05-24 09:06:00 +0000
commit154ff4d069f528d71d2e28cf7435ad291d90e2ca (patch)
tree089b8c8d67e28c9b90c77794b2dcac727d7a2e6e
parent84894a02a972a6b5cba31c6b3c953d2e606f5819 (diff)
ext/ffmpeg/gstffmpegscale.c: Always stamp your buffers !
Original commit message from CVS: * ext/ffmpeg/gstffmpegscale.c: (gst_ffmpegscale_chain): Always stamp your buffers !
-rw-r--r--ChangeLog5
-rw-r--r--ext/ffmpeg/gstffmpegscale.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 7f6c589fc6..7efdd7eb68 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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):
diff --git a/ext/ffmpeg/gstffmpegscale.c b/ext/ffmpeg/gstffmpegscale.c
index db095cfc44..d787be8e75 100644
--- a/ext/ffmpeg/gstffmpegscale.c
+++ b/ext/ffmpeg/gstffmpegscale.c
@@ -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));