From 97a78863727794265c7cea1c7029cd8f26b9e9b7 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Thu, 22 Jan 2026 09:53:38 +0100 Subject: dabp-decode: fix num_aus and compile with debug info --- dabp-decode/AACDecoder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dabp-decode/AACDecoder.cpp') diff --git a/dabp-decode/AACDecoder.cpp b/dabp-decode/AACDecoder.cpp index 6166560..6e6708a 100644 --- a/dabp-decode/AACDecoder.cpp +++ b/dabp-decode/AACDecoder.cpp @@ -44,7 +44,7 @@ void AACDecoder::decode_frame(uint8_t *data, size_t len) const int core_ch_config = aac_channel_mode ? 2 : 1; const int extension_sr_index = dac_rate ? 3 : 5; // 48/32 kHz - int au_start[6] = {}; + int au_start[7] = {}; int num_aus = dac_rate ? (sbr_flag ? 3 : 6) : (sbr_flag ? 2 : 4); au_start[0] = dac_rate ? (sbr_flag ? 6 : 11) : (sbr_flag ? 5 : 8); -- cgit v1.2.3