Skip to content

Commit

Permalink
avfilter/vf_coreimage: add missing semicolon
Browse files Browse the repository at this point in the history
Fixes compilation after af8db91.

Signed-off-by: James Almer <[email protected]>
  • Loading branch information
jamrial committed May 5, 2023
1 parent 0fc9c1f commit 6febb2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libavfilter/vf_coreimage.m
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ static int request_frame(AVFilterLink *link)
#if FF_API_FRAME_KEY
frame->key_frame = 1;
#endif
frame->flags |= AV_FRAME_FLAG_KEY
frame->flags |= AV_FRAME_FLAG_KEY;
#if FF_API_INTERLACED_FRAME
frame->interlaced_frame = 0;
#endif
Expand Down

0 comments on commit 6febb2a

Please sign in to comment.