/external/libvpx/libvpx/vp9/encoder/ |
vp9_encodeframe.c | 53 static INLINE uint8_t *get_sb_index(MACROBLOCK *x, BLOCK_SIZE subsize) { 54 switch (subsize) { 837 BLOCK_SIZE subsize; local 870 subsize = get_subsize(bsize, PARTITION_SPLIT); 878 *get_sb_index(x, subsize) = i; 880 output_enabled, subsize); 1016 BLOCK_SIZE subsize; local 1490 BLOCK_SIZE subsize; local 2127 const BLOCK_SIZE subsize = subsize_lookup[PARTITION_SPLIT][bsize]; local [all...] |
vp9_segmentation.c | 195 const BLOCK_SIZE subsize = subsize_lookup[PARTITION_SPLIT][bsize]; local 207 mi_row + mi_dr, mi_col + mi_dc, subsize);
|
vp9_bitstream.c | 607 BLOCK_SIZE subsize; local 615 subsize = get_subsize(bsize, partition); 616 if (subsize < BLOCK_8X8) { 634 write_modes_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col, subsize); 636 subsize); 638 subsize); 640 subsize); 651 mi_row, mi_col, subsize, bsize); [all...] |
/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/decoder/ |
vp9_decodframe.c | 488 BLOCK_SIZE subsize; local 494 subsize = get_subsize(bsize, partition); 495 if (subsize < BLOCK_8X8) { 496 decode_modes_b(cm, xd, tile, mi_row, mi_col, r, subsize, token_cache); 500 decode_modes_b(cm, xd, tile, mi_row, mi_col, r, subsize, token_cache); 503 decode_modes_b(cm, xd, tile, mi_row, mi_col, r, subsize, token_cache); 505 decode_modes_b(cm, xd, tile, mi_row + hbs, mi_col, r, subsize, 509 decode_modes_b(cm, xd, tile, mi_row, mi_col, r, subsize, token_cache); 511 decode_modes_b(cm, xd, tile, mi_row, mi_col + hbs, r, subsize, 515 decode_modes_sb(cm, xd, tile, mi_row, mi_col, r, subsize, [all...] |
/external/libvpx/libvpx/vp9/common/ |
vp9_blockd.h | 229 const BLOCK_SIZE subsize = subsize_lookup[partition][bsize]; local 230 assert(subsize < BLOCK_SIZES); 231 return subsize;
|