Lines Matching defs:col
1087 static void decode_sb(VP9TileData *td, int row, int col, VP9Filter *lflvl,
1091 int c = ((s->above_partition_ctx[col] >> (3 - bl)) & 1) |
1103 ff_vp9_decode_block(td, row, col, lflvl, yoff, uvoff, bl, bp);
1104 } else if (col + hbs < s->cols) { // FIXME why not <=?
1109 ff_vp9_decode_block(td, row, col, lflvl, yoff, uvoff, bl, bp);
1112 ff_vp9_decode_block(td, row, col, lflvl, yoff, uvoff, bl, bp);
1115 ff_vp9_decode_block(td, row + hbs, col, lflvl, yoff, uvoff, bl, bp);
1118 ff_vp9_decode_block(td, row, col, lflvl, yoff, uvoff, bl, bp);
1121 ff_vp9_decode_block(td, row, col + hbs, lflvl, yoff, uvoff, bl, bp);
1124 decode_sb(td, row, col, lflvl, yoff, uvoff, bl + 1);
1125 decode_sb(td, row, col + hbs, lflvl,
1130 decode_sb(td, row + hbs, col, lflvl, yoff, uvoff, bl + 1);
1131 decode_sb(td, row + hbs, col + hbs, lflvl,
1140 decode_sb(td, row, col, lflvl, yoff, uvoff, bl + 1);
1141 decode_sb(td, row, col + hbs, lflvl,
1146 ff_vp9_decode_block(td, row, col, lflvl, yoff, uvoff, bl, bp);
1151 decode_sb(td, row, col, lflvl, yoff, uvoff, bl + 1);
1154 decode_sb(td, row + hbs, col, lflvl, yoff, uvoff, bl + 1);
1157 ff_vp9_decode_block(td, row, col, lflvl, yoff, uvoff, bl, bp);
1161 decode_sb(td, row, col, lflvl, yoff, uvoff, bl + 1);
1166 static void decode_sb_mem(VP9TileData *td, int row, int col, VP9Filter *lflvl,
1178 ff_vp9_decode_block(td, row, col, lflvl, yoff, uvoff, b->bl, b->bp);
1180 ff_vp9_decode_block(td, row, col, lflvl, yoff, uvoff, b->bl, b->bp);
1184 ff_vp9_decode_block(td, row + hbs, col, lflvl, yoff, uvoff, b->bl, b->bp);
1185 } else if (b->bp == PARTITION_V && col + hbs < s->cols) {
1188 ff_vp9_decode_block(td, row, col + hbs, lflvl, yoff, uvoff, b->bl, b->bp);
1191 decode_sb_mem(td, row, col, lflvl, yoff, uvoff, bl + 1);
1192 if (col + hbs < s->cols) { // FIXME why not <=?
1194 decode_sb_mem(td, row, col + hbs, lflvl, yoff + 8 * hbs * bytesperpixel,
1198 decode_sb_mem(td, row + hbs, col, lflvl, yoff, uvoff, bl + 1);
1199 decode_sb_mem(td, row + hbs, col + hbs, lflvl,
1205 decode_sb_mem(td, row, col + hbs, lflvl, yoff, uvoff, bl + 1);
1210 decode_sb_mem(td, row + hbs, col, lflvl, yoff, uvoff, bl + 1);
1263 int row, col, tile_row, tile_col, ret;
1329 for (col = tile_col_start;
1330 col < tile_col_end;
1331 col += 8, yoff2 += 64 * bytesperpixel,
1340 decode_sb_mem(td, row, col, lflvl_ptr,
1346 decode_sb(td, row, col, lflvl_ptr,
1374 for (col = 0; col < s->cols;
1375 col += 8, yoff2 += 64 * bytesperpixel,
1377 ff_vp9_loopfilter_sb(avctx, lflvl_ptr, row, col,
1399 int bytesperpixel = s->bytesperpixel, row, col, tile_row;
1437 for (col = tile_col_start;
1438 col < tile_col_end;
1439 col += 8, yoff2 += 64 * bytesperpixel,
1444 decode_sb(td, row, col, lflvl_ptr,
1475 int bytesperpixel = s->bytesperpixel, col, i;
1489 for (col = 0; col < s->cols;
1490 col += 8, yoff += 64 * bytesperpixel,
1492 ff_vp9_loopfilter_sb(avctx, lflvl_ptr, i << 3, col,
1533 unsigned int col = td->block_structure[block_tile].col;
1534 uint8_t seg_id = frame->segmentation_map[row * 8 * s->sb_cols + col];
1536 b->src_x = col * 8;