HomeSort by relevance Sort by last modified time
    Searched defs:tx_size (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_blockd.c 47 const TX_SIZE tx_size = plane ? get_uv_tx_size(mbmi, pd) local
48 : mbmi->tx_size;
52 const int step = 1 << (tx_size << 1);
76 for (r = 0; r < num_4x4_h; r += (1 << tx_size)) {
77 for (c = 0; c < num_4x4_w; c += (1 << tx_size)) {
79 visit(plane, i, plane_bsize, tx_size, arg);
85 visit(plane, i, plane_bsize, tx_size, arg);
100 BLOCK_SIZE plane_bsize, TX_SIZE tx_size, int has_eob
    [all...]
vp9_blockd.h 130 TX_SIZE tx_size; member in struct:__anon17731
277 static INLINE TX_SIZE get_uv_tx_size_impl(TX_SIZE y_tx_size, BLOCK_SIZE bsize,
287 static INLINE TX_SIZE get_uv_tx_size(const MB_MODE_INFO *mbmi,
289 return get_uv_tx_size_impl(mbmi->tx_size, mbmi->sb_type, pd->subsampling_x,
300 TX_SIZE tx_size,
313 TX_SIZE tx_size, int block
    [all...]
vp9_loopfilter.c 504 const TX_SIZE tx_size_y = mbmi->tx_size;
505 const TX_SIZE tx_size_uv = get_uv_tx_size_impl(tx_size_y, block_size, 1, 1);
583 const TX_SIZE tx_size_y = mbmi->tx_size;
943 const TX_SIZE tx_size = (plane->plane_type == PLANE_TYPE_UV) local
    [all...]
  /external/libvpx/libvpx/vp9/common/
vp9_blockd.c 47 const TX_SIZE tx_size = plane ? get_uv_tx_size(mbmi) local
48 : mbmi->tx_size;
52 const int step = 1 << (tx_size << 1);
76 for (r = 0; r < num_4x4_h; r += (1 << tx_size)) {
77 for (c = 0; c < num_4x4_w; c += (1 << tx_size)) {
79 visit(plane, i, plane_bsize, tx_size, arg);
85 visit(plane, i, plane_bsize, tx_size, arg);
100 BLOCK_SIZE plane_bsize, TX_SIZE tx_size, int has_eob
    [all...]
vp9_blockd.h 126 TX_SIZE tx_size; member in struct:__anon29507
275 static INLINE TX_SIZE get_uv_tx_size_impl(TX_SIZE y_tx_size, BLOCK_SIZE bsize) {
285 static INLINE TX_SIZE get_uv_tx_size(const MB_MODE_INFO *mbmi) {
286 return get_uv_tx_size_impl(mbmi->tx_size, mbmi->sb_type);
298 TX_SIZE tx_size,
311 TX_SIZE tx_size, int block
    [all...]
vp9_loopfilter.c 504 const TX_SIZE tx_size_y = mbmi->tx_size;
505 const TX_SIZE tx_size_uv = get_uv_tx_size(mbmi);
583 const TX_SIZE tx_size_y = mbmi->tx_size;
941 const TX_SIZE tx_size = (plane->plane_type == PLANE_TYPE_UV) local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_blockd.c 47 const TX_SIZE tx_size = plane ? get_uv_tx_size(mbmi) local
48 : mbmi->tx_size;
52 const int step = 1 << (tx_size << 1);
76 for (r = 0; r < num_4x4_h; r += (1 << tx_size)) {
77 for (c = 0; c < num_4x4_w; c += (1 << tx_size)) {
79 visit(plane, i, plane_bsize, tx_size, arg);
85 visit(plane, i, plane_bsize, tx_size, arg);
100 BLOCK_SIZE plane_bsize, TX_SIZE tx_size, int has_eob
    [all...]
vp9_blockd.h 126 TX_SIZE tx_size; member in struct:__anon40690
275 static INLINE TX_SIZE get_uv_tx_size_impl(TX_SIZE y_tx_size, BLOCK_SIZE bsize) {
285 static INLINE TX_SIZE get_uv_tx_size(const MB_MODE_INFO *mbmi) {
286 return get_uv_tx_size_impl(mbmi->tx_size, mbmi->sb_type);
298 TX_SIZE tx_size,
311 TX_SIZE tx_size, int block
    [all...]
vp9_loopfilter.c 504 const TX_SIZE tx_size_y = mbmi->tx_size;
505 const TX_SIZE tx_size_uv = get_uv_tx_size(mbmi);
583 const TX_SIZE tx_size_y = mbmi->tx_size;
941 const TX_SIZE tx_size = (plane->plane_type == PLANE_TYPE_UV) local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
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...]
vp9_decodeframe.c 193 TX_SIZE tx_size, uint8_t *dst, int stride,
204 switch (tx_size) {
229 if (tx_type == DCT_DCT && tx_size <= TX_16X16 && eob <= 10)
230 vpx_memset(dqcoeff, 0, 4 * (4 << tx_size) * sizeof(dqcoeff[0]));
231 else if (tx_size == TX_32X32 && eob <= 34)
234 vpx_memset(dqcoeff, 0, (16 << (tx_size << 1)) * sizeof(dqcoeff[0]));
247 TX_SIZE tx_size, void *arg) {
257 txfrm_block_to_raster_xy(plane_bsize, tx_size, block, &x, &y)
498 TX_SIZE tx_size; local
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_encodemb.c 102 TX_SIZE tx_size, int ctx) {
115 const int default_eob = 16 << (tx_size << 1);
116 const int mul = 1 + (tx_size == TX_32X32);
118 const uint8_t *const band_translate = get_band_translate(tx_size);
119 const scan_order *const so = get_scan(xd, tx_size, type, block);
164 rate0 += mb->token_costs[tx_size][type][ref][band][0][pt]
166 rate1 += mb->token_costs[tx_size][type][ref][band][0][pt]
212 rate0 += mb->token_costs[tx_size][type][ref][band][!x][pt]
217 rate1 += mb->token_costs[tx_size][type][ref][band][!x][pt
588 const TX_SIZE tx_size = plane ? get_uv_tx_size(mbmi, pd) : mbmi->tx_size; local
    [all...]
vp9_bitstream.c 83 TX_SIZE tx_size, BLOCK_SIZE bsize,
85 const TX_SIZE max_tx_size = max_txsize_lookup[bsize];
88 vp9_write(w, tx_size != TX_4X4, tx_probs[0]);
89 if (tx_size != TX_4X4 && max_tx_size >= TX_16X16) {
90 vp9_write(w, tx_size != TX_8X8, tx_probs[1]);
91 if (tx_size != TX_8X8 && max_tx_size >= TX_32X32)
92 vp9_write(w, tx_size != TX_16X16, tx_probs[2]);
261 write_selected_tx_size(cm, xd, mbmi->tx_size, bsize, w);
347 write_selected_tx_size(cm, xd, mbmi->tx_size, bsize, w)
671 TX_SIZE tx_size; local
    [all...]
vp9_encodeframe.c 590 vpx_memcpy(x->zcoeff_blk[mbmi->tx_size], ctx->zcoeff_blk,
670 mbmi->tx_size = MIN(max_txsize_lookup[bsize],
3639 TX_SIZE tx_size; local
    [all...]
  /external/libvpx/libvpx/vp9/decoder/
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...]
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...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodemb.c 109 TX_SIZE tx_size, MACROBLOCK *mb,
128 const int default_eob = 16 << (tx_size << 1);
129 const int mul = 1 + (tx_size == TX_32X32);
132 const uint8_t *const band_translate = get_band_translate(tx_size);
133 const scan_order *so = get_scan(xd, tx_size, type, block);
176 mb->token_costs[tx_size][type][ref][band][0][pt]
179 mb->token_costs[tx_size][type][ref][band][0][pt]
225 rate0 += mb->token_costs[tx_size][type][ref][band][!x][pt]
230 rate1 += mb->token_costs[tx_size][type][ref][band][!x][pt
465 const TX_SIZE tx_size = plane ? get_uv_tx_size(mbmi) : mbmi->tx_size; local
    [all...]
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_encodeframe.c 902 vpx_memcpy(x->zcoeff_blk[mbmi->tx_size], ctx->zcoeff_blk,
3660 TX_SIZE tx_size; local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/decoder/
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...]
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...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_encodemb.c 109 TX_SIZE tx_size, MACROBLOCK *mb,
128 const int default_eob = 16 << (tx_size << 1);
129 const int mul = 1 + (tx_size == TX_32X32);
132 const uint8_t *const band_translate = get_band_translate(tx_size);
133 const scan_order *so = get_scan(xd, tx_size, type, block);
176 mb->token_costs[tx_size][type][ref][band][0][pt]
179 mb->token_costs[tx_size][type][ref][band][0][pt]
225 rate0 += mb->token_costs[tx_size][type][ref][band][!x][pt]
230 rate1 += mb->token_costs[tx_size][type][ref][band][!x][pt
465 const TX_SIZE tx_size = plane ? get_uv_tx_size(mbmi) : mbmi->tx_size; local
    [all...]
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_encodeframe.c 918 vpx_memcpy(x->zcoeff_blk[mbmi->tx_size], ctx->zcoeff_blk,
3496 TX_SIZE tx_size; local
    [all...]
  /external/bluetooth/bluedroid/btif/include/
btif_hl.h 178 UINT16 tx_size; member in struct:__anon5655

Completed in 368 milliseconds

1 2