/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
vp9_encodeframe.c | 51 static INLINE uint8_t *get_sb_index(MACROBLOCK *x, BLOCK_SIZE subsize) { 52 switch (subsize) { 452 BLOCK_SIZE subsize = get_subsize(bsize, PARTITION_VERT); local 453 set_block_size(cpi, tile, mi_row, mi_col, subsize); 454 set_block_size(cpi, tile, mi_row, mi_col + block_width / 2, subsize); 462 BLOCK_SIZE subsize = get_subsize(bsize, PARTITION_HORZ); local 463 set_block_size(cpi, tile, mi_row, mi_col, subsize); 464 set_block_size(cpi, tile, mi_row + block_height / 2, mi_col, subsize); 1255 BLOCK_SIZE subsize; local 1484 BLOCK_SIZE subsize; local 1570 BLOCK_SIZE subsize; local 2011 BLOCK_SIZE subsize; local 2653 BLOCK_SIZE subsize; local 2924 BLOCK_SIZE subsize; local [all...] |
vp9_segmentation.c | 198 const BLOCK_SIZE subsize = subsize_lookup[PARTITION_SPLIT][bsize]; local 210 mi_row + mi_dr, mi_col + mi_dc, subsize);
|
vp9_bitstream.c | 426 BLOCK_SIZE subsize; local 434 subsize = get_subsize(bsize, partition); 435 if (subsize < BLOCK_8X8) { 453 write_modes_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col, subsize); 455 subsize); 457 subsize); 459 subsize); 469 update_partition_context(xd, mi_row, mi_col, subsize, bsize); [all...] |
/external/libvpx/libvpx/vp9/encoder/ |
vp9_encodeframe.c | 446 BLOCK_SIZE subsize = get_subsize(bsize, PARTITION_VERT); local 451 get_plane_block_size(subsize, &xd->plane[1]) < BLOCK_INVALID) { 452 set_block_size(cpi, x, xd, mi_row, mi_col, subsize); 453 set_block_size(cpi, x, xd, mi_row, mi_col + block_width / 2, subsize); 459 BLOCK_SIZE subsize = get_subsize(bsize, PARTITION_HORZ); local 464 get_plane_block_size(subsize, &xd->plane[1]) < BLOCK_INVALID) { 465 set_block_size(cpi, x, xd, mi_row, mi_col, subsize); 466 set_block_size(cpi, x, xd, mi_row + block_height / 2, mi_col, subsize); 1431 BLOCK_SIZE subsize = bsize; local 1770 BLOCK_SIZE subsize; local 1848 BLOCK_SIZE subsize; local 2358 BLOCK_SIZE subsize; local 2977 BLOCK_SIZE subsize = get_subsize(bsize, partition); local 3040 BLOCK_SIZE subsize = get_subsize(bsize, PARTITION_SPLIT); local 3062 BLOCK_SIZE subsize = bsize; local 3316 BLOCK_SIZE subsize; local 3455 BLOCK_SIZE subsize; local [all...] |
vp9_segmentation.c | 181 const BLOCK_SIZE subsize = subsize_lookup[PARTITION_SPLIT][bsize]; local 193 mi_row + mi_dr, mi_col + mi_dc, subsize);
|
vp9_bitstream.c | 436 BLOCK_SIZE subsize; local 446 subsize = get_subsize(bsize, partition); 447 if (subsize < BLOCK_8X8) { 465 write_modes_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col, subsize); 467 subsize); 469 subsize); 471 subsize); 481 update_partition_context(xd, mi_row, mi_col, subsize, bsize); [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/ |
vp9_blockd.h | 247 const BLOCK_SIZE subsize = subsize_lookup[partition][bsize]; local 248 assert(subsize < BLOCK_SIZES); 249 return subsize;
|
vp9_onyxc_int.h | 301 BLOCK_SIZE subsize, 312 vpx_memset(above_ctx, partition_context_lookup[subsize].above, bs); 313 vpx_memset(left_ctx, partition_context_lookup[subsize].left, bs);
|
/external/speex/libspeex/ |
kiss_fftr.c | 36 size_t subsize, memneeded; local 44 kiss_fft_alloc (nfft, inverse_fft, NULL, &subsize); 45 memneeded = sizeof(struct kiss_fftr_state) + subsize + sizeof(kiss_fft_cpx) * ( nfft * 2); 58 st->tmpbuf = (kiss_fft_cpx *) (((char *) st->substate) + subsize); 60 kiss_fft_alloc(nfft, inverse_fft, st->substate, &subsize);
|
/external/libvpx/libvpx/vp9/common/ |
vp9_onyxc_int.h | 430 BLOCK_SIZE subsize, 441 memset(above_ctx, partition_context_lookup[subsize].above, bs); 442 memset(left_ctx, partition_context_lookup[subsize].left, bs);
|
vp9_mfqe.c | 227 const BLOCK_SIZE subsize = get_subsize(bs, partition); local 328 mfqe_partition(cm, mi, subsize, y, u, v, y_stride, uv_stride, yd, ud, vd, 330 mfqe_partition(cm, mi + mi_offset, subsize, y + y_offset, u + uv_offset, 333 mfqe_partition(cm, mi + mi_offset * cm->mi_stride, subsize, 339 subsize, y + y_offset * y_stride + y_offset,
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/ |
vp9_decodeframe.c | 411 BLOCK_SIZE subsize; local 417 subsize = get_subsize(bsize, partition); 418 if (subsize < BLOCK_8X8) { 419 decode_block(cm, xd, tile, mi_row, mi_col, r, subsize); 423 decode_block(cm, xd, tile, mi_row, mi_col, r, subsize); 426 decode_block(cm, xd, tile, mi_row, mi_col, r, subsize); 428 decode_block(cm, xd, tile, mi_row + hbs, mi_col, r, subsize); 431 decode_block(cm, xd, tile, mi_row, mi_col, r, subsize); 433 decode_block(cm, xd, tile, mi_row, mi_col + hbs, r, subsize); 436 decode_partition(cm, xd, tile, mi_row, mi_col, r, subsize); [all...] |
/external/libvpx/libvpx/vp9/decoder/ |
vp9_decodeframe.c | 963 BLOCK_SIZE subsize; local [all...] |
/external/opencv3/modules/highgui/src/ |
window_QT.cpp | 2132 int subsize = settings.beginReadArray(QString("buttonbar")+i); local [all...] |