mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
use _merge instead of _append
Original commit message from CVS: use _merge instead of _append
This commit is contained in:
parent
4866d8a7cb
commit
6d3a854cb1
1 changed files with 1 additions and 1 deletions
|
@ -214,7 +214,7 @@ gst_ac3parse_chain (GstPad *pad, GstBuffer *buf)
|
|||
/* deal with partial frame from previous buffer */
|
||||
if (ac3parse->partialbuf) {
|
||||
|
||||
ac3parse->partialbuf = gst_buffer_append(ac3parse->partialbuf, buf);;
|
||||
ac3parse->partialbuf = gst_buffer_merge(ac3parse->partialbuf, buf);;
|
||||
/* and the one we received.. */
|
||||
gst_buffer_unref(buf);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue