This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit e7e001a8040a1e0f743dc864b12728c4c48d44ec Author: Lynne <[email protected]> AuthorDate: Mon Mar 2 08:47:50 2026 +0100 Commit: Lynne <[email protected]> CommitDate: Sat Mar 7 11:56:47 2026 +0000 aacdec_usac_mps212: fix CID 1681705 Fixes Coverity issue #1681705 --- libavcodec/aac/aacdec_usac_mps212.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavcodec/aac/aacdec_usac_mps212.c b/libavcodec/aac/aacdec_usac_mps212.c index 43b4930e1a..67c6ec872e 100644 --- a/libavcodec/aac/aacdec_usac_mps212.c +++ b/libavcodec/aac/aacdec_usac_mps212.c @@ -21,6 +21,7 @@ #include "aacdec_tab.h" #include "libavcodec/get_bits.h" #include "libavutil/macros.h" +#include "libavutil/avassert.h" #include "aacdec_usac_mps212.h" @@ -70,6 +71,8 @@ static int huff_data_1d(GetBitContext *gb, int16_t *data, int data_bands, if (data_bands == 1) hcod1D = ff_aac_hcod1D_IPD[!diff_freq]; break; + default: + av_unreachable("Invalid data type"); } if (p0_flag) _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
