Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2006-01-26 01:10:13 +0300
committerDiego Biurrun <diego@biurrun.de>2006-01-26 01:10:13 +0300
commitf038fe8b4a023351c82afcc901891097fa9b0d29 (patch)
tree1e0e50a7f24a781d7d23c0d9895c6621bad0316b /libavcodec/huffyuv.c
parent82e415b1fcdf09a0a5ec099cd55a9d03efd51d15 (diff)
warning fixes by Luca Abeni, lucabe72 ##@## email ##.## it
Originally committed as revision 4898 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/huffyuv.c')
-rw-r--r--libavcodec/huffyuv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/huffyuv.c b/libavcodec/huffyuv.c
index 6233e24310..dc9e123ff4 100644
--- a/libavcodec/huffyuv.c
+++ b/libavcodec/huffyuv.c
@@ -72,7 +72,7 @@ typedef struct HYuvContext{
VLC vlc[3];
AVFrame picture;
uint8_t *bitstream_buffer;
- int bitstream_buffer_size;
+ unsigned int bitstream_buffer_size;
DSPContext dsp;
}HYuvContext;