Searched defs:subsize (Results 1 - 10 of 10) sorted by relevance

/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/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
H A Dvp9_segmentation.c185 const BLOCK_SIZE subsize = subsize_lookup[PARTITION_SPLIT][bsize]; local
197 mi_row + mi_dr, mi_col + mi_dc, subsize);
H A Dvp9_bitstream.c425 BLOCK_SIZE subsize; local
435 subsize = get_subsize(bsize, partition);
436 if (subsize < BLOCK_8X8) {
454 write_modes_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col, subsize);
456 subsize);
458 subsize);
460 subsize);
470 update_partition_context(xd, mi_row, mi_col, subsize, bsize);
H A Dvp9_encodeframe.c357 BLOCK_SIZE subsize = get_subsize(bsize, PARTITION_VERT); local
358 set_block_size(cpi, mi_row, mi_col, subsize);
359 set_block_size(cpi, mi_row, mi_col + block_width / 2, subsize);
367 BLOCK_SIZE subsize = get_subsize(bsize, PARTITION_HORZ); local
368 set_block_size(cpi, mi_row, mi_col, subsize);
369 set_block_size(cpi, mi_row + block_height / 2, mi_col, subsize);
931 BLOCK_SIZE subsize = bsize; local
938 subsize = get_subsize(bsize, pc_tree->partitioning);
941 subsize = BLOCK_4X4;
944 partition = partition_lookup[bsl][subsize];
1354 BLOCK_SIZE subsize; local
1429 BLOCK_SIZE subsize; local
2038 BLOCK_SIZE subsize; local
2650 fill_mode_info_sb(VP9_COMMON *cm, MACROBLOCK *x, int mi_row, int mi_col, BLOCK_SIZE bsize, BLOCK_SIZE subsize, PC_TREE *pc_tree) argument
2721 BLOCK_SIZE subsize = bsize; local
2980 BLOCK_SIZE subsize; local
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_segmentation.c198 const BLOCK_SIZE subsize = subsize_lookup[PARTITION_SPLIT][bsize]; local
210 mi_row + mi_dr, mi_col + mi_dc, subsize);
H A Dvp9_bitstream.c426 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);
H A Dvp9_encodeframe.c51 static INLINE uint8_t *get_sb_index(MACROBLOCK *x, BLOCK_SIZE subsize) { argument
52 switch (subsize) {
436 BLOCK_SIZE subsize = get_subsize(bsize, PARTITION_VERT); local
437 set_block_size(cpi, tile, mi_row, mi_col, subsize);
438 set_block_size(cpi, tile, mi_row, mi_col + block_width / 2, subsize);
446 BLOCK_SIZE subsize = get_subsize(bsize, PARTITION_HORZ); local
447 set_block_size(cpi, tile, mi_row, mi_col, subsize);
448 set_block_size(cpi, tile, mi_row + block_height / 2, mi_col, subsize);
1238 BLOCK_SIZE subsize; local
1245 subsize
1649 BLOCK_SIZE subsize; local
1735 BLOCK_SIZE subsize; local
2176 BLOCK_SIZE subsize; local
2737 fill_mode_info_sb(VP9_COMMON *cm, MACROBLOCK *x, int mi_row, int mi_col, BLOCK_SIZE bsize, BLOCK_SIZE subsize) argument
2810 BLOCK_SIZE subsize; local
3081 BLOCK_SIZE subsize; local
[all...]
/external/libvpx/libvpx/vp9/common/
H A Dvp9_blockd.h247 const BLOCK_SIZE subsize = subsize_lookup[partition][bsize]; local
248 assert(subsize < BLOCK_SIZES);
249 return subsize;
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
H A Dvp9_decodeframe.c418 BLOCK_SIZE subsize, uv_subsize; local
424 subsize = get_subsize(bsize, partition);
425 uv_subsize = ss_size_lookup[subsize][cm->subsampling_x][cm->subsampling_y];
426 if (subsize >= BLOCK_8X8 && uv_subsize == BLOCK_INVALID)
429 if (subsize < BLOCK_8X8) {
430 decode_block(cm, xd, tile, mi_row, mi_col, r, subsize);
434 decode_block(cm, xd, tile, mi_row, mi_col, r, subsize);
437 decode_block(cm, xd, tile, mi_row, mi_col, r, subsize);
439 decode_block(cm, xd, tile, mi_row + hbs, mi_col, r, subsize);
442 decode_block(cm, xd, tile, mi_row, mi_col, r, subsize);
[all...]
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decodeframe.c409 BLOCK_SIZE subsize; local
415 subsize = get_subsize(bsize, partition);
416 if (subsize < BLOCK_8X8) {
417 decode_block(cm, xd, tile, mi_row, mi_col, r, subsize);
421 decode_block(cm, xd, tile, mi_row, mi_col, r, subsize);
424 decode_block(cm, xd, tile, mi_row, mi_col, r, subsize);
426 decode_block(cm, xd, tile, mi_row + hbs, mi_col, r, subsize);
429 decode_block(cm, xd, tile, mi_row, mi_col, r, subsize);
431 decode_block(cm, xd, tile, mi_row, mi_col + hbs, r, subsize);
434 decode_partition(cm, xd, tile, mi_row, mi_col, r, subsize);
[all...]

Completed in 1360 milliseconds