Home
last modified time | relevance | path

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

12

/hardware/intel/common/omx-components/videocodec/libvpx_internal/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 …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/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 …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/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 …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/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]);
Drtcd_defs.pl40 …d vp8_dequant_idct_add_y_block/, "short *q, short *dq, unsigned char *dst, int stride, char *eobs";
45 …_block/, "short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs";
/hardware/intel/common/omx-components/videocodec/libvpx_internal/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()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/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.c151 vpx_memset(xd->eobs, 0, 25); in decode_macroblock()
184 vpx_memset(xd->eobs, 0, 25); in decode_macroblock()
202 if (xd->eobs[i]) in decode_macroblock()
204 if (xd->eobs[i] > 1) in decode_macroblock()
245 if (xd->eobs[24] > 1) in decode_macroblock()
270 xd->dst.y_stride, xd->eobs); in decode_macroblock()
276 xd->dst.uv_stride, xd->eobs+16); in decode_macroblock()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
Dvp9_encodemb.c120 int eob = p->eobs[block], final_eob, sz = 0; in optimize_b()
305 mb->plane[plane].eobs[block] = final_eob; in optimize_b()
326 uint16_t *const eob = &p->eobs[block]; in vp9_xform_quant()
387 p->eobs[block] = 0; in encode_block()
398 *a = *l = p->eobs[block] > 0; in encode_block()
401 if (p->eobs[block]) in encode_block()
404 if (x->skip_encode || p->eobs[block] == 0) in encode_block()
409 vp9_idct32x32_add(dqcoeff, dst, pd->dst.stride, p->eobs[block]); in encode_block()
412 vp9_idct16x16_add(dqcoeff, dst, pd->dst.stride, p->eobs[block]); in encode_block()
415 vp9_idct8x8_add(dqcoeff, dst, pd->dst.stride, p->eobs[block]); in encode_block()
[all …]
Dvp9_block.h36 uint16_t *eobs[MAX_MB_PLANE][3]; member
70 uint16_t *eobs; member
Dvp9_tokenize.c175 vp9_set_contexts(xd, pd, plane_bsize, tx_size, p->eobs[block] > 0, in set_entropy_context_b()
222 int eob = p->eobs[block]; in tokenize_b()
297 args->skippable[0] &= (!args->x->plane[plane].eobs[block]); in is_skippable()
Dvp9_rdopt.c564 const int eob = p->eobs[block]; in cost_coeffs()
685 x->zcoeff_blk[tx_size][block] = !x->plane[plane].eobs[block] || in block_rd_txfm()
1120 p->eobs[block]); in rd_pick_intra4x4block()
1135 dst, dst_stride, p->eobs[block]); in rd_pick_intra4x4block()
1396 p[i].eobs = ctx->eobs_pbuf[i][2]; in rd_pick_intra_sbuv_mode()
1406 ctx->eobs_pbuf[i][0] = p[i].eobs; in rd_pick_intra_sbuv_mode()
1614 int eobs; member
1999 bsi->rdstat[i + 1][mode_idx].eobs = in rd_check_segment_txsize()
2000 ref_bsi->rdstat[i + 1][mode_idx].eobs; in rd_check_segment_txsize()
2002 bsi->rdstat[i + 2][mode_idx].eobs = in rd_check_segment_txsize()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/armv7a-neon/
Dvp8_rtcd.h38 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs
39 …d vp8_dequant_idct_add_y_block_v6(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
40 …vp8_dequant_idct_add_y_block_neon(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
43 …v_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
44 …_block_v6(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
45 …lock_neon(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/mips-dspr2/
Dvp8_rtcd.h35 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs
36 …p8_dequant_idct_add_y_block_dspr2(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
39 …v_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
40 …ock_dspr2(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/armv7a/
Dvp8_rtcd.h36 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs
37 …d vp8_dequant_idct_add_y_block_v6(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
40 …v_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
41 …_block_v6(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/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()
Drdopt.c1093 unsigned char eobs[16]; member
1367 bsi->eobs[i] = x->e_mbd.eobs[i]; in rd_check_segment()
1496 *bd->eob = bsi.eobs[i]; in vp8_rd_pick_best_mbsegmentation()
1876 tteob += x->e_mbd.eobs[24]; in calculate_final_rd_costs()
1879 tteob += (x->e_mbd.eobs[i] > has_y2_block); in calculate_final_rd_costs()
1884 tteob += x->e_mbd.eobs[i]; in calculate_final_rd_costs()
2141 uv_intra_tteob += x->e_mbd.eobs[i]; in vp8_rd_pick_inter_mode()
/hardware/intel/common/omx-components/videocodec/libvpx_internal/x86/
Dvp8_rtcd.h107 …v_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
108 …block_mmx(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
109 …lock_sse2(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
110 …uv_block)(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
112 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs
113 … vp8_dequant_idct_add_y_block_mmx(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
114 …vp8_dequant_idct_add_y_block_sse2(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
115 …d (*vp8_dequant_idct_add_y_block)(short *q, short *dq, unsigned char *dst, int stride, char *eobs);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/mips/
Dvp8_rtcd.h34 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs
37 …v_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/generic/
Dvp8_rtcd.h34 void vp8_dequant_idct_add_y_block_c(short *q, short *dq, unsigned char *dst, int stride, char *eobs
37 …v_block_c(short *q, short *dq, unsigned char *dst_u, unsigned char *dst_v, int stride, char *eobs);

12