HomeSort by relevance Sort by last modified time
    Searched full:tx_size (Results 26 - 50 of 88) sorted by null

12 3 4

  /external/libvpx/libvpx/vp9/common/
vp9_entropy.h 121 static INLINE const uint8_t *get_band_translate(TX_SIZE tx_size) {
122 return tx_size == TX_4X4 ? vp9_coefband_trans_4x4
148 static INLINE int get_entropy_context(TX_SIZE tx_size, const ENTROPY_CONTEXT *a,
152 switch (tx_size) {
176 static const INLINE scan_order *get_scan(const MACROBLOCKD *xd, TX_SIZE tx_size,
181 return &vp9_default_scan_orders[tx_size];
184 return &vp9_scan_orders[tx_size][intra_mode_to_tx_type_lookup[mode]]
    [all...]
vp9_common_data.h 31 extern const TX_SIZE max_txsize_lookup[BLOCK_SIZES];
32 extern const TX_SIZE tx_mode_to_biggest_tx_size[TX_MODES];
vp9_pred_common.h 101 static INLINE const vp9_prob *get_tx_probs(TX_SIZE max_tx_size, int ctx,
116 static INLINE const vp9_prob *get_tx_probs2(TX_SIZE max_tx_size,
122 static INLINE unsigned int *get_tx_counts(TX_SIZE max_tx_size, int ctx,
vp9_reconintra.c 314 MB_PREDICTION_MODE mode, TX_SIZE tx_size,
323 const int bs = 4 << tx_size;
429 dc_pred[left_available][up_available][tx_size](dst, dst_stride,
432 pred[mode][tx_size](dst, dst_stride, const_above_row, left_col);
437 TX_SIZE tx_size, MB_PREDICTION_MODE mode,
441 const int bwl = bwl_in - tx_size;
450 build_intra_predictors(xd, ref, ref_stride, dst, dst_stride, mode, tx_size,
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_entropy.h 121 static INLINE const uint8_t *get_band_translate(TX_SIZE tx_size) {
122 return tx_size == TX_4X4 ? vp9_coefband_trans_4x4
148 static INLINE int get_entropy_context(TX_SIZE tx_size, const ENTROPY_CONTEXT *a,
152 switch (tx_size) {
176 INLINE static const scan_order *get_scan(const MACROBLOCKD *xd, TX_SIZE tx_size,
181 return &vp9_default_scan_orders[tx_size];
184 return &vp9_scan_orders[tx_size][intra_mode_to_tx_type_lookup[mode]]
    [all...]
vp9_common_data.h 31 extern const TX_SIZE max_txsize_lookup[BLOCK_SIZES];
32 extern const TX_SIZE tx_mode_to_biggest_tx_size[TX_MODES];
vp9_pred_common.h 101 static INLINE const vp9_prob *get_tx_probs(TX_SIZE max_tx_size, int ctx,
116 static INLINE const vp9_prob *get_tx_probs2(TX_SIZE max_tx_size,
122 static INLINE unsigned int *get_tx_counts(TX_SIZE max_tx_size, int ctx,
vp9_reconintra.c 316 MB_PREDICTION_MODE mode, TX_SIZE tx_size,
325 const int bs = 4 << tx_size;
431 dc_pred[left_available][up_available][tx_size](dst, dst_stride,
434 pred[mode][tx_size](dst, dst_stride, const_above_row, left_col);
439 TX_SIZE tx_size, MB_PREDICTION_MODE mode,
443 const int bwl = bwl_in - tx_size;
452 build_intra_predictors(xd, ref, ref_stride, dst, dst_stride, mode, tx_size,
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_common_data.h 31 extern const TX_SIZE max_txsize_lookup[BLOCK_SIZES];
32 extern const TX_SIZE tx_mode_to_biggest_tx_size[TX_MODES];
vp9_pred_common.h 101 static INLINE const vp9_prob *get_tx_probs(TX_SIZE max_tx_size, int ctx,
116 static INLINE const vp9_prob *get_tx_probs2(TX_SIZE max_tx_size,
122 static INLINE unsigned int *get_tx_counts(TX_SIZE max_tx_size, int ctx,
vp9_reconintra.c 325 PREDICTION_MODE mode, TX_SIZE tx_size,
334 const int bs = 4 << tx_size;
440 dc_pred[left_available][up_available][tx_size](dst, dst_stride,
443 pred[mode][tx_size](dst, dst_stride, const_above_row, left_col);
448 TX_SIZE tx_size, PREDICTION_MODE mode,
452 const int bwl = bwl_in - tx_size;
461 build_intra_predictors(xd, ref, ref_stride, dst, dst_stride, mode, tx_size,
  /external/libvpx/libvpx/vp9/encoder/
vp9_rdopt.h 81 void vp9_get_entropy_contexts(BLOCK_SIZE bsize, TX_SIZE tx_size,
vp9_bitstream.c 83 TX_SIZE tx_size, BLOCK_SIZE bsize,
85 const TX_SIZE max_tx_size = max_txsize_lookup[bsize];
89 vp9_write(w, tx_size != TX_4X4, tx_probs[0]);
90 if (tx_size != TX_4X4 && max_tx_size >= TX_16X16) {
91 vp9_write(w, tx_size != TX_8X8, tx_probs[1]);
92 if (tx_size != TX_8X8 && max_tx_size >= TX_32X32)
93 vp9_write(w, tx_size != TX_16X16, tx_probs[2]);
264 write_selected_tx_size(cpi, mbmi->tx_size, bsize, w);
350 write_selected_tx_size(cpi, mbmi->tx_size, bsize, w)
671 TX_SIZE tx_size; local
    [all...]
vp9_rdopt.c 178 TX_SIZE t;
478 TX_SIZE tx_size,
490 const int t = 4 << tx_size;
492 if (tx_size == TX_4X4) {
494 } else if (tx_size == TX_8X8) {
496 } else if (tx_size == TX_16X16) {
498 } else if (tx_size == TX_32X32) {
555 TX_SIZE tx_size,
956 TX_SIZE tx_size; local
1007 TX_SIZE tx_size; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_rdopt.h 79 void vp9_get_entropy_contexts(BLOCK_SIZE bsize, TX_SIZE tx_size,
vp9_bitstream.c 83 TX_SIZE tx_size, BLOCK_SIZE bsize,
85 const TX_SIZE max_tx_size = max_txsize_lookup[bsize];
89 vp9_write(w, tx_size != TX_4X4, tx_probs[0]);
90 if (tx_size != TX_4X4 && max_tx_size >= TX_16X16) {
91 vp9_write(w, tx_size != TX_8X8, tx_probs[1]);
92 if (tx_size != TX_8X8 && max_tx_size >= TX_32X32)
93 vp9_write(w, tx_size != TX_16X16, tx_probs[2]);
264 write_selected_tx_size(cpi, mbmi->tx_size, bsize, w);
350 write_selected_tx_size(cpi, mbmi->tx_size, bsize, w)
671 TX_SIZE tx_size; local
    [all...]
vp9_rdopt.c 178 TX_SIZE t;
478 TX_SIZE tx_size,
490 const int t = 4 << tx_size;
492 if (tx_size == TX_4X4) {
494 } else if (tx_size == TX_8X8) {
496 } else if (tx_size == TX_16X16) {
498 } else if (tx_size == TX_32X32) {
555 TX_SIZE tx_size,
956 TX_SIZE tx_size; local
1007 TX_SIZE tx_size; local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_bitstream.c 83 TX_SIZE tx_size, BLOCK_SIZE bsize,
85 const TX_SIZE max_tx_size = max_txsize_lookup[bsize];
89 vp9_write(w, tx_size != TX_4X4, tx_probs[0]);
90 if (tx_size != TX_4X4 && max_tx_size >= TX_16X16) {
91 vp9_write(w, tx_size != TX_8X8, tx_probs[1]);
92 if (tx_size != TX_8X8 && max_tx_size >= TX_32X32)
93 vp9_write(w, tx_size != TX_16X16, tx_probs[2]);
264 write_selected_tx_size(cpi, mbmi->tx_size, bsize, w);
350 write_selected_tx_size(cpi, mbmi->tx_size, bsize, w)
670 TX_SIZE tx_size; local
    [all...]
vp9_rdopt.c 178 TX_SIZE t;
480 TX_SIZE tx_size,
492 const int t = 4 << tx_size;
494 if (tx_size == TX_4X4) {
496 } else if (tx_size == TX_8X8) {
498 } else if (tx_size == TX_16X16) {
500 } else if (tx_size == TX_32X32) {
557 TX_SIZE tx_size,
959 TX_SIZE tx_size; local
1010 TX_SIZE tx_size; local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
vp9_decodeframe.c 193 TX_SIZE tx_size, uint8_t *dst, int stride,
200 switch (tx_size) {
227 if (tx_type == DCT_DCT && tx_size <= TX_16X16 && eob <= 10)
228 vpx_memset(dqcoeff, 0, 4 * (4 << tx_size) * sizeof(dqcoeff[0]));
229 else if (tx_size == TX_32X32 && eob <= 34)
232 vpx_memset(dqcoeff, 0, (16 << (tx_size << 1)) * sizeof(dqcoeff[0]));
245 TX_SIZE tx_size, void *arg) {
255 txfrm_block_to_raster_xy(plane_bsize, tx_size, block, &x, &y)
487 TX_SIZE tx_size; local
    [all...]
vp9_decodemv.c 61 static TX_SIZE read_selected_tx_size(VP9_COMMON *cm, MACROBLOCKD *xd,
62 TX_SIZE max_tx_size, vp9_reader *r) {
65 int tx_size = vp9_read(r, tx_probs[0]); local
66 if (tx_size != TX_4X4 && max_tx_size >= TX_16X16) {
67 tx_size += vp9_read(r, tx_probs[1]);
68 if (tx_size != TX_8X8 && max_tx_size >= TX_32X32)
69 tx_size += vp9_read(r, tx_probs[2]);
73 ++get_tx_counts(max_tx_size, ctx, &cm->counts.tx)[tx_size];
74 return (TX_SIZE)tx_size;
    [all...]
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodeframe.c 191 TX_SIZE tx_size, uint8_t *dst, int stride,
198 switch (tx_size) {
225 if (tx_type == DCT_DCT && tx_size <= TX_16X16 && eob <= 10)
226 vpx_memset(dqcoeff, 0, 4 * (4 << tx_size) * sizeof(dqcoeff[0]));
227 else if (tx_size == TX_32X32 && eob <= 34)
230 vpx_memset(dqcoeff, 0, (16 << (tx_size << 1)) * sizeof(dqcoeff[0]));
243 TX_SIZE tx_size, void *arg) {
253 txfrm_block_to_raster_xy(plane_bsize, tx_size, block, &x, &y)
483 TX_SIZE tx_size; local
    [all...]
vp9_decodemv.c 62 static TX_SIZE read_selected_tx_size(VP9_COMMON *cm, MACROBLOCKD *xd,
63 TX_SIZE max_tx_size, vp9_reader *r) {
66 int tx_size = vp9_read(r, tx_probs[0]); local
67 if (tx_size != TX_4X4 && max_tx_size >= TX_16X16) {
68 tx_size += vp9_read(r, tx_probs[1]);
69 if (tx_size != TX_8X8 && max_tx_size >= TX_32X32)
70 tx_size += vp9_read(r, tx_probs[2]);
74 ++get_tx_counts(max_tx_size, ctx, &cm->counts.tx)[tx_size];
75 return (TX_SIZE)tx_size;
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
vp9_decodeframe.c 193 TX_SIZE tx_size, uint8_t *dst, int stride,
200 switch (tx_size) {
227 if (tx_type == DCT_DCT && tx_size <= TX_16X16 && eob <= 10)
228 vpx_memset(dqcoeff, 0, 4 * (4 << tx_size) * sizeof(dqcoeff[0]));
229 else if (tx_size == TX_32X32 && eob <= 34)
232 vpx_memset(dqcoeff, 0, (16 << (tx_size << 1)) * sizeof(dqcoeff[0]));
245 TX_SIZE tx_size, void *arg) {
255 txfrm_block_to_raster_xy(plane_bsize, tx_size, block, &x, &y)
485 TX_SIZE tx_size; local
    [all...]
vp9_decodemv.c 62 static TX_SIZE read_selected_tx_size(VP9_COMMON *cm, MACROBLOCKD *xd,
63 TX_SIZE max_tx_size, vp9_reader *r) {
66 int tx_size = vp9_read(r, tx_probs[0]); local
67 if (tx_size != TX_4X4 && max_tx_size >= TX_16X16) {
68 tx_size += vp9_read(r, tx_probs[1]);
69 if (tx_size != TX_8X8 && max_tx_size >= TX_32X32)
70 tx_size += vp9_read(r, tx_probs[2]);
74 ++get_tx_counts(max_tx_size, ctx, &cm->counts.tx)[tx_size];
75 return (TX_SIZE)tx_size;
    [all...]

Completed in 378 milliseconds

12 3 4