[FFmpeg-cvslog] avformat/iamf_parse: Remove dead case
Michael Niedermayer
git at videolan.org
Fri Jul 19 05:46:49 EEST 2024
ffmpeg | branch: release/7.0 | Michael Niedermayer <michael at niedermayer.cc> | Mon Jun 3 00:12:54 2024 +0200| [fd789a087eed3c980074816a23ec096d83388297] | committer: James Almer
avformat/iamf_parse: Remove dead case
Fixes: CID1559546 Logically dead code
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
(cherry picked from commit c21fb3624bb7e10f9ee5a182bf9cfbf64990c78e)
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=fd789a087eed3c980074816a23ec096d83388297
---
libavformat/iamf_parse.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/libavformat/iamf_parse.c b/libavformat/iamf_parse.c
index 210cadd85a..013bf5bba4 100644
--- a/libavformat/iamf_parse.c
+++ b/libavformat/iamf_parse.c
@@ -1077,8 +1077,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)
More information about the ffmpeg-cvslog
mailing list