Searched refs:tile_rows (Results 1 - 13 of 13) sorted by relevance

/external/libvpx/libvpx/test/
H A Dvp9_encoder_parms_get_to_decoder.cc36 int32_t tile_rows; member in struct:__anon11889::EncodeParameters
83 encoder->Control(VP9E_SET_TILE_ROWS, encode_parms.tile_rows);
128 EXPECT_EQ(encode_parms.tile_rows, common->log2_tile_rows);
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_multi_thread.c58 const int tile_rows = 1 << cm->log2_tile_rows; local
67 multi_thread_ctxt->allocated_tile_rows = tile_rows;
98 for (tile_row = 1; tile_row < tile_rows; tile_row++) {
107 for (tile_row = 0; tile_row < tile_rows; tile_row++) {
H A Dvp9_ethread.c42 const int tile_rows = 1 << cm->log2_tile_rows; local
47 for (t = thread_data->start; t < tile_rows * tile_cols;
428 const int tile_rows = 1 << cm->log2_tile_rows; local
435 multi_thread_ctxt->allocated_tile_rows < tile_rows ||
514 const int tile_rows = 1 << cm->log2_tile_rows; local
520 multi_thread_ctxt->allocated_tile_rows < tile_rows ||
585 const int tile_rows = 1 << cm->log2_tile_rows; local
591 multi_thread_ctxt->allocated_tile_rows < tile_rows ||
H A Dvp9_bitstream.c1046 const int tile_rows = 1 << cm->log2_tile_rows; local
1054 if (cpi->oxcf.mode == REALTIME && cpi->num_workers > 1 && tile_rows == 1 &&
1059 for (tile_row = 0; tile_row < tile_rows; tile_row++) {
1063 if (tile_col < tile_cols - 1 || tile_row < tile_rows - 1)
1073 if (tile_col < tile_cols - 1 || tile_row < tile_rows - 1) {
H A Dvp9_temporal_filter.c600 const int tile_rows = 1 << cm->log2_tile_rows; local
611 for (tile_row = 0; tile_row < tile_rows; ++tile_row) {
H A Dvp9_encoder.h247 int tile_rows; member in struct:VP9EncoderConfig
H A Dvp9_encodeframe.c4349 const int tile_rows = 1 << cm->log2_tile_rows; local
4356 if (cpi->tile_data == NULL || cpi->allocated_tiles < tile_cols * tile_rows) {
4358 CHECK_MEM_ERROR(cm, cpi->tile_data, vpx_malloc(tile_cols * tile_rows *
4360 cpi->allocated_tiles = tile_cols * tile_rows;
4362 for (tile_row = 0; tile_row < tile_rows; ++tile_row)
4379 for (tile_row = 0; tile_row < tile_rows; ++tile_row) {
4443 const int tile_rows = 1 << cm->log2_tile_rows; local
4448 for (tile_row = 0; tile_row < tile_rows; ++tile_row)
H A Dvp9_encoder.c1204 cm->log2_tile_rows = cpi->oxcf.tile_rows;
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decodeframe.c1356 int tile_rows,
1360 for (r = 0; r < tile_rows; ++r) {
1362 const int is_last = (r == tile_rows - 1) && (c == tile_cols - 1);
1377 const int tile_rows = 1 << cm->log2_tile_rows; local
1402 assert(tile_rows <= 4);
1415 get_tile_buffers(pbi, data, data_end, tile_cols, tile_rows, tile_buffers);
1418 for (tile_row = 0; tile_row < tile_rows; ++tile_row) {
1435 for (tile_row = 0; tile_row < tile_rows; ++tile_row) {
1494 tile_data = pbi->tile_worker_data + tile_cols * tile_rows - 1;
1566 const int tile_rows local
1354 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
2055 const int tile_rows = 1 << cm->log2_tile_rows; local
[all...]
/external/libvpx/libvpx/vp9/
H A Dvp9_cx_iface.c32 unsigned int tile_rows; member in struct:vp9_extracfg
65 0, // tile_rows
258 RANGE_CHECK(extra_cfg, tile_rows, 0, 2);
539 // threaded encoding. For now, tile_rows is forced to be 0 in this case.
544 oxcf->tile_rows = 0;
546 oxcf->tile_rows = extra_cfg->tile_rows;
735 extra_cfg.tile_rows = CAST(VP9E_SET_TILE_ROWS, args);
/external/ImageMagick/coders/
H A Dpcd.c949 const size_t tile_columns,const size_t tile_rows,ExceptionInfo *exception)
1018 if ((tile_image->columns != tile_columns) || (tile_image->rows != tile_rows))
1023 resize_image=ResizeImage(tile_image,tile_columns,tile_rows,
940 WritePCDTile(Image *image,const char *page_geometry, const size_t tile_columns,const size_t tile_rows,ExceptionInfo *exception) argument
H A Dtiff.c2789 tile_rows;
2800 tile_rows=(uint32) tiff_info->tile_geometry.height;
2801 TIFFDefaultTileSize(tiff,&tile_columns,&tile_rows);
2803 (void) TIFFSetField(tiff,TIFFTAG_TILELENGTH,tile_rows);
2805 tiff_info->tile_geometry.height=tile_rows;
2807 tile_rows*TIFFScanlineSize(tiff),sizeof(*tiff_info->scanlines));
2809 tile_rows*TIFFTileSize(tiff),sizeof(*tiff_info->scanlines));
2778 tile_rows; local
/external/libvpx/libvpx/
H A Dvpxenc.c405 static const arg_def_t tile_rows = variable
485 &tile_rows,

Completed in 893 milliseconds