mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-16 21:36:35 +00:00
gst/: Fix build against core CVS.
Original commit message from CVS: * gst/interleave/deinterleave.c: (gst_deinterleave_process): * gst/vmnc/vmncdec.c: (vmnc_make_buffer): Fix build against core CVS.
This commit is contained in:
parent
f5671ae2a6
commit
9b07457ff7
3 changed files with 9 additions and 2 deletions
|
@ -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:
|
||||
|
|
|
@ -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 */
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue