Searched defs:tile_cols (Results 1 - 7 of 7) sorted by relevance

/external/libvpx/libvpx/test/
H A Dvp9_encoder_parms_get_to_decoder.cc37 int32_t tile_cols; member in struct:__anon10963::EncodeParameters
84 encoder->Control(VP9E_SET_TILE_COLUMNS, encode_parms.tile_cols);
126 EXPECT_EQ(encode_parms.tile_cols, common->log2_tile_cols);
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_ethread.c38 const int tile_cols = 1 << cm->log2_tile_cols; local
44 for (t = thread_data->start; t < tile_rows * tile_cols;
46 int tile_row = t / tile_cols;
47 int tile_col = t % tile_cols;
69 const int tile_cols = 1 << cm->log2_tile_cols; local
71 const int num_workers = VPXMIN(cpi->oxcf.max_threads, tile_cols);
H A Dvp9_bitstream.c934 const int tile_cols = 1 << cm->log2_tile_cols; local
941 for (tile_col = 0; tile_col < tile_cols; tile_col++) {
942 int tile_idx = tile_row * tile_cols + tile_col;
948 if (tile_col < tile_cols - 1 || tile_row < tile_rows - 1)
957 if (tile_col < tile_cols - 1 || tile_row < tile_rows - 1) {
H A Dvp9_encodeframe.c3784 const int tile_cols = 1 << cm->log2_tile_cols; local
3790 if (cpi->tile_data == NULL || cpi->allocated_tiles < tile_cols * tile_rows) {
3794 vpx_malloc(tile_cols * tile_rows * sizeof(*cpi->tile_data)));
3795 cpi->allocated_tiles = tile_cols * tile_rows;
3798 for (tile_col = 0; tile_col < tile_cols; ++tile_col) {
3800 &cpi->tile_data[tile_row * tile_cols + tile_col];
3812 for (tile_col = 0; tile_col < tile_cols; ++tile_col) {
3814 &cpi->tile_data[tile_row * tile_cols + tile_col].tile_info;
3827 const int tile_cols = 1 << cm->log2_tile_cols; local
3829 &cpi->tile_data[tile_row * tile_cols
3849 const int tile_cols = 1 << cm->log2_tile_cols; local
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_thread_common.c166 const int tile_cols = 1 << cm->log2_tile_cols; local
167 const int num_workers = VPXMIN(nworkers, tile_cols);
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decodeframe.c1411 int tile_cols, int tile_rows,
1416 for (c = 0; c < tile_cols; ++c) {
1417 const int is_last = (r == tile_rows - 1) && (c == tile_cols - 1);
1432 const int tile_cols = 1 << cm->log2_tile_cols; local
1459 assert(tile_cols <= (1 << 6));
1471 get_tile_buffers(pbi, data, data_end, tile_cols, tile_rows, tile_buffers);
1474 (tile_cols * tile_rows) != pbi->total_tiles) {
1479 vpx_memalign(32, tile_cols * tile_rows * (sizeof(*pbi->tile_data))));
1480 pbi->total_tiles = tile_rows * tile_cols;
1485 for (tile_col = 0; tile_col < tile_cols;
1409 get_tile_buffers(VP9Decoder *pbi, const uint8_t *data, const uint8_t *data_end, int tile_cols, int tile_rows, TileBuffer (*tile_buffers)[1 << 6]) argument
1635 const int tile_cols = 1 << cm->log2_tile_cols; local
2176 const int tile_cols = 1 << cm->log2_tile_cols; local
[all...]
/external/libvpx/libvpx/
H A Dvpxenc.c380 static const arg_def_t tile_cols = ARG_DEF( variable
451 &tile_cols, &tile_rows, &arnr_maxframes, &arnr_strength, &arnr_type,
477 &tile_cols, &tile_rows, &arnr_maxframes, &arnr_strength, &arnr_type,

Completed in 883 milliseconds