diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-01-25 22:10:13 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-01-25 22:10:13 +0000 |
commit | f038fe8b4a023351c82afcc901891097fa9b0d29 (patch) | |
tree | 1e0e50a7f24a781d7d23c0d9895c6621bad0316b /libavcodec/asv1.c | |
parent | 82e415b1fcdf09a0a5ec099cd55a9d03efd51d15 (diff) | |
download | ffmpeg-f038fe8b4a023351c82afcc901891097fa9b0d29.tar.gz |
warning fixes by Luca Abeni, lucabe72 ##@## email ##.## it
Originally committed as revision 4898 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/asv1.c')
-rw-r--r-- | libavcodec/asv1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/asv1.c b/libavcodec/asv1.c index 222582cd53..99e563ee9f 100644 --- a/libavcodec/asv1.c +++ b/libavcodec/asv1.c @@ -48,7 +48,7 @@ typedef struct ASV1Context{ uint16_t __align8 intra_matrix[64]; int __align8 q_intra_matrix[64]; uint8_t *bitstream_buffer; - int bitstream_buffer_size; + unsigned int bitstream_buffer_size; } ASV1Context; static const uint8_t scantab[64]={ |