Home
last modified time | relevance | path

Searched refs:indexA (Results 1 – 3 of 3) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
Dh264bsd_deblocking.c1389 u32 indexA, indexB; in GetLumaEdgeThresholds() local
1399 indexA = (u32)CLIP3(0, 51, (i32)qp + mb->filterOffsetA); in GetLumaEdgeThresholds()
1402 thresholds[INNER].alpha = alphas[indexA]; in GetLumaEdgeThresholds()
1404 thresholds[INNER].tc0 = tc0[indexA]; in GetLumaEdgeThresholds()
1413 indexA = (u32)CLIP3(0, 51, (i32)qpAv + mb->filterOffsetA); in GetLumaEdgeThresholds()
1416 thresholds[TOP].alpha = alphas[indexA]; in GetLumaEdgeThresholds()
1418 thresholds[TOP].tc0 = tc0[indexA]; in GetLumaEdgeThresholds()
1434 indexA = (u32)CLIP3(0, 51, (i32)qpAv + mb->filterOffsetA); in GetLumaEdgeThresholds()
1437 thresholds[LEFT].alpha = alphas[indexA]; in GetLumaEdgeThresholds()
1439 thresholds[LEFT].tc0 = tc0[indexA]; in GetLumaEdgeThresholds()
[all …]
/frameworks/av/media/libstagefright/codecs/avc/common/src/
Ddeblock.cpp297 int indexA, indexB; in DeblockMb() local
334 indexA = QP + video->FilterOffsetA; in DeblockMb()
336 indexA = qp_clip_tab[indexA]; // IClip(0, MAX_QP, QP+video->FilterOffsetA) in DeblockMb()
339 Alpha = ALPHA_TABLE[indexA]; in DeblockMb()
341 clipTable = (int *) CLIP_TAB[indexA]; in DeblockMb()
351 indexA = QPC + video->FilterOffsetA; in DeblockMb()
353 indexA = qp_clip_tab[indexA]; // IClip(0, MAX_QP, QP+video->FilterOffsetA) in DeblockMb()
356 Alpha = ALPHA_TABLE[indexA]; in DeblockMb()
358 clipTable = (int *) CLIP_TAB[indexA]; in DeblockMb()
377 indexA = MbQ->QPy + video->FilterOffsetA; in DeblockMb()
[all …]
/frameworks/base/core/jni/
Dandroid_graphics_Canvas.cpp301 AutoJavaShortArray indexA(env, jindices, indexIndex + indexCount); in drawVertices() local
312 indices = (const uint16_t*)(indexA.ptr() + indexIndex); in drawVertices()