1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-06 16:10:09 +02:00

Perform inverse inter-channel decorrelation and ac-filter

This commit is contained in:
Mashiat Sarker Shakkhar 2011-12-23 13:23:10 +06:00
parent 7409210647
commit cf6284b273

View File

@ -1177,6 +1177,10 @@ static int decode_subframe(WmallDecodeCtx *s)
}
if (s->do_mclms)
revert_mclms(s, subframe_len);
if (s->do_inter_ch_decorr)
revert_inter_ch_decorr(s, subframe_len);
if(s->do_ac_filter)
revert_acfilter(s, subframe_len);
/** handled one subframe */