Commit a7573719 authored by Baptiste Coudurier's avatar Baptiste Coudurier

remove warning about incompatible pointer

Originally committed as revision 17043 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 5ac4d768
......@@ -61,7 +61,7 @@ static av_cold int tqi_decode_init(AVCodecContext *avctx)
static void tqi_decode_mb(MpegEncContext *s, DCTELEM (*block)[64])
{
int n;
s->dsp.clear_blocks(block);
s->dsp.clear_blocks(block[0]);
for (n=0; n<6; n++)
ff_mpeg1_decode_block_intra(s, block[n], n);
}
......
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