diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-12-22 14:37:30 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-12-22 14:59:31 +0100 |
commit | 64b98df38910bfb921988a0be89da3038274232e (patch) | |
tree | 07b1993420d14940fbb1ded2e24f567d44409526 /libavcodec/vc1.h | |
parent | ed5bed4152203aed8cce01a679bed67bbda8903f (diff) | |
download | ffmpeg-64b98df38910bfb921988a0be89da3038274232e.tar.gz |
vc1: simplify *_use_ic initialization
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vc1.h')
-rw-r--r-- | libavcodec/vc1.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vc1.h b/libavcodec/vc1.h index 0d23b44353..662b58b4d9 100644 --- a/libavcodec/vc1.h +++ b/libavcodec/vc1.h @@ -315,7 +315,7 @@ typedef struct VC1Context{ uint8_t aux_luty[2][256], aux_lutuv[2][256]; ///< lookup tables used for intensity compensation uint8_t next_luty[2][256], next_lutuv[2][256]; ///< lookup tables used for intensity compensation uint8_t (*curr_luty)[256] ,(*curr_lutuv)[256]; - int last_use_ic, curr_use_ic, next_use_ic, aux_use_ic; + int last_use_ic, *curr_use_ic, next_use_ic, aux_use_ic; int rnd; ///< rounding control /** Frame decoding info for S/M profiles only */ |