This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit d75b7c225280f270d4ba82acd76c94833f638f21 Author: Gil Portnoy <[email protected]> AuthorDate: Wed Mar 11 16:06:45 2026 +0100 Commit: Michael Niedermayer <[email protected]> CommitDate: Fri Mar 13 23:03:36 2026 +0100 avcodec/aac/aacdec_usac_mps212: Fix typo in huff_data_2d() This is not a security issue 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 219a806a8b..305680d58b 100644 --- a/libavcodec/aac/aacdec_usac_mps212.c +++ b/libavcodec/aac/aacdec_usac_mps212.c @@ -240,7 +240,7 @@ static void huff_data_2d(GetBitContext *gb, int16_t *part0_data[2], int16_t (*da 0, 2*esc_cnt, 0, (2*lav + 1)); for (i = 0; i < esc_cnt; i++) { data[esc_idx[i]][0] = esc_data[0][i] - lav; - data[esc_idx[i]][0] = esc_data[0][i] - lav; + data[esc_idx[i]][1] = esc_data[1][i] - lav; } } } _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
