diff options
author | Artur Grabowski <art@blahonga.org> | 2002-05-20 04:00:25 +0000 |
---|---|---|
committer | Arpi <arpi@thot.banki.hu> | 2002-05-20 04:00:25 +0000 |
commit | b5a40dc6d04318bacce37d51feda38ff07507682 (patch) | |
tree | 6f6c0df2c76786e0b2b2bfc14b6840bd246149a0 /postproc | |
parent | 5eee1aeddd8e5fefccb5c70ee4db261a1f56d2ea (diff) | |
download | ffmpeg-b5a40dc6d04318bacce37d51feda38ff07507682.tar.gz |
64bit incompatibility bug, patch by Artur Grabowski <art@blahonga.org>
Originally committed as revision 6141 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc')
-rw-r--r-- | postproc/yuv2rgb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/postproc/yuv2rgb.c b/postproc/yuv2rgb.c index ac5f8b7e91..10db46f467 100644 --- a/postproc/yuv2rgb.c +++ b/postproc/yuv2rgb.c @@ -407,7 +407,7 @@ static void yuv2rgb_c_init (int bpp, int mode) uint32_t *table_32 = 0; uint16_t *table_16 = 0; uint8_t *table_8 = 0; - uint32_t entry_size = 0; + int entry_size = 0; void *table_r = 0, *table_g = 0, *table_b = 0; int crv = Inverse_Table_6_9[matrix_coefficients][0]; |