lavf/cover_rect: Fix logic check issue
Fix logic check issue #6741 Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
This commit is contained in:
@@ -152,7 +152,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
|
||||
}
|
||||
|
||||
if (!xendptr || *xendptr || !yendptr || *yendptr ||
|
||||
!wendptr || *wendptr || !hendptr || !hendptr
|
||||
!wendptr || *wendptr || !hendptr || *hendptr
|
||||
) {
|
||||
return ff_filter_frame(ctx->outputs[0], in);
|
||||
}
|
||||
|
Reference in New Issue
Block a user