Browse Source

Add .recent syntax element to cdlms struct

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

+ 4
- 1
libavcodec/wmalosslessdec.c View File

@@ -250,7 +250,10 @@ typedef struct WmallDecodeCtx {
int16_t coefs[256];
int lms_prevvalues[512]; // FIXME: see above
int16_t lms_updates[512]; // and here too
} cdlms[2][9];
int recent;
} cdlms[2][9]; /* XXX: Here, 2 is the max. no. of channels allowed,
9 is the maximum no. of filters per channel.
Question is, why 2 if WMALL_MAX_CHANNELS == 8 */


int cdlms_ttl[2];


Loading…
Cancel
Save