aac: allow intensity stereo in right channel
authorKostya Shishkov <kostya.shishkov@gmail.com>
Sat, 24 Oct 2020 15:46:24 +0000 (17:46 +0200)
committerKostya Shishkov <kostya.shishkov@gmail.com>
Sat, 24 Oct 2020 15:46:24 +0000 (17:46 +0200)
nihav-commonfmt/src/codecs/aac.rs

index 9f9588b534dc33347ee5f070c473acf166f34aa8..fc0bad259975611aa15b65434b30e9f2850ec472 100644 (file)
@@ -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 {