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 | 260 -PARTITION_NONE, 2, -PARTITION_HORZ, 4, -PARTITION_VERT, -PARTITION_SPLIT
|
D | vp9_mfqe.c | 317 case PARTITION_SPLIT: in mfqe_partition()
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_encodeframe.c | 876 case PARTITION_SPLIT: in copy_partitioning_helper() 950 case PARTITION_SPLIT: in update_prev_partition() 1954 case PARTITION_SPLIT: in encode_sb() 1972 if (partition != PARTITION_SPLIT || bsize == BLOCK_8X8) in encode_sb() 2295 case PARTITION_SPLIT: in encode_sb_rt() 2296 subsize = get_subsize(bsize, PARTITION_SPLIT); in encode_sb_rt() 2309 if (partition != PARTITION_SPLIT || bsize == BLOCK_8X8) in encode_sb_rt() 2362 if (partition == PARTITION_SPLIT && subsize > BLOCK_8X8) { in rd_use_partition() 2363 sub_subsize = get_subsize(subsize, PARTITION_SPLIT); in rd_use_partition() 2445 case PARTITION_SPLIT: in rd_use_partition() [all …]
|
D | vp9_bitstream.c | 409 assert(p == PARTITION_SPLIT || p == PARTITION_HORZ); in write_partition() 410 vpx_write(w, p == PARTITION_SPLIT, probs[1]); in write_partition() 412 assert(p == PARTITION_SPLIT || p == PARTITION_VERT); in write_partition() 413 vpx_write(w, p == PARTITION_SPLIT, probs[2]); in write_partition() 415 assert(p == PARTITION_SPLIT); in write_partition() 462 case PARTITION_SPLIT: in write_modes_sb() 478 (bsize == BLOCK_8X8 || partition != PARTITION_SPLIT)) in write_modes_sb()
|
D | vp9_segmentation.c | 172 const BLOCK_SIZE subsize = subsize_lookup[PARTITION_SPLIT][bsize]; in count_segs_sb()
|
/external/libvpx/libvpx/vp9/decoder/ |
D | vp9_decodeframe.c | 901 p = vpx_read(r, probs[1]) ? PARTITION_SPLIT : PARTITION_HORZ; in read_partition() 903 p = vpx_read(r, probs[2]) ? PARTITION_SPLIT : PARTITION_VERT; in read_partition() 905 p = PARTITION_SPLIT; in read_partition() 952 case PARTITION_SPLIT: in decode_partition() 965 (bsize == BLOCK_8X8 || partition != PARTITION_SPLIT)) in decode_partition()
|