[FFmpeg-cvslog] avfilter/vf_coreimage: add missing semicolon
James Almer
git at videolan.org
Fri May 5 04:39:01 EEST 2023
ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Thu May 4 22:38:47 2023 -0300| [6febb2a5ffa12b443eed0b8709c17463ff684d37] | committer: James Almer
avfilter/vf_coreimage: add missing semicolon
Fixes compilation after af8db9106c27a1ef11ec69ecbbe7a57462c14367.
Signed-off-by: James Almer <jamrial at gmail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=6febb2a5ffa12b443eed0b8709c17463ff684d37
---
libavfilter/vf_coreimage.m | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/vf_coreimage.m b/libavfilter/vf_coreimage.m
index 41750bfb7e..979eab3b01 100644
--- a/libavfilter/vf_coreimage.m
+++ b/libavfilter/vf_coreimage.m
@@ -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
More information about the ffmpeg-cvslog
mailing list