mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avutil/frame: continue to process bufs even if some are empty
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
a67304d05f
commit
5a65fea655
@ -259,7 +259,9 @@ int av_frame_ref(AVFrame *dst, AVFrame *src)
|
||||
}
|
||||
|
||||
/* ref the buffers */
|
||||
for (i = 0; i < FF_ARRAY_ELEMS(src->buf) && src->buf[i]; i++) {
|
||||
for (i = 0; i < FF_ARRAY_ELEMS(src->buf); i++) {
|
||||
if (!src->buf[i])
|
||||
continue;
|
||||
dst->buf[i] = av_buffer_ref(src->buf[i]);
|
||||
if (!dst->buf[i]) {
|
||||
ret = AVERROR(ENOMEM);
|
||||
@ -366,8 +368,9 @@ int av_frame_is_writable(AVFrame *frame)
|
||||
if (!frame->buf[0])
|
||||
return 0;
|
||||
|
||||
for (i = 0; i < FF_ARRAY_ELEMS(frame->buf) && frame->buf[i]; i++)
|
||||
ret &= !!av_buffer_is_writable(frame->buf[i]);
|
||||
for (i = 0; i < FF_ARRAY_ELEMS(frame->buf); i++)
|
||||
if (frame->buf[i])
|
||||
ret &= !!av_buffer_is_writable(frame->buf[i]);
|
||||
for (i = 0; i < frame->nb_extended_buf; i++)
|
||||
ret &= !!av_buffer_is_writable(frame->extended_buf[i]);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user