Lines Matching refs:blocks
136 /* Number of 4x4 blocks in frame. */
150 int blocks = 0;
238 blocks = coded_blocks;
244 blocks = intra_skip_blocks;
250 blocks = intra_skip_blocks;
256 blocks = inter_skip_blocks;
262 blocks = inter_skip_blocks;
267 if (blocks <= 16) {
268 bytestream2_put_byte(pb, 0x60 | (blocks - 1));
271 bytestream2_put_byte(pb, blocks - 1);
274 ADVANCE_BLOCK(pixel_ptr, row_ptr, blocks)
287 bytestream2_put_byte(pb, 0x90 | (blocks - 1));
291 bytestream2_put_byte(pb, 0x80 | (blocks - 1));
304 for (int i = 0; i < blocks; i++) {
335 bytestream2_put_byte(pb, 0xB0 | (blocks - 1));
339 bytestream2_put_byte(pb, 0xA0 | (blocks - 1));
352 for (int i = 0; i < blocks; i++) {
402 bytestream2_put_byte(pb, 0xD0 | (blocks - 1));
406 bytestream2_put_byte(pb, 0xC0 | (blocks - 1));
419 for (int i = 0; i < blocks; i++) {
452 bytestream2_put_byte(pb, 0xE0 | (blocks - 1));
453 for (int i = 0; i < blocks; i++) {
463 bytestream2_put_byte(pb, 0x20 | (blocks - 1));
464 ADVANCE_BLOCK(pixel_ptr, row_ptr, blocks)
468 bytestream2_put_byte(pb, blocks - 1);
469 ADVANCE_BLOCK(pixel_ptr, row_ptr, blocks)
472 bytestream2_put_byte(pb, 0x00 | (blocks - 1));
473 ADVANCE_BLOCK(pixel_ptr, row_ptr, blocks)
477 bytestream2_put_byte(pb, blocks - 1);
478 ADVANCE_BLOCK(pixel_ptr, row_ptr, blocks)
482 block_counter += blocks;