aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMashiat Sarker Shakkhar <shahriman_ams@yahoo.com>2011-11-06 02:59:06 +0600
committerMashiat Sarker Shakkhar <shahriman_ams@yahoo.com>2011-11-20 14:51:39 +0600
commit93d2cabd61b1f8c304a300b7e93bdfa89a3815bb (patch)
tree9db5ffb7987315dcf848306f352abede1abb23ce
parent79b16e780d14a80becf666973784caaff2ca5aae (diff)
downloadffmpeg-93d2cabd61b1f8c304a300b7e93bdfa89a3815bb.tar.gz
Add missing syntax elements to WmallDecodeCtx
-rw-r--r--libavcodec/wmalosslessdec.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/wmalosslessdec.c b/libavcodec/wmalosslessdec.c
index e543a79c21..422fd6c979 100644
--- a/libavcodec/wmalosslessdec.c
+++ b/libavcodec/wmalosslessdec.c
@@ -238,6 +238,7 @@ typedef struct WmallDecodeCtx {
int16_t mclms_coeffs_cur[4];
int mclms_prevvalues[64]; // FIXME: should be 32-bit / 16-bit depending on bit-depth
int16_t mclms_updates[64];
+ int mclms_recent;
int movave_scaling;
int quant_stepsize;
@@ -260,7 +261,8 @@ typedef struct WmallDecodeCtx {
int bV3RTM;
- int is_channel_coded[2];
+ int is_channel_coded[2]; // XXX: same question as above applies here too (and below)
+ int update_speed[2];
int transient[2];
int transient_pos[2];