Lines Matching refs:tiling
1040 for (s->tiling.log2_tile_cols = 0; in decode_parser_header()
1041 (s->sb_cols >> s->tiling.log2_tile_cols) > 64; in decode_parser_header()
1042 s->tiling.log2_tile_cols++) ; in decode_parser_header()
1045 while ((RK_U32)max > s->tiling.log2_tile_cols) { in decode_parser_header()
1047 s->tiling.log2_tile_cols++; in decode_parser_header()
1054 s->tiling.log2_tile_rows = decode012(&s->gb); in decode_parser_header()
1055 vp9d_dbg(VP9D_DBG_HEADER, "log2_tile_rows %d", s->tiling.log2_tile_rows); in decode_parser_header()
1056 s->tiling.tile_rows = 1 << s->tiling.log2_tile_rows; in decode_parser_header()
1057 if (s->tiling.tile_cols != (1U << s->tiling.log2_tile_cols)) { in decode_parser_header()
1058 s->tiling.tile_cols = 1 << s->tiling.log2_tile_cols; in decode_parser_header()
1060 RK_U32 min_size = sizeof(VpxRangeCoder) * s->tiling.tile_cols; in decode_parser_header()