Commit 797572d5 authored by bcoudurier's avatar bcoudurier

cast to correct type, fix warning: apedec.c:859: warning: passing argument 1...

cast to correct type, fix warning: apedec.c:859: warning: passing argument 1 of 's->dsp.bswap_buf' from incompatible pointer type

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11679 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 5f80e1ce
......@@ -856,7 +856,7 @@ static int ape_decode_frame(AVCodecContext * avctx,
if(!s->samples){
s->data = av_realloc(s->data, (buf_size + 3) & ~3);
s->dsp.bswap_buf(s->data, buf, buf_size >> 2);
s->dsp.bswap_buf((uint32_t*)s->data, (uint32_t*)buf, buf_size >> 2);
s->ptr = s->last_ptr = s->data;
s->data_end = s->data + buf_size;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment