Searched refs:subsize (Results 1 - 7 of 7) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_encodeframe.c445 BLOCK_SIZE subsize = get_subsize(bsize, PARTITION_VERT); local
450 get_plane_block_size(subsize, &xd->plane[1]) < BLOCK_INVALID) {
451 set_block_size(cpi, x, xd, mi_row, mi_col, subsize);
452 set_block_size(cpi, x, xd, mi_row, mi_col + block_width / 2, subsize);
458 BLOCK_SIZE subsize = get_subsize(bsize, PARTITION_HORZ); local
463 get_plane_block_size(subsize, &xd->plane[1]) < BLOCK_INVALID) {
464 set_block_size(cpi, x, xd, mi_row, mi_col, subsize);
465 set_block_size(cpi, x, xd, mi_row + block_height / 2, mi_col, subsize);
1430 BLOCK_SIZE subsize = bsize; local
1437 subsize
1767 BLOCK_SIZE subsize; local
1845 BLOCK_SIZE subsize; local
2355 BLOCK_SIZE subsize; local
2960 BLOCK_SIZE subsize = get_subsize(bsize, partition); local
3023 BLOCK_SIZE subsize = get_subsize(bsize, PARTITION_SPLIT); local
3045 BLOCK_SIZE subsize = bsize; local
3299 BLOCK_SIZE subsize; local
3438 BLOCK_SIZE subsize; local
[all...]
H A Dvp9_segmentation.c181 const BLOCK_SIZE subsize = subsize_lookup[PARTITION_SPLIT][bsize]; local
193 mi_row + mi_dr, mi_col + mi_dc, subsize);
H A Dvp9_bitstream.c437 BLOCK_SIZE subsize; local
447 subsize = get_subsize(bsize, partition);
448 if (subsize < BLOCK_8X8) {
466 write_modes_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col, subsize);
468 subsize);
470 subsize);
472 subsize);
482 update_partition_context(xd, mi_row, mi_col, subsize, bsize);
/external/speex/libspeex/
H A Dkiss_fftr.c36 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/
H A Dvp9_onyxc_int.h430 BLOCK_SIZE subsize,
441 memset(above_ctx, partition_context_lookup[subsize].above, bs);
442 memset(left_ctx, partition_context_lookup[subsize].left, bs);
428 update_partition_context(MACROBLOCKD *xd, int mi_row, int mi_col, BLOCK_SIZE subsize, BLOCK_SIZE bsize) argument
H A Dvp9_mfqe.c227 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,
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decodeframe.c914 BLOCK_SIZE subsize,
922 memset(above_ctx, partition_context_lookup[subsize].above, bw);
923 memset(left_ctx, partition_context_lookup[subsize].left, bw);
949 // TODO(slavarnway): eliminate bsize and subsize in future commits
958 BLOCK_SIZE subsize; local
967 subsize = subsize_lookup[partition][bsize]; // get_subsize(bsize, partition);
972 decode_block(pbi, xd, mi_row, mi_col, r, subsize, 1, 1);
976 decode_block(pbi, xd, mi_row, mi_col, r, subsize, n4x4_l2, n4x4_l2);
979 decode_block(pbi, xd, mi_row, mi_col, r, subsize, n4x4_l2, n8x8_l2);
981 decode_block(pbi, xd, mi_row + hbs, mi_col, r, subsize, n4x4_l
912 dec_update_partition_context(MACROBLOCKD *xd, int mi_row, int mi_col, BLOCK_SIZE subsize, int bw) argument
[all...]

Completed in 533 milliseconds