Home | History | Annotate | Download | only in decoder

Lines Matching full:tile_row

671   int tile_row, tile_col;
687 for (tile_row = 0; tile_row < tile_rows; tile_row++) {
688 if (tile_row) {
689 const int size = read_be32(data_ptr2[tile_row - 1][tile_cols - 1]);
690 data_ptr2[tile_row - 1][tile_cols - 1] += 4;
691 data_ptr2[tile_row][0] = data_ptr2[tile_row - 1][tile_cols - 1] + size;
695 const int size = read_be32(data_ptr2[tile_row][tile_col - 1]);
696 data_ptr2[tile_row][tile_col - 1] += 4;
697 data_ptr2[tile_row][tile_col] =
698 data_ptr2[tile_row][tile_col - 1] + size;
702 for (tile_row = 0; tile_row < tile_rows; tile_row++) {
703 vp9_get_tile_row_offsets(cm, tile_row);
706 setup_token_decoder(pbi, data_ptr2[tile_row][tile_col],
707 data_end - data_ptr2[tile_row][tile_col],
710 if (tile_row == tile_rows - 1 && tile_col == tile_cols - 1)
718 for (tile_row = 0; tile_row < tile_rows; tile_row++) {
719 vp9_get_tile_row_offsets(cm, tile_row);
725 has_more = tile_col < tile_cols - 1 || tile_row < tile_rows - 1;