diff options
author | Luca Abeni <lucabe72@email.it> | 2006-12-26 16:28:34 +0000 |
---|---|---|
committer | Luca Abeni <lucabe72@email.it> | 2006-12-26 16:28:34 +0000 |
commit | 44060a73914e2edce762589c449e81d92778d574 (patch) | |
tree | b9780230650c74045fa76c805bbff8db58bb170b /libswscale | |
parent | 7d19628b14311567758626cea1aef901a040486c (diff) | |
download | ffmpeg-44060a73914e2edce762589c449e81d92778d574.tar.gz |
Add some other casts, to remove void pointers arithmetic
Originally committed as revision 21773 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/yuv2rgb.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libswscale/yuv2rgb.c b/libswscale/yuv2rgb.c index 9066b68b2b..55c4bb2d4b 100644 --- a/libswscale/yuv2rgb.c +++ b/libswscale/yuv2rgb.c @@ -832,10 +832,10 @@ int yuv2rgb_c_init_tables (SwsContext *c, const int inv_table[4], int fullRange, } for (i = 0; i < 256; i++) { - c->table_rV[i] = table_r + entry_size * div_round (crv * (i-128), 76309); - c->table_gU[i] = table_g + entry_size * div_round (cgu * (i-128), 76309); + c->table_rV[i] = (uint8_t *)table_r + entry_size * div_round (crv * (i-128), 76309); + c->table_gU[i] = (uint8_t *)table_g + entry_size * div_round (cgu * (i-128), 76309); c->table_gV[i] = entry_size * div_round (cgv * (i-128), 76309); - c->table_bU[i] = table_b + entry_size * div_round (cbu * (i-128), 76309); + c->table_bU[i] = (uint8_t *)table_b + entry_size * div_round (cbu * (i-128), 76309); } av_free(c->yuvTable); |