diff options
author | Mashiat Sarker Shakkhar <shahriman_ams@yahoo.com> | 2011-11-05 02:32:56 +0600 |
---|---|---|
committer | Mashiat Sarker Shakkhar <shahriman_ams@yahoo.com> | 2011-11-20 14:51:39 +0600 |
commit | 79b16e780d14a80becf666973784caaff2ca5aae (patch) | |
tree | adfe3009527db6cc405370dbc63eacd3f523d007 | |
parent | 87b9c23b9a10f9a6feb9226b44e797f2ff1d1be5 (diff) | |
download | ffmpeg-79b16e780d14a80becf666973784caaff2ca5aae.tar.gz |
Add .recent syntax element to cdlms struct
-rw-r--r-- | libavcodec/wmalosslessdec.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libavcodec/wmalosslessdec.c b/libavcodec/wmalosslessdec.c index 0642c9ce38..e543a79c21 100644 --- a/libavcodec/wmalosslessdec.c +++ b/libavcodec/wmalosslessdec.c @@ -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]; |