1
0
Fork 0

avfilter/vf_coreimage: add missing semicolon

Fixes compilation after af8db9106c.

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2023-05-04 22:38:47 -03:00
parent 0fc9c1f682
commit 6febb2a5ff
1 changed files with 1 additions and 1 deletions

View File

@ -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