aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/mpegvideo.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2006-01-25 22:10:13 +0000
committerDiego Biurrun <diego@biurrun.de>2006-01-25 22:10:13 +0000
commitf038fe8b4a023351c82afcc901891097fa9b0d29 (patch)
tree1e0e50a7f24a781d7d23c0d9895c6621bad0316b /libavcodec/mpegvideo.h
parent82e415b1fcdf09a0a5ec099cd55a9d03efd51d15 (diff)
downloadffmpeg-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/mpegvideo.h')
-rw-r--r--libavcodec/mpegvideo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h
index d45dbdad41..c1b7024662 100644
--- a/libavcodec/mpegvideo.h
+++ b/libavcodec/mpegvideo.h
@@ -194,7 +194,7 @@ typedef struct ParseContext{
uint8_t *buffer;
int index;
int last_index;
- int buffer_size;
+ unsigned int buffer_size;
uint32_t state; ///< contains the last few bytes in MSB order
int frame_start_found;
int overread; ///< the number of bytes which where irreversibly read from the next frame
@@ -610,7 +610,7 @@ typedef struct MpegEncContext {
int divx_packed;
uint8_t *bitstream_buffer; //Divx 5.01 puts several frames in a single one, this is used to reorder them
int bitstream_buffer_size;
- int allocated_bitstream_buffer_size;
+ unsigned int allocated_bitstream_buffer_size;
int xvid_build;