Home
last modified time | relevance | path

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

/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
Dvp9_common_data.c50 PARTITION_SPLIT, PARTITION_VERT, PARTITION_HORZ, PARTITION_NONE,
56 PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT,
62 PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT,
63 PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_VERT,
68 PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT,
69 PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_SPLIT,
70 PARTITION_SPLIT, PARTITION_SPLIT, PARTITION_VERT, PARTITION_HORZ,
Dvp9_enums.h51 PARTITION_SPLIT, enumerator
Dvp9_entropymode.c244 -PARTITION_VERT, -PARTITION_SPLIT
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_encodeframe.c1296 case PARTITION_SPLIT: in encode_sb()
1297 subsize = get_subsize(bsize, PARTITION_SPLIT); in encode_sb()
1299 cm->counts.partition[ctx][PARTITION_SPLIT]++; in encode_sb()
1315 if (partition != PARTITION_SPLIT || bsize == BLOCK_8X8) in encode_sb()
1530 case PARTITION_SPLIT: in encode_sb_rt()
1531 subsize = get_subsize(bsize, PARTITION_SPLIT); in encode_sb_rt()
1533 cm->counts.partition[ctx][PARTITION_SPLIT]++; in encode_sb_rt()
1551 if (partition != PARTITION_SPLIT || bsize == BLOCK_8X8) in encode_sb_rt()
1630 if (partition == PARTITION_SPLIT && subsize > BLOCK_8X8) { in rd_use_partition()
1631 sub_subsize = get_subsize(subsize, PARTITION_SPLIT); in rd_use_partition()
[all …]
Dvp9_bitstream.c406 assert(p == PARTITION_SPLIT || p == PARTITION_HORZ); in write_partition()
407 vp9_write(w, p == PARTITION_SPLIT, probs[1]); in write_partition()
409 assert(p == PARTITION_SPLIT || p == PARTITION_VERT); in write_partition()
410 vp9_write(w, p == PARTITION_SPLIT, probs[2]); in write_partition()
412 assert(p == PARTITION_SPLIT); in write_partition()
452 case PARTITION_SPLIT: in write_modes_sb()
468 (bsize == BLOCK_8X8 || partition != PARTITION_SPLIT)) in write_modes_sb()
Dvp9_segmentation.c198 const BLOCK_SIZE subsize = subsize_lookup[PARTITION_SPLIT][bsize]; in count_segs_sb()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
Dvp9_decodeframe.c393 p = vp9_read(r, probs[1]) ? PARTITION_SPLIT : PARTITION_HORZ; in read_partition()
395 p = vp9_read(r, probs[2]) ? PARTITION_SPLIT : PARTITION_VERT; in read_partition()
397 p = PARTITION_SPLIT; in read_partition()
435 case PARTITION_SPLIT: in decode_partition()
448 (bsize == BLOCK_8X8 || partition != PARTITION_SPLIT)) in decode_partition()