[FFmpeg-devel] [PATCH 1/6] aacdec_usac: apply specification fix M55715
Lynne
dev at lynne.ee
Sun Jun 16 11:54:43 EEST 2024
---
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);
--
2.45.1.288.g0e0cd299f1
More information about the ffmpeg-devel
mailing list