gst/: Fix build against core CVS.
authorTim-Philipp Müller <tim@centricular.net>
Wed, 11 Jul 2007 23:43:25 +0000 (23:43 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Wed, 11 Jul 2007 23:43:25 +0000 (23:43 +0000)
Original commit message from CVS:
* gst/interleave/deinterleave.c: (gst_deinterleave_process):
* gst/vmnc/vmncdec.c: (vmnc_make_buffer):
Fix build against core CVS.

ChangeLog
gst/interleave/deinterleave.c
gst/vmnc/vmncdec.c

index f6a4334..3098123 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-07-12  Tim-Philipp Müller  <tim at centricular dot net>
+
+       * gst/interleave/deinterleave.c: (gst_deinterleave_process):
+       * gst/vmnc/vmncdec.c: (vmnc_make_buffer):
+         Fix build against core CVS.
+
 2007-07-09  Stefan Kost  <ensonic@users.sf.net>
 
        * REQUIREMENTS:
index 81bf938..71c6a41 100644 (file)
@@ -251,7 +251,8 @@ gst_deinterleave_process (GstDeinterleave * self, GstBuffer * buf)
       goto alloc_buffer_bad_size;
 
     if (buffers_out[i])
-      gst_buffer_stamp (buffers_out[i], buf);
+      gst_buffer_copy_metadata (buffers_out[i], buf,
+          GST_BUFFER_COPY_TIMESTAMPS);
   }
 
   /* do the thing */
index 2a9a7a6..701b18e 100644 (file)
@@ -488,7 +488,7 @@ vmnc_make_buffer (GstVMncDec * dec, GstBuffer * inbuf)
   }
 
   if (inbuf) {
-    gst_buffer_stamp (buf, inbuf);
+    gst_buffer_copy_metadata (buf, inbuf, GST_BUFFER_COPY_TIMESTAMPS);
   }
 
   gst_buffer_set_caps (buf, dec->caps);