Commit 774c8477 authored by Baptiste Coudurier's avatar Baptiste Coudurier

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

Originally committed as revision 11679 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent d83085cd
......@@ -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