Browse Source

Perform inverse inter-channel decorrelation and ac-filter

tags/n0.10
Mashiat Sarker Shakkhar 14 years ago
parent
commit
cf6284b273
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      libavcodec/wmalosslessdec.c

+ 4
- 0
libavcodec/wmalosslessdec.c 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 */



Loading…
Cancel
Save