ffmpeg | branch: master | Andreas Rheinhardt <[email protected]> | Wed Mar 15 15:00:33 2023 +0100| [85b185b504759c794d872ade303bb9be4f79cdcc] | committer: Andreas Rheinhardt
avcodec/av1dec: Fix unintended fallthrough Fixes Coverity issue #1521982. Reviewed-by: James Almer <[email protected]> Signed-off-by: Andreas Rheinhardt <[email protected]> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=85b185b504759c794d872ade303bb9be4f79cdcc --- libavcodec/av1dec.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavcodec/av1dec.c b/libavcodec/av1dec.c index a80e37e33f..4d3b559b96 100644 --- a/libavcodec/av1dec.c +++ b/libavcodec/av1dec.c @@ -911,6 +911,7 @@ static int export_itut_t35(AVCodecContext *avctx, AVFrame *frame, default: // ignore unsupported identifiers break; } + break; } case 0x3C: { // smpte_provider_code AVDynamicHDRPlus *hdrplus; _______________________________________________ ffmpeg-cvslog mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
