Home
last modified time | relevance | path

Searched refs:xf (Results 1 – 4 of 4) sorted by relevance

/hardware/ti/omap4xxx/camera/
DNV12_resize.c47 mmUint16 xf, yf; in VT_resizeFrame_Video_opt2_lp() local
134 xf = (mmUchar) ((mmUint32) ((col*resizeFactorX) >> 6) & 0x7); in VT_resizeFrame_Video_opt2_lp()
147 w = bWeights[xf][yf][0]; in VT_resizeFrame_Video_opt2_lp()
154 w = bWeights[xf][yf][1]; in VT_resizeFrame_Video_opt2_lp()
161 w = bWeights[xf][yf][3]; in VT_resizeFrame_Video_opt2_lp()
168 w = bWeights[xf][yf][2]; in VT_resizeFrame_Video_opt2_lp()
221 xf = (mmUchar) ((mmUint32) ((col*resizeFactorX) >> 6) & 0x7); in VT_resizeFrame_Video_opt2_lp()
235 w = bWeights[xf][yf][0]; in VT_resizeFrame_Video_opt2_lp()
246 w = bWeights[xf][yf][1]; in VT_resizeFrame_Video_opt2_lp()
257 w = bWeights[xf][yf][3]; in VT_resizeFrame_Video_opt2_lp()
[all …]
/hardware/ti/omap4-aah/camera/
DNV12_resize.cpp58 mmUint16 xf, yf; in VT_resizeFrame_Video_opt2_lp() local
133 xf = (mmUchar) ((mmUint32) ((col*resizeFactorX) >> 6) & 0x7); in VT_resizeFrame_Video_opt2_lp()
145 w = bWeights[xf][yf][0]; in VT_resizeFrame_Video_opt2_lp()
152 w = bWeights[xf][yf][1]; in VT_resizeFrame_Video_opt2_lp()
159 w = bWeights[xf][yf][3]; in VT_resizeFrame_Video_opt2_lp()
166 w = bWeights[xf][yf][2]; in VT_resizeFrame_Video_opt2_lp()
215 xf = (mmUchar) ((mmUint32) ((col*resizeFactorX) >> 6) & 0x7); in VT_resizeFrame_Video_opt2_lp()
226 w = bWeights[xf][yf][0]; in VT_resizeFrame_Video_opt2_lp()
237 w = bWeights[xf][yf][1]; in VT_resizeFrame_Video_opt2_lp()
248 w = bWeights[xf][yf][3]; in VT_resizeFrame_Video_opt2_lp()
[all …]
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/ppc/
Dfdct_altivec.asm54 ;# Do horiz xf on two rows of coeffs v8 = a0 a1 a2 a3 b0 b1 b2 b3.
76 ;# Vertical xf on two rows. DCT values in comments are for inverse transform;
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libyuv/source/
Dscale.c3523 int xf = cx & 0xffff; in ScalePlaneBilinearSimple() local
3524 int r0 = (src[xi] * (65536 - xf) + src[xi + 1] * xf) >> 16; in ScalePlaneBilinearSimple()
3525 int r1 = (src[xi + src_stride] * (65536 - xf) + in ScalePlaneBilinearSimple()
3526 src[xi + src_stride + 1] * xf) >> 16; in ScalePlaneBilinearSimple()