Home
last modified time | relevance | path

Searched refs:qpY (Results 1 – 5 of 5) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
Dh264bsd_macroblock_layer.c965 image_t *currImage, dpbStorage_t *dpb, i32 *qpY, u32 mbNum, in h264bsdDecodeMacroblock() argument
981 ASSERT(qpY && *qpY < 52); in h264bsdDecodeMacroblock()
1001 pMb->qpY = 0; in h264bsdDecodeMacroblock()
1041 *qpY = *qpY + pMbLayer->mbQpDelta; in h264bsdDecodeMacroblock()
1042 if (*qpY < 0) *qpY += 52; in h264bsdDecodeMacroblock()
1043 else if (*qpY >= 52) *qpY -= 52; in h264bsdDecodeMacroblock()
1045 pMb->qpY = (u32)*qpY; in h264bsdDecodeMacroblock()
1062 &pSrc, p, 0, p, 16, 16, *qpY, *totalCoeff); in h264bsdDecodeMacroblock()
1104 pMb->qpY = (u32)*qpY; in h264bsdDecodeMacroblock()
1156 h264bsdQpC[CLIP3(0, 51, (i32)pMb->qpY + pMb->chromaQpIndexOffset)]; in ProcessChromaResidual()
[all …]
Dh264bsd_slice_data.c99 i32 qpY; in h264bsdDecodeSliceData() local
129 qpY = (i32)pStorage->activePps->picInitQp + pSliceHeader->sliceQpDelta; in h264bsdDecodeSliceData()
185 currImage, pStorage->dpb, &qpY, currMbAddr, in h264bsdDecodeSliceData()
Dh264bsd_macroblock_layer.h168 u32 qpY; member
200 image_t *currImage, dpbStorage_t *dpb, i32 *qpY, u32 mbNum,
Dh264bsd_deblocking.c1397 qp = mb->qpY; in GetLumaEdgeThresholds()
1408 qpTmp = mb->mbB->qpY; in GetLumaEdgeThresholds()
1429 qpTmp = mb->mbA->qpY; in GetLumaEdgeThresholds()
1477 qp = mb->qpY; in GetChromaEdgeThresholds()
1489 qpTmp = mb->mbB->qpY; in GetChromaEdgeThresholds()
1490 if (qpTmp != mb->qpY) in GetChromaEdgeThresholds()
1511 qpTmp = mb->mbA->qpY; in GetChromaEdgeThresholds()
1512 if (qpTmp != mb->qpY) in GetChromaEdgeThresholds()
2197 qp = mb->qpY; in GetLumaEdgeThresholds()
2253 qpTmp = mb->mbB->qpY; in GetLumaEdgeThresholds()
[all …]
Dh264bsd_conceal.c297 pMb->qpY = 40; in ConcealMb()