mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-06 23:48:53 +00:00
update for buffer changes
This commit is contained in:
parent
894be47d5f
commit
2c881eb752
1 changed files with 1 additions and 1 deletions
|
@ -2805,7 +2805,7 @@ gst_ffmpegdec_chain (GstPad * pad, GstObject * parent, GstBuffer * inbuf)
|
||||||
if (ffmpegdec->pcache) {
|
if (ffmpegdec->pcache) {
|
||||||
/* join with previous data */
|
/* join with previous data */
|
||||||
GST_LOG_OBJECT (ffmpegdec, "join parse cache");
|
GST_LOG_OBJECT (ffmpegdec, "join parse cache");
|
||||||
inbuf = gst_buffer_join (ffmpegdec->pcache, inbuf);
|
inbuf = gst_buffer_append (ffmpegdec->pcache, inbuf);
|
||||||
/* no more cached data, we assume we can consume the complete cache */
|
/* no more cached data, we assume we can consume the complete cache */
|
||||||
ffmpegdec->pcache = NULL;
|
ffmpegdec->pcache = NULL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue