mirror of https://git.ffmpeg.org/ffmpeg.git
AAC encoder: don't apply MS on special bands
Change the condition for application of the M/S transform to match that of the decoder. Namely, that no special coding books must be in use in either channel. While the condition ought to be equivalent to the current one when the invariant of is_mask is kept, matching the decoder's condition is safer and easier to maintain.
This commit is contained in:
parent
00d481b2c3
commit
509f168017
|
@ -300,8 +300,8 @@ static void apply_mid_side_stereo(ChannelElement *cpe)
|
|||
* ms_mask is set.
|
||||
*/
|
||||
if (!cpe->ms_mask[w*16 + g] || cpe->is_mask[w*16 + g]
|
||||
|| cpe->ch[0].band_type[w*16 + g] == NOISE_BT
|
||||
|| cpe->ch[1].band_type[w*16 + g] == NOISE_BT) {
|
||||
|| cpe->ch[0].band_type[w*16 + g] >= NOISE_BT
|
||||
|| cpe->ch[1].band_type[w*16 + g] >= NOISE_BT) {
|
||||
start += ics->swb_sizes[g];
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue