Home
last modified time | relevance | path

Searched refs:tile_row (Results 1 – 3 of 3) sorted by relevance

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_bitstream.c931 int tile_row, tile_col; local
941 for (tile_row = 0; tile_row < tile_rows; tile_row++) {
942 if (tile_row)
943 tok[tile_row][0] = tok[tile_row - 1][tile_cols - 1] +
944 cpi->tok_count[tile_row - 1][tile_cols - 1];
947 tok[tile_row][tile_col] = tok[tile_row][tile_col - 1] +
948 cpi->tok_count[tile_row][tile_col - 1];
951 for (tile_row = 0; tile_row < tile_rows; tile_row++) {
955 vp9_tile_init(&tile, cm, tile_row, tile_col);
956 tok_end = tok[tile_row][tile_col] + cpi->tok_count[tile_row][tile_col];
[all …]
Dvp9_encodeframe.c3147 int tile_col, tile_row; in encode_frame_internal() local
3152 for (tile_row = 0; tile_row < tile_rows; tile_row++) { in encode_frame_internal()
3158 vp9_tile_init(&tile, cm, tile_row, tile_col); in encode_frame_internal()
3166 cpi->tok_count[tile_row][tile_col] = (unsigned int)(tp - tp_old); in encode_frame_internal()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
Dvp9_decodeframe.c789 int tile_row, tile_col; in decode_tiles() local
805 for (tile_row = 0; tile_row < tile_rows; ++tile_row) { in decode_tiles()
807 const int last_tile = tile_row == tile_rows - 1 && in decode_tiles()
810 TileBuffer *const buf = &tile_buffers[tile_row][tile_col]; in decode_tiles()
818 for (tile_row = 0; tile_row < tile_rows; ++tile_row) { in decode_tiles()
822 const int last_tile = tile_row == tile_rows - 1 && in decode_tiles()
824 const TileBuffer *const buf = &tile_buffers[tile_row][col]; in decode_tiles()
827 vp9_tile_init(&tile, cm, tile_row, col); in decode_tiles()