Home
last modified time | relevance | path

Searched refs:PARTITION_SPLIT (Results 1 – 8 of 8) sorted by relevance

/external/libvpx/libvpx/vp9/common/
Dvp9_common_data.c47 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,
Dvp9_enums.h65 PARTITION_SPLIT, enumerator
Dvp9_entropymode.c260 -PARTITION_NONE, 2, -PARTITION_HORZ, 4, -PARTITION_VERT, -PARTITION_SPLIT
Dvp9_mfqe.c317 case PARTITION_SPLIT: in mfqe_partition()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encodeframe.c876 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 …]
Dvp9_bitstream.c409 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()
Dvp9_segmentation.c172 const BLOCK_SIZE subsize = subsize_lookup[PARTITION_SPLIT][bsize]; in count_segs_sb()
/external/libvpx/libvpx/vp9/decoder/
Dvp9_decodeframe.c901 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()