Mercurial > mplayer.hg
changeset 21757:51f84ed3251b
Add some other casts, to remove void pointers arithmetic
author | lucabe |
---|---|
date | Tue, 26 Dec 2006 16:28:34 +0000 |
parents | b41f4217d57a |
children | bb3212f8b1fe |
files | libswscale/yuv2rgb.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/libswscale/yuv2rgb.c Tue Dec 26 16:21:13 2006 +0000 +++ b/libswscale/yuv2rgb.c Tue Dec 26 16:28:34 2006 +0000 @@ -832,10 +832,10 @@ } 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);