mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +02:00
vf_alphamerge: Fix reversed conditional
Reviewed-by: Nicolas George
This commit is contained in:
committed by
Carl Eugen Hoyos
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;
|
||||
|
||||
Reference in New Issue
Block a user