comparison eatqi.c @ 8755:1a6581522f9a libavcodec

remove warning about incompatible pointer
author bcoudurier
date Sun, 08 Feb 2009 05:49:42 +0000
parents 9833a42260fc
children 54bc8a2727b0
comparison
equal deleted inserted replaced
8754:f471abd09fef 8755:1a6581522f9a
59 } 59 }
60 60
61 static void tqi_decode_mb(MpegEncContext *s, DCTELEM (*block)[64]) 61 static void tqi_decode_mb(MpegEncContext *s, DCTELEM (*block)[64])
62 { 62 {
63 int n; 63 int n;
64 s->dsp.clear_blocks(block); 64 s->dsp.clear_blocks(block[0]);
65 for (n=0; n<6; n++) 65 for (n=0; n<6; n++)
66 ff_mpeg1_decode_block_intra(s, block[n], n); 66 ff_mpeg1_decode_block_intra(s, block[n], n);
67 } 67 }
68 68
69 static inline void tqi_idct_put(TqiContext *t, DCTELEM (*block)[64]) 69 static inline void tqi_idct_put(TqiContext *t, DCTELEM (*block)[64])