diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-03-15 15:00:33 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-03-15 16:58:42 +0100 |
commit | 85b185b504759c794d872ade303bb9be4f79cdcc (patch) | |
tree | 2070db3a82acef08f346cf2d3e1198ceedac350f | |
parent | 0d35634eaa6cd2b41292518489d559b030c00702 (diff) | |
download | ffmpeg-85b185b504759c794d872ade303bb9be4f79cdcc.tar.gz |
avcodec/av1dec: Fix unintended fallthrough
Fixes Coverity issue #1521982.
Reviewed-by: James Almer <jamrial@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavcodec/av1dec.c | 1 |
1 files changed, 1 insertions, 0 deletions
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; |