From ea185f9d40aa37b681e99bf50e7c0aa991c634ae Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Sat, 24 Oct 2020 17:46:24 +0200 Subject: [PATCH] aac: allow intensity stereo in right channel --- nihav-commonfmt/src/codecs/aac.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nihav-commonfmt/src/codecs/aac.rs b/nihav-commonfmt/src/codecs/aac.rs index 9f9588b..fc0bad2 100644 --- a/nihav-commonfmt/src/codecs/aac.rs +++ b/nihav-commonfmt/src/codecs/aac.rs @@ -931,7 +931,7 @@ impl ChannelPair { self.ics[1].info = self.ics[0].info; } self.ics[0].decode_ics(br, codebooks, m4atype, common_window, true)?; - self.ics[1].decode_ics(br, codebooks, m4atype, common_window, false)?; + self.ics[1].decode_ics(br, codebooks, m4atype, common_window, true)?; if common_window && self.ms_mask_present != 0 { let mut g = 0; for w in 0..self.ics[0].info.num_windows { -- 2.30.2