diff options
author | Janne Grunau <janne-libav@jannau.net> | 2012-01-09 02:06:59 +0100 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2012-01-10 16:58:53 +0100 |
commit | e652cc9606068189cb512a36f0335a5cf2ecf287 (patch) | |
tree | 895212a61b90b0451bfc74b86af2f30b56eba9b0 /libavcodec/rv34.h | |
parent | ac646076826bf5ec36356fdda2826a5663eec303 (diff) | |
download | ffmpeg-e652cc9606068189cb512a36f0335a5cf2ecf287.tar.gz |
rv34: use get_bits_left()
It is not necessary to store the bit stream length in a RV34DecContext
field.
Diffstat (limited to 'libavcodec/rv34.h')
-rw-r--r-- | libavcodec/rv34.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/rv34.h b/libavcodec/rv34.h index 12607fb806..3f3b879306 100644 --- a/libavcodec/rv34.h +++ b/libavcodec/rv34.h @@ -92,7 +92,6 @@ typedef struct RV34DecContext{ const uint8_t *luma_dc_quant_p;///< luma subblock DC quantizer for interframes RV34VLC *cur_vlcs; ///< VLC set used for current frame decoding - int bits; ///< slice size in bits H264PredContext h; ///< functions for 4x4 and 16x16 intra block prediction SliceInfo si; ///< current slice information |