mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2025-02-01 17:53:16 +00:00
vf_alphamerge: Fix reversed conditional
Reviewed-by: Nicolas George
This commit is contained in:
parent
789f8cb03a
commit
b3841db133
@ -168,7 +168,7 @@ static int request_frame(AVFilterLink *outlink)
|
||||
|
||||
merge->frame_requested = 1;
|
||||
while (merge->frame_requested) {
|
||||
in = ff_bufqueue_peek(&merge->queue_main, 0) ? 0 : 1;
|
||||
in = ff_bufqueue_peek(&merge->queue_main, 0) ? 1 : 0;
|
||||
ret = ff_request_frame(ctx->inputs[in]);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
Loading…
x
Reference in New Issue
Block a user