Mercurial > libavcodec.hg
changeset 9630:ef0cf18b192d libavcodec
add casts to silence gcc warnings
author | bcoudurier |
---|---|
date | Wed, 13 May 2009 00:27:11 +0000 |
parents | 3c98f3e1b719 |
children | 4f1f36cca468 |
files | v210dec.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/v210dec.c Tue May 12 23:40:22 2009 +0000 +++ b/v210dec.c Wed May 13 00:27:11 2009 +0000 @@ -61,9 +61,9 @@ if (avctx->get_buffer(avctx, pic) < 0) return -1; - y = pic->data[0]; - u = pic->data[1]; - v = pic->data[2]; + y = (uint16_t*)pic->data[0]; + u = (uint16_t*)pic->data[1]; + v = (uint16_t*)pic->data[2]; pic->pict_type = FF_I_TYPE; pic->key_frame = 1; @@ -76,7 +76,7 @@ } while (0); for (h = 0; h < avctx->height; h++) { - const uint32_t *src = psrc; + const uint32_t *src = (const uint32_t*)psrc; uint32_t val; for (w = 0; w < avctx->width - 5; w += 6) { READ_PIXELS(u, y, v);