Mercurial > libavcodec.hg
changeset 6225:d402bcda236b libavcodec
const
author | michael |
---|---|
date | Fri, 01 Feb 2008 03:48:32 +0000 |
parents | f3621aff9ff0 |
children | a955fb25671d |
files | asv1.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/asv1.c Fri Feb 01 03:47:32 2008 +0000 +++ b/asv1.c Fri Feb 01 03:48:32 2008 +0000 @@ -387,7 +387,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, - uint8_t *buf, int buf_size) + const uint8_t *buf, int buf_size) { ASV1Context * const a = avctx->priv_data; AVFrame *picture = data; @@ -408,7 +408,7 @@ a->bitstream_buffer= av_fast_realloc(a->bitstream_buffer, &a->bitstream_buffer_size, buf_size + FF_INPUT_BUFFER_PADDING_SIZE); if(avctx->codec_id == CODEC_ID_ASV1) - a->dsp.bswap_buf((uint32_t*)a->bitstream_buffer, (uint32_t*)buf, buf_size/4); + a->dsp.bswap_buf((uint32_t*)a->bitstream_buffer, (const uint32_t*)buf, buf_size/4); else{ int i; for(i=0; i<buf_size; i++)