mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
ext/lame/gstlame.c: Set caps on outgoing buffers.
Original commit message from CVS: * ext/lame/gstlame.c: (gst_lame_chain): Set caps on outgoing buffers.
This commit is contained in:
parent
61d0ed02a5
commit
23aedb3b9d
3 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-09-19 Wim Taymans <wim@fluendo.com>
|
||||
|
||||
* ext/lame/gstlame.c: (gst_lame_chain):
|
||||
Set caps on outgoing buffers.
|
||||
|
||||
2005-09-16 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* ext/lame/gstlame.c:
|
||||
|
|
2
common
2
common
|
@ -1 +1 @@
|
|||
Subproject commit 39250a956e1dfc010fe9f9d93ca1e2c3a343cdca
|
||||
Subproject commit eac450a673cd1d3a606fe75399d0cd1fcb1d0d7b
|
|
@ -1017,6 +1017,7 @@ gst_lame_chain (GstPad * pad, GstBuffer * buf)
|
|||
GST_BUFFER_TIMESTAMP (outbuf) = lame->last_ts;
|
||||
GST_BUFFER_OFFSET (outbuf) = lame->last_offs;
|
||||
GST_BUFFER_DURATION (outbuf) = lame->last_duration;
|
||||
gst_buffer_set_caps (outbuf, GST_PAD_CAPS (lame->srcpad));
|
||||
|
||||
result = gst_pad_push (lame->srcpad, outbuf);
|
||||
|
||||
|
|
Loading…
Reference in a new issue