diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2024-06-03 00:12:54 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2024-06-12 00:39:11 +0200 |
commit | c21fb3624bb7e10f9ee5a182bf9cfbf64990c78e (patch) | |
tree | deedf96a4fc2f0b9f319e679997d162ccdaae546 | |
parent | 78d6d13babc62fa14727ee590e5a9661f23a0d9f (diff) | |
download | ffmpeg-c21fb3624bb7e10f9ee5a182bf9cfbf64990c78e.tar.gz |
avformat/iamf_parse: Remove dead case
Fixes: CID1559546 Logically dead code
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rw-r--r-- | libavformat/iamf_parse.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/iamf_parse.c b/libavformat/iamf_parse.c index f8074c2de1..312090b247 100644 --- a/libavformat/iamf_parse.c +++ b/libavformat/iamf_parse.c @@ -1078,8 +1078,6 @@ int ff_iamfdec_read_descriptors(IAMFContext *c, AVIOContext *pb, case IAMF_OBU_IA_MIX_PRESENTATION: ret = mix_presentation_obu(log_ctx, c, pb, obu_size); break; - case IAMF_OBU_IA_TEMPORAL_DELIMITER: - break; default: { int64_t offset = avio_skip(pb, obu_size); if (offset < 0) |