Searched refs:PARTITION_SPLIT (Results 1 – 8 of 8) sorted by relevance
/external/libvpx/libvpx/vp9/common/ |
D | vp9_common_data.c | 47 PARTITION_SPLIT, PARTITION_VERT, PARTITION_HORZ, PARTITION_NONE, 53 PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT, 59 PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT, 60 PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_VERT, 65 PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT, 66 PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT, 67 PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_VERT, PARTITION_HORZ,
|
D | vp9_enums.h | 65 PARTITION_SPLIT, enumerator
|
D | vp9_entropymode.c | 244 -PARTITION_VERT, -PARTITION_SPLIT
|
D | vp9_mfqe.c | 325 case PARTITION_SPLIT: in mfqe_partition()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_encodeframe.c | 1468 case PARTITION_SPLIT: in encode_sb() 1488 if (partition != PARTITION_SPLIT || bsize == BLOCK_8X8) in encode_sb() 1807 case PARTITION_SPLIT: in encode_sb_rt() 1808 subsize = get_subsize(bsize, PARTITION_SPLIT); in encode_sb_rt() 1823 if (partition != PARTITION_SPLIT || bsize == BLOCK_8X8) in encode_sb_rt() 1880 if (partition == PARTITION_SPLIT && subsize > BLOCK_8X8) { in rd_use_partition() 1881 sub_subsize = get_subsize(subsize, PARTITION_SPLIT); in rd_use_partition() 1966 case PARTITION_SPLIT: in rd_use_partition() 2012 && partition != PARTITION_SPLIT && bsize > BLOCK_8X8 in rd_use_partition() 2017 BLOCK_SIZE split_subsize = get_subsize(bsize, PARTITION_SPLIT); in rd_use_partition() [all …]
|
D | vp9_bitstream.c | 417 assert(p == PARTITION_SPLIT || p == PARTITION_HORZ); in write_partition() 418 vpx_write(w, p == PARTITION_SPLIT, probs[1]); in write_partition() 420 assert(p == PARTITION_SPLIT || p == PARTITION_VERT); in write_partition() 421 vpx_write(w, p == PARTITION_SPLIT, probs[2]); in write_partition() 423 assert(p == PARTITION_SPLIT); in write_partition() 465 case PARTITION_SPLIT: in write_modes_sb() 481 (bsize == BLOCK_8X8 || partition != PARTITION_SPLIT)) in write_modes_sb()
|
D | vp9_segmentation.c | 181 const BLOCK_SIZE subsize = subsize_lookup[PARTITION_SPLIT][bsize]; in count_segs_sb()
|
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_decodeframe.c | 937 p = vpx_read(r, probs[1]) ? PARTITION_SPLIT : PARTITION_HORZ; in read_partition() 939 p = vpx_read(r, probs[2]) ? PARTITION_SPLIT : PARTITION_VERT; in read_partition() 941 p = PARTITION_SPLIT; in read_partition() 990 case PARTITION_SPLIT: in decode_partition() 1004 (bsize == BLOCK_8X8 || partition != PARTITION_SPLIT)) in decode_partition()
|