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

Git pushed a commit to branch master
in repository ffmpeg.

commit e1d9080e6a3c967a1bc7a01ec9a2bd586e6750d9
Author:     Gil Portnoy <[email protected]>
AuthorDate: Wed Mar 11 16:16:24 2026 +0100
Commit:     Michael Niedermayer <[email protected]>
CommitDate: Fri Mar 13 23:03:36 2026 +0100

    avcodec/aac/aacdec_usac_mps212: Fix wrong end_band parameter to 
coarse_to_fine()
    
    note, all call sites set start_band=0, this is thus a cosmetic fix
    
    Signed-off-by: Michael Niedermayer <[email protected]>
---
 libavcodec/aac/aacdec_usac_mps212.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/aac/aacdec_usac_mps212.c 
b/libavcodec/aac/aacdec_usac_mps212.c
index 305680d58b..e863edc319 100644
--- a/libavcodec/aac/aacdec_usac_mps212.c
+++ b/libavcodec/aac/aacdec_usac_mps212.c
@@ -860,7 +860,7 @@ int ff_aac_map_index_data(AACMPSLosslessData *ld,
     for (int i = 0; i < nb_param_sets; i++) {
         if (ld->coarse_quant_no[i] == 1) {
             coarse_to_fine(tmp_idx_data[i], data_type, start_band,
-                           stop_band - start_band);
+                           stop_band);
             ld->coarse_quant_no[i] = 0;
         }
     }

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

Reply via email to