summaryrefslogtreecommitdiff
path: root/libavcodec/av1dec.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-03-15 15:00:33 +0100
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-03-15 16:58:42 +0100
commit85b185b504759c794d872ade303bb9be4f79cdcc (patch)
tree2070db3a82acef08f346cf2d3e1198ceedac350f /libavcodec/av1dec.c
parent0d35634eaa6cd2b41292518489d559b030c00702 (diff)
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>
Diffstat (limited to 'libavcodec/av1dec.c')
-rw-r--r--libavcodec/av1dec.c1
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;