This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

commit b8a4d8a18d655042214e184b329653d886df2ffa
Author:     Lynne <[email protected]>
AuthorDate: Mon Mar 2 08:51:14 2026 +0100
Commit:     Lynne <[email protected]>
CommitDate: Sat Mar 7 11:56:47 2026 +0000

    aacdec_usac_mps212: fix CID 1681700
    
    Fixes Coverity issue #1681700
---
 libavcodec/aac/aacdec_usac_mps212.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/libavcodec/aac/aacdec_usac_mps212.c 
b/libavcodec/aac/aacdec_usac_mps212.c
index 8c4e4673fb..6c1f3acb80 100644
--- a/libavcodec/aac/aacdec_usac_mps212.c
+++ b/libavcodec/aac/aacdec_usac_mps212.c
@@ -146,6 +146,8 @@ static void pcm_decode(GetBitContext *gb, int16_t *data0, 
int16_t *data1,
         return;
     };
 
+    av_assert1(data0 || data1);
+
     int pcm_chunk_size[7] = { 0 };
 
     int tmp = 1;

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to