Searched refs:PARTITION_SPLIT (Results 1 – 8 of 8) sorted by relevance
/external/libvpx/libvpx/vp9/common/ |
D | vp9_common_data.c | 48 PARTITION_SPLIT, PARTITION_VERT, PARTITION_HORZ, PARTITION_NONE, 54 PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT, 60 PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT, 61 PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_VERT, 66 PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT, 67 PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT, 68 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 | 1469 case PARTITION_SPLIT: in encode_sb() 1489 if (partition != PARTITION_SPLIT || bsize == BLOCK_8X8) in encode_sb() 1810 case PARTITION_SPLIT: in encode_sb_rt() 1811 subsize = get_subsize(bsize, PARTITION_SPLIT); in encode_sb_rt() 1826 if (partition != PARTITION_SPLIT || bsize == BLOCK_8X8) in encode_sb_rt() 1883 if (partition == PARTITION_SPLIT && subsize > BLOCK_8X8) { in rd_use_partition() 1884 sub_subsize = get_subsize(subsize, PARTITION_SPLIT); in rd_use_partition() 1969 case PARTITION_SPLIT: in rd_use_partition() 2015 && partition != PARTITION_SPLIT && bsize > BLOCK_8X8 in rd_use_partition() 2020 BLOCK_SIZE split_subsize = get_subsize(bsize, PARTITION_SPLIT); in rd_use_partition() [all …]
|
D | vp9_bitstream.c | 416 assert(p == PARTITION_SPLIT || p == PARTITION_HORZ); in write_partition() 417 vpx_write(w, p == PARTITION_SPLIT, probs[1]); in write_partition() 419 assert(p == PARTITION_SPLIT || p == PARTITION_VERT); in write_partition() 420 vpx_write(w, p == PARTITION_SPLIT, probs[2]); in write_partition() 422 assert(p == PARTITION_SPLIT); in write_partition() 464 case PARTITION_SPLIT: in write_modes_sb() 480 (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 | 942 p = vpx_read(r, probs[1]) ? PARTITION_SPLIT : PARTITION_HORZ; in read_partition() 944 p = vpx_read(r, probs[2]) ? PARTITION_SPLIT : PARTITION_VERT; in read_partition() 946 p = PARTITION_SPLIT; in read_partition() 995 case PARTITION_SPLIT: in decode_partition() 1009 (bsize == BLOCK_8X8 || partition != PARTITION_SPLIT)) in decode_partition()
|