Lines Matching defs:block
60 DECLARE_ALIGNED(32, int16_t, block)[64];
119 static inline void idct_put(MadContext *t, AVFrame *frame, int16_t *block,
125 frame->linesize[0], block);
130 frame->linesize[index], block);
134 static inline int decode_block_intra(MadContext *s, int16_t * block)
141 block[0] = (128 + get_sbits(&s->gb, 8)) * quant_matrix[0];
193 block[j] = level;
232 s->bdsp.clear_block(s->block);
233 if(decode_block_intra(s, s->block) < 0)
235 idct_put(s, frame, s->block, s->mb_x, s->mb_y, j);