[FFmpeg-cvslog] aacdec_usac: apply specification fix M55715
Lynne
git at videolan.org
Fri Jun 21 11:50:32 EEST 2024
ffmpeg | branch: master | Lynne <dev at lynne.ee> | Wed Jun 12 14:32:22 2024 +0200| [1c3545f053bea8d919608f47d02bc095a006411f] | committer: Lynne
aacdec_usac: apply specification fix M55715
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=1c3545f053bea8d919608f47d02bc095a006411f
---
libavcodec/aac/aacdec_usac.c | 19 +++++++++++++++++++
1 file changed, 19 insertions(+)
diff --git a/libavcodec/aac/aacdec_usac.c b/libavcodec/aac/aacdec_usac.c
index 98e8c1c0bc..065bc869d9 100644
--- a/libavcodec/aac/aacdec_usac.c
+++ b/libavcodec/aac/aacdec_usac.c
@@ -835,6 +835,11 @@ static int decode_usac_stereo_info(AACDecContext *ac, AACUSACConfig *usac,
tns_active = get_bits1(gb);
us->common_window = get_bits1(gb);
+ if (!us->common_window || indep_flag) {
+ memset(us->prev_alpha_q_re, 0, sizeof(us->prev_alpha_q_re));
+ memset(us->prev_alpha_q_im, 0, sizeof(us->prev_alpha_q_im));
+ }
+
if (us->common_window) {
/* ics_info() */
ics1->window_sequence[1] = ics1->window_sequence[0];
@@ -845,6 +850,20 @@ static int decode_usac_stereo_info(AACDecContext *ac, AACUSACConfig *usac,
ics2->use_kb_window[1] = ics2->use_kb_window[0];
ics1->use_kb_window[0] = ics2->use_kb_window[0] = get_bits1(gb);
+ /* If there's a change in the transform sequence, zero out last frame's
+ * stereo prediction coefficients */
+ if ((ics1->window_sequence[0] == EIGHT_SHORT_SEQUENCE &&
+ ics1->window_sequence[1] != EIGHT_SHORT_SEQUENCE) ||
+ (ics1->window_sequence[1] == EIGHT_SHORT_SEQUENCE &&
+ ics1->window_sequence[0] != EIGHT_SHORT_SEQUENCE) ||
+ (ics2->window_sequence[0] == EIGHT_SHORT_SEQUENCE &&
+ ics2->window_sequence[1] != EIGHT_SHORT_SEQUENCE) ||
+ (ics2->window_sequence[1] == EIGHT_SHORT_SEQUENCE &&
+ ics2->window_sequence[0] != EIGHT_SHORT_SEQUENCE)) {
+ memset(us->prev_alpha_q_re, 0, sizeof(us->prev_alpha_q_re));
+ memset(us->prev_alpha_q_im, 0, sizeof(us->prev_alpha_q_im));
+ }
+
if (ics1->window_sequence[0] == EIGHT_SHORT_SEQUENCE) {
ics1->max_sfb = ics2->max_sfb = get_bits(gb, 4);
ue1->scale_factor_grouping = ue2->scale_factor_grouping = get_bits(gb, 7);
More information about the ffmpeg-cvslog
mailing list