[FFmpeg-cvslog] avfilter/vf_showinfo: add missing break to ViewID case
James Almer
git at videolan.org
Tue Sep 24 22:08:36 EEST 2024
ffmpeg | branch: release/7.1 | James Almer <jamrial at gmail.com> | Tue Sep 24 16:08:29 2024 -0300| [f7643454aad674fd4f53cb605555eadd56b0fd96] | committer: James Almer
avfilter/vf_showinfo: add missing break to ViewID case
Missed in 6940a6de2f047ceae414ddebaab30cd9fe35b020.
Signed-off-by: James Almer <jamrial at gmail.com>
(cherry picked from commit fd6cc18d60cd1b61380324c13050b04285eb1fb4)
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f7643454aad674fd4f53cb605555eadd56b0fd96
---
libavfilter/vf_showinfo.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/libavfilter/vf_showinfo.c b/libavfilter/vf_showinfo.c
index 77082505f5..1c9cf6c6a1 100644
--- a/libavfilter/vf_showinfo.c
+++ b/libavfilter/vf_showinfo.c
@@ -859,6 +859,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
break;
case AV_FRAME_DATA_VIEW_ID:
av_log(ctx, AV_LOG_INFO, "view id: %d\n", *(int*)sd->data);
+ break;
default:
if (name)
av_log(ctx, AV_LOG_INFO,
More information about the ffmpeg-cvslog
mailing list