mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-24 03:39:45 +00:00
lavfi/fifo: add assert to ensure request was successfull.
We would crash a moment later anyway if this fails. Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
304ebed586
commit
4695ee71b0
@ -239,6 +239,7 @@ static int request_frame(AVFilterLink *outlink)
|
||||
if (!fifo->root.next) {
|
||||
if ((ret = ff_request_frame(outlink->src->inputs[0])) < 0)
|
||||
return ret;
|
||||
av_assert0(fifo->root.next);
|
||||
}
|
||||
|
||||
/* by doing this, we give ownership of the reference to the next filter,
|
||||
|
Loading…
Reference in New Issue
Block a user