HomeSort by relevance Sort by last modified time
    Searched refs:sb_type (Results 1 - 19 of 19) sorted by null

  /external/libvpx/libvpx/vp9/encoder/
vp9_encodeintra.c 23 mbmi->tx_size = use_16x16_pred ? (mbmi->sb_type >= BLOCK_16X16 ? TX_16X16
26 vp9_encode_intra_block_y(x, mbmi->sb_type);
vp9_segmentation.c 143 const BLOCK_SIZE bsize = mi_8x8[0]->mbmi.sb_type;
176 bw = num_8x8_blocks_wide_lookup[mi_8x8[0]->mbmi.sb_type];
177 bh = num_8x8_blocks_high_lookup[mi_8x8[0]->mbmi.sb_type];
vp9_encodemv.c 317 if (mbmi->sb_type < BLOCK_8X8) {
318 const int num_4x4_w = num_4x4_blocks_wide_lookup[mbmi->sb_type];
319 const int num_4x4_h = num_4x4_blocks_high_lookup[mbmi->sb_type];
vp9_encodeframe.c 385 assert(mi->mbmi.sb_type == bsize);
424 if (is_inter_block(mbmi) && mbmi->sb_type < BLOCK_8X8) {
461 && (mbmi->sb_type < BLOCK_8X8 || mbmi->mode == NEWMV)) {
622 xd->mi_8x8[0]->mbmi.sb_type = bsize;
939 mi_8x8[index]->mbmi.sb_type = bsize;
952 mi_8x8[index]->mbmi.sb_type = bsize;
967 BLOCK_SIZE sb_type = prev_mi ? prev_mi->mbmi.sb_type : 0; local
1304 BLOCK_SIZE sb_type = mi ? mi->mbmi.sb_type : 0; local
    [all...]
vp9_bitstream.c 387 const BLOCK_SIZE bsize = mi->sb_type;
519 if (m->mbmi.sb_type >= BLOCK_8X8 && cm->tx_mode == TX_MODE_SELECT)
520 write_selected_tx_size(cpi, m, m->mbmi.tx_size, m->mbmi.sb_type, bc);
522 if (m->mbmi.sb_type >= BLOCK_8X8) {
528 const int num_4x4_blocks_wide = num_4x4_blocks_wide_lookup[m->mbmi.sb_type];
529 const int num_4x4_blocks_high = num_4x4_blocks_high_lookup[m->mbmi.sb_type];
558 mi_row, num_8x8_blocks_high_lookup[m->mbmi.sb_type],
559 mi_col, num_8x8_blocks_wide_lookup[m->mbmi.sb_type],
613 partition = partition_lookup[bsl][m->mbmi.sb_type];
    [all...]
vp9_firstpass.c 361 switch (xd->mi_8x8[0]->mbmi.sb_type) {
400 cpi->fn_ptr[xd->mi_8x8[0]->mbmi.sb_type];
417 switch (xd->mi_8x8[0]->mbmi.sb_type) {
586 xd->mi_8x8[0]->mbmi.sb_type = BLOCK_16X16;
588 xd->mi_8x8[0]->mbmi.sb_type = BLOCK_16X8;
592 xd->mi_8x8[0]->mbmi.sb_type = BLOCK_8X16;
594 xd->mi_8x8[0]->mbmi.sb_type = BLOCK_8X8;
600 num_8x8_blocks_high_lookup[xd->mi_8x8[0]->mbmi.sb_type],
602 num_8x8_blocks_wide_lookup[xd->mi_8x8[0]->mbmi.sb_type],
606 int energy = vp9_block_energy(cpi, x, xd->mi_8x8[0]->mbmi.sb_type);
    [all...]
vp9_mbgraph.c 263 mi_local.mbmi.sb_type = BLOCK_16X16;
vp9_rdopt.c     [all...]
vp9_encodemb.c 628 if (mbmi->sb_type < BLOCK_8X8 && plane == 0)
  /external/libvpx/libvpx/vp9/common/
vp9_findnearmv.h 50 return left_mi->mbmi.sb_type < BLOCK_8X8 ? left_mi->bmi[b + 1].as_mode
64 return above_mi->mbmi.sb_type < BLOCK_8X8 ? above_mi->bmi[b + 2].as_mode
vp9_blockd.h 106 static INLINE int b_width_log2(BLOCK_SIZE sb_type) {
107 return b_width_log2_lookup[sb_type];
109 static INLINE int b_height_log2(BLOCK_SIZE sb_type) {
110 return b_height_log2_lookup[sb_type];
113 static INLINE int mi_width_log2(BLOCK_SIZE sb_type) {
114 return mi_width_log2_lookup[sb_type];
117 static INLINE int mi_height_log2(BLOCK_SIZE sb_type) {
118 return mi_height_log2_lookup[sb_type];
140 BLOCK_SIZE sb_type; member in struct:__anon23029
246 return mode2txfm_map[mbmi->sb_type < BLOCK_8X8
    [all...]
vp9_onyxc_int.h 302 BLOCK_SIZE sb_type,
308 const int bwl = b_width_log2(sb_type);
309 const int bhl = b_height_log2(sb_type);
328 BLOCK_SIZE sb_type) {
332 int bsl = mi_width_log2(sb_type), bs = 1 << bsl;
336 assert(mi_width_log2(sb_type) == mi_height_log2(sb_type));
vp9_debugmodes.c 59 print_mi_data(cm, mvs, "Partitions:", offsetof(MB_MODE_INFO, sb_type));
vp9_reconinter.c 139 assert(mi->mbmi.sb_type < BLOCK_8X8 || 4 << pred_w == bw);
140 assert(mi->mbmi.sb_type < BLOCK_8X8 || 4 << pred_h == bh);
152 const MV mv = mi->mbmi.sb_type < BLOCK_8X8
200 if (xd->mi_8x8[0]->mbmi.sb_type < BLOCK_8X8) {
vp9_mvref_common.c 124 return block_idx >= 0 && candidate->mbmi.sb_type < BLOCK_8X8
193 const MV *const mv_ref_search = mv_ref_blocks[mi->mbmi.sb_type];
vp9_loopfilter.c 510 const BLOCK_SIZE block_size = mi->mbmi.sb_type;
593 const BLOCK_SIZE block_size = mi->mbmi.sb_type;
675 switch (mip[0]->mbmi.sb_type) {
701 switch (mip[0]->mbmi.sb_type) {
731 switch (mip[0]->mbmi.sb_type) {
    [all...]
vp9_pred_common.c 378 const int max_tx_size = max_txsize_lookup[xd->mi_8x8[0]->mbmi.sb_type];
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodemv.c 109 const BLOCK_SIZE bsize = xd->mi_8x8[0]->mbmi.sb_type;
126 const BLOCK_SIZE bsize = xd->mi_8x8[0]->mbmi.sb_type;
168 const BLOCK_SIZE bsize = mbmi->sb_type;
331 const BLOCK_SIZE bsize = mi->mbmi.sb_type;
425 const BLOCK_SIZE bsize = mbmi->sb_type;
542 mbmi->tx_size = read_tx_size(cm, xd, cm->tx_mode, mbmi->sb_type,
555 const BLOCK_SIZE bsize = mi->mbmi.sb_type;
vp9_decodframe.c 308 ? ((mi->mbmi.sb_type < BLOCK_8X8) ? mi->bmi[block].as_mode
367 xd->mi_8x8[0]->mbmi.sb_type = bsize;
    [all...]

Completed in 860 milliseconds