Mercurial > libavcodec.hg
changeset 9747:9db25052df0e libavcodec
Remove useless casts, extradata is already "uint8_t *"
author | reimar |
---|---|
date | Sun, 31 May 2009 08:51:30 +0000 |
parents | e8421cfcc381 |
children | 77920505b11d |
files | lclenc.c |
diffstat | 1 files changed, 8 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/lclenc.c Sun May 31 08:49:27 2009 +0000 +++ b/lclenc.c Sun May 31 08:51:30 2009 +0000 @@ -150,14 +150,14 @@ return -1; } - ((uint8_t*)avctx->extradata)[0]= 4; - ((uint8_t*)avctx->extradata)[1]= 0; - ((uint8_t*)avctx->extradata)[2]= 0; - ((uint8_t*)avctx->extradata)[3]= 0; - ((uint8_t*)avctx->extradata)[4]= c->imgtype; - ((uint8_t*)avctx->extradata)[5]= c->compression; - ((uint8_t*)avctx->extradata)[6]= c->flags; - ((uint8_t*)avctx->extradata)[7]= CODEC_ZLIB; + avctx->extradata[0]= 4; + avctx->extradata[1]= 0; + avctx->extradata[2]= 0; + avctx->extradata[3]= 0; + avctx->extradata[4]= c->imgtype; + avctx->extradata[5]= c->compression; + avctx->extradata[6]= c->flags; + avctx->extradata[7]= CODEC_ZLIB; c->avctx->extradata_size= 8; c->zstream.zalloc = Z_NULL;