summaryrefslogtreecommitdiff
path: root/libavcodec/asv1.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-02-01 03:48:32 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-02-01 03:48:32 +0000
commitf64bbca55d52552b82c0c69f8dfd3d8e2e5d653b (patch)
tree5de4140a5d150a366c9e55b374e348eae4e94091 /libavcodec/asv1.c
parent5d9375da77dfa6ed7f3166d64597b9fe8b495563 (diff)
const
Originally committed as revision 11715 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/asv1.c')
-rw-r--r--libavcodec/asv1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/asv1.c b/libavcodec/asv1.c
index 69be052253..a0589cdd63 100644
--- a/libavcodec/asv1.c
+++ b/libavcodec/asv1.c
@@ -387,7 +387,7 @@ static inline void dct_get(ASV1Context *a, int mb_x, int mb_y){
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 @@ static int decode_frame(AVCodecContext *avctx,
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++)