changeset 8755:1a6581522f9a libavcodec

remove warning about incompatible pointer
author bcoudurier
date Sun, 08 Feb 2009 05:49:42 +0000
parents f471abd09fef
children 153d7e5d5a5b
files eatqi.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/eatqi.c	Sat Feb 07 10:46:51 2009 +0000
+++ b/eatqi.c	Sun Feb 08 05:49:42 2009 +0000
@@ -61,7 +61,7 @@
 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);
 }