Home
last modified time | relevance | path

Searched refs:eobs (Results 1 – 25 of 32) sorted by relevance

12

/external/libvpx/libvpx/vp8/common/arm/armv6/
Didct_blk_v6.c17 int stride, char *eobs) in vp8_dequant_idct_add_y_block_v6() argument
23 if (eobs[0] > 1) in vp8_dequant_idct_add_y_block_v6()
25 else if (eobs[0] == 1) in vp8_dequant_idct_add_y_block_v6()
31 if (eobs[1] > 1) in vp8_dequant_idct_add_y_block_v6()
33 else if (eobs[1] == 1) in vp8_dequant_idct_add_y_block_v6()
39 if (eobs[2] > 1) in vp8_dequant_idct_add_y_block_v6()
41 else if (eobs[2] == 1) in vp8_dequant_idct_add_y_block_v6()
47 if (eobs[3] > 1) in vp8_dequant_idct_add_y_block_v6()
49 else if (eobs[3] == 1) in vp8_dequant_idct_add_y_block_v6()
57 eobs += 4; in vp8_dequant_idct_add_y_block_v6()
[all …]
/external/libvpx/libvpx/vp8/common/x86/
Didct_blk_mmx.c28 unsigned char *dst, int stride, char *eobs) in vp8_dequant_idct_add_y_block_mmx() argument
34 if (eobs[0] > 1) in vp8_dequant_idct_add_y_block_mmx()
36 else if (eobs[0] == 1) in vp8_dequant_idct_add_y_block_mmx()
42 if (eobs[1] > 1) in vp8_dequant_idct_add_y_block_mmx()
44 else if (eobs[1] == 1) in vp8_dequant_idct_add_y_block_mmx()
51 if (eobs[2] > 1) in vp8_dequant_idct_add_y_block_mmx()
53 else if (eobs[2] == 1) in vp8_dequant_idct_add_y_block_mmx()
60 if (eobs[3] > 1) in vp8_dequant_idct_add_y_block_mmx()
62 else if (eobs[3] == 1) in vp8_dequant_idct_add_y_block_mmx()
71 eobs += 4; in vp8_dequant_idct_add_y_block_mmx()
[all …]
Didct_blk_sse2.c23 unsigned char *dst, int stride, char *eobs) in vp8_dequant_idct_add_y_block_sse2() argument
29 if (((short *)(eobs))[0]) in vp8_dequant_idct_add_y_block_sse2()
31 if (((short *)(eobs))[0] & 0xfefe) in vp8_dequant_idct_add_y_block_sse2()
36 if (((short *)(eobs))[1]) in vp8_dequant_idct_add_y_block_sse2()
38 if (((short *)(eobs))[1] & 0xfefe) in vp8_dequant_idct_add_y_block_sse2()
45 eobs += 4; in vp8_dequant_idct_add_y_block_sse2()
51 unsigned char *dstu, unsigned char *dstv, int stride, char *eobs) in vp8_dequant_idct_add_uv_block_sse2() argument
53 if (((short *)(eobs))[0]) in vp8_dequant_idct_add_uv_block_sse2()
55 if (((short *)(eobs))[0] & 0xfefe) in vp8_dequant_idct_add_uv_block_sse2()
63 if (((short *)(eobs))[1]) in vp8_dequant_idct_add_uv_block_sse2()
[all …]
/external/libvpx/libvpx/vp8/common/arm/neon/
Didct_blk_neon.c25 int stride, char *eobs) in vp8_dequant_idct_add_y_block_neon() argument
31 if (((short *)(eobs))[0]) in vp8_dequant_idct_add_y_block_neon()
33 if (((short *)eobs)[0] & 0xfefe) in vp8_dequant_idct_add_y_block_neon()
39 if (((short *)(eobs))[1]) in vp8_dequant_idct_add_y_block_neon()
41 if (((short *)eobs)[1] & 0xfefe) in vp8_dequant_idct_add_y_block_neon()
48 eobs += 4; in vp8_dequant_idct_add_y_block_neon()
55 int stride, char *eobs) in vp8_dequant_idct_add_uv_block_neon() argument
57 if (((short *)(eobs))[0]) in vp8_dequant_idct_add_uv_block_neon()
59 if (((short *)eobs)[0] & 0xfefe) in vp8_dequant_idct_add_uv_block_neon()
68 if (((short *)(eobs))[1]) in vp8_dequant_idct_add_uv_block_neon()
[all …]
/external/libvpx/libvpx/vp8/common/
Dinvtrans.h28 static void eob_adjust(char *eobs, short *diff) in eob_adjust() argument
34 if((eobs[js] == 0) && (diff[0] != 0)) in eob_adjust()
35 eobs[js]++; in eob_adjust()
47 if (xd->eobs[24] > 1) in vp8_inverse_transform_mby()
57 eob_adjust(xd->eobs, xd->qcoeff); in vp8_inverse_transform_mby()
64 xd->dst.y_stride, xd->eobs); in vp8_inverse_transform_mby()
Didct_blk.c23 unsigned char *dst, int stride, char *eobs) in vp8_dequant_idct_add_y_block_c() argument
31 if (*eobs++ > 1) in vp8_dequant_idct_add_y_block_c()
49 unsigned char *dstu, unsigned char *dstv, int stride, char *eobs) in vp8_dequant_idct_add_uv_block_c() argument
57 if (*eobs++ > 1) in vp8_dequant_idct_add_uv_block_c()
76 if (*eobs++ > 1) in vp8_dequant_idct_add_uv_block_c()
Dmbpitch.c48 x->block[r].eob = x->eobs + r; in vp8_setup_block_dptrs()
Dblockd.h216 DECLARE_ALIGNED(16, char, eobs[25]);
/external/libvpx/libvpx/vp8/common/mips/dspr2/
Didct_blk_dspr2.c18 unsigned char *dst, int stride, char *eobs) in vp8_dequant_idct_add_y_block_dspr2() argument
26 if (*eobs++ > 1) in vp8_dequant_idct_add_y_block_dspr2()
44 unsigned char *dstu, unsigned char *dstv, int stride, char *eobs) in vp8_dequant_idct_add_uv_block_dspr2() argument
52 if (*eobs++ > 1) in vp8_dequant_idct_add_uv_block_dspr2()
71 if (*eobs++ > 1) in vp8_dequant_idct_add_uv_block_dspr2()
/external/libvpx/libvpx/vp8/decoder/
Ddetokenize.c174 char *eobs = x->eobs; in vp8_decode_mb_tokens() local
200 eobs[24] = nonzeros; in vp8_decode_mb_tokens()
221 eobs[i] = nonzeros; in vp8_decode_mb_tokens()
238 eobs[i] = nonzeros; in vp8_decode_mb_tokens()
Dthreading.c147 vpx_memset(xd->eobs, 0, 25); in mt_decode_macroblock()
180 vpx_memset(xd->eobs, 0, 25); in mt_decode_macroblock()
220 if (xd->eobs[i] ) in mt_decode_macroblock()
222 if (xd->eobs[i] > 1) in mt_decode_macroblock()
261 if (xd->eobs[24] > 1) in mt_decode_macroblock()
286 xd->dst.y_stride, xd->eobs); in mt_decode_macroblock()
292 xd->dst.uv_stride, xd->eobs+16); in mt_decode_macroblock()
Ddecodeframe.c152 vpx_memset(xd->eobs, 0, 25); in decode_macroblock()
185 vpx_memset(xd->eobs, 0, 25); in decode_macroblock()
203 if (xd->eobs[i]) in decode_macroblock()
205 if (xd->eobs[i] > 1) in decode_macroblock()
246 if (xd->eobs[24] > 1) in decode_macroblock()
271 xd->dst.y_stride, xd->eobs); in decode_macroblock()
277 xd->dst.uv_stride, xd->eobs+16); in decode_macroblock()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_encodemb.c113 const int eob = p->eobs[block]; in optimize_b()
292 mb->plane[plane].eobs[block] = final_eob; in optimize_b()
313 uint16_t *const eob = &p->eobs[block]; in vp9_xform_quant_fp()
363 uint16_t *const eob = &p->eobs[block]; in vp9_xform_quant_dc()
411 uint16_t *const eob = &p->eobs[block]; in vp9_xform_quant()
473 p->eobs[block] = 0; in encode_block()
490 p->eobs[block] = 0; in encode_block()
500 *a = *l = p->eobs[block] > 0; in encode_block()
503 if (p->eobs[block]) in encode_block()
506 if (x->skip_encode || p->eobs[block] == 0) in encode_block()
[all …]
Dvp9_context_tree.c38 CHECK_MEM_ERROR(cm, ctx->eobs[i][k], in alloc_mode_context()
43 ctx->eobs_pbuf[i][k] = ctx->eobs[i][k]; in alloc_mode_context()
60 vpx_free(ctx->eobs[i][k]); in free_mode_context()
61 ctx->eobs[i][k] = 0; in free_mode_context()
Dvp9_tokenize.c166 vp9_set_contexts(xd, pd, plane_bsize, tx_size, p->eobs[block] > 0, in set_entropy_context_b()
213 int eob = p->eobs[block]; in tokenize_b()
288 args->skippable[0] &= (!args->x->plane[plane].eobs[block]); in is_skippable()
Dvp9_context_tree.h25 uint16_t *eobs[MAX_MB_PLANE][3]; member
Dvp9_block.h33 uint16_t *eobs; member
Dvp9_rdopt.c149 p->eobs = ctx->eobs_pbuf[i][m]; in swap_block_ptr()
159 ctx->eobs_pbuf[i][n] = p->eobs; in swap_block_ptr()
264 const int eob = p->eobs[block]; in cost_coeffs()
387 if (!x->plane[plane].eobs[block]) in block_rd_txfm()
392 x->plane[plane].eobs[block] = 0; in block_rd_txfm()
405 x->zcoeff_blk[tx_size][block] = !x->plane[plane].eobs[block] || in block_rd_txfm()
700 p->eobs[block]); in rd_pick_intra4x4block()
715 dst, dst_stride, p->eobs[block]); in rd_pick_intra4x4block()
1157 int eobs; member
1523 bsi->rdstat[i + 1][mode_idx].eobs = in rd_pick_best_sub8x8_mode()
[all …]
/external/libvpx/armv7a-neon/
Dvp8_rtcd.h93 …v_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
94 …_block_v6(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
95 …lock_neon(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
98 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs
99 …d vp8_dequant_idct_add_y_block_v6(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
100 …vp8_dequant_idct_add_y_block_neon(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
/external/libvpx/mips-dspr2/
Dvp8_rtcd.h79 …v_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
80 …ock_dspr2(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
83 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs
84 …p8_dequant_idct_add_y_block_dspr2(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
/external/libvpx/x86/
Dvp8_rtcd.h106 …v_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
107 …block_mmx(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
108 …lock_sse2(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
111 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs
112 … vp8_dequant_idct_add_y_block_mmx(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
113 …vp8_dequant_idct_add_y_block_sse2(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
/external/libvpx/armv7a/
Dvp8_rtcd.h83 …v_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
84 …_block_v6(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
87 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs
88 …d vp8_dequant_idct_add_y_block_v6(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
/external/libvpx/libvpx/vp8/encoder/
Dtokenize.c125 eob = xd->eobs[24]; in tokenize2nd_order_b()
373 skip &= (x->eobs[i] < 2); in mb_is_skippable()
377 skip &= (!x->eobs[i]); in mb_is_skippable()
/external/libvpx/generic/
Dvp8_rtcd.h74 …v_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
77 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs
/external/libvpx/mips/
Dvp8_rtcd.h74 …v_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
77 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs

12