mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avfilter/vf_guided: remove excessive parentheses
This commit is contained in:
parent
ccd29bf881
commit
3e4d68f2b6
@ -342,9 +342,8 @@ static int process_frame(FFFrameSync *fs)
|
||||
return ff_filter_frame(outlink, main_frame);
|
||||
|
||||
ret = filter_frame(ctx, &out_frame, main_frame, ref_frame);
|
||||
if (ret < 0) {
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
}
|
||||
av_frame_free(&main_frame);
|
||||
|
||||
return ff_filter_frame(outlink, out_frame);
|
||||
|
Loading…
Reference in New Issue
Block a user