Lines Matching defs:block
191 static void encode_block(MpegEncContext *s, int16_t *block, int n)
199 dc = block[0]; /* overflow is impossible */
210 level = block[j];
236 /* end of block; the values correspond to ff_rl_speedhq.table_vlc[122] */
240 void ff_speedhq_encode_mb(MpegEncContext *s, int16_t block[12][64])
244 encode_block(s, block[i], i);
247 encode_block(s, block[8], 8);
248 encode_block(s, block[9], 9);
250 encode_block(s, block[6], 6);
251 encode_block(s, block[7], 7);
253 encode_block(s, block[10], 10);
254 encode_block(s, block[11], 11);
256 encode_block(s, block[6], 6);
257 encode_block(s, block[7], 7);