Commit cec37702 authored by bcoudurier's avatar bcoudurier

remove warning about incompatible pointer

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17043 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 6bde2a86
......@@ -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