Home
last modified time | relevance | path

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

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
Dh264bsd_pic_param_set.c95 i32 itmp; in h264bsdDecodePicParamSet() local
281 tmp = h264bsdDecodeExpGolombSigned(pStrmData, &itmp); in h264bsdDecodePicParamSet()
284 if ((itmp < -26) || (itmp > 25)) in h264bsdDecodePicParamSet()
289 pPicParamSet->picInitQp = (u32)(itmp + 26); in h264bsdDecodePicParamSet()
292 tmp = h264bsdDecodeExpGolombSigned(pStrmData, &itmp); in h264bsdDecodePicParamSet()
295 if ((itmp < -26) || (itmp > 25)) in h264bsdDecodePicParamSet()
301 tmp = h264bsdDecodeExpGolombSigned(pStrmData, &itmp); in h264bsdDecodePicParamSet()
304 if ((itmp < -12) || (itmp > 12)) in h264bsdDecodePicParamSet()
309 pPicParamSet->chromaQpIndexOffset = itmp; in h264bsdDecodePicParamSet()
Dh264bsd_slice_header.c105 i32 itmp; in h264bsdDecodeSliceHeader() local
200 tmp = h264bsdDecodeExpGolombSigned(pStrmData, &itmp); in h264bsdDecodeSliceHeader()
203 pSliceHeader->deltaPicOrderCntBottom = itmp; in h264bsdDecodeSliceHeader()
222 tmp = h264bsdDecodeExpGolombSigned(pStrmData, &itmp); in h264bsdDecodeSliceHeader()
225 pSliceHeader->deltaPicOrderCnt[0] = itmp; in h264bsdDecodeSliceHeader()
229 tmp = h264bsdDecodeExpGolombSigned(pStrmData, &itmp); in h264bsdDecodeSliceHeader()
232 pSliceHeader->deltaPicOrderCnt[1] = itmp; in h264bsdDecodeSliceHeader()
313 tmp = h264bsdDecodeExpGolombSigned(pStrmData, &itmp); in h264bsdDecodeSliceHeader()
316 pSliceHeader->sliceQpDelta = itmp; in h264bsdDecodeSliceHeader()
317 itmp += (i32)pPicParamSet->picInitQp; in h264bsdDecodeSliceHeader()
[all …]
Dh264bsd_macroblock_layer.c141 i32 itmp; in h264bsdDecodeMacroblockLayer() local
223 tmp = h264bsdDecodeExpGolombSigned(pStrmData, &itmp); in h264bsdDecodeMacroblockLayer()
224 if (tmp != HANTRO_OK || (itmp < -26) || (itmp > 25) ) in h264bsdDecodeMacroblockLayer()
226 pMbLayer->mbQpDelta = itmp; in h264bsdDecodeMacroblockLayer()
360 i32 itmp; in DecodeMbPred() local
385 tmp = h264bsdDecodeExpGolombSigned(pStrmData, &itmp); in DecodeMbPred()
388 pMbPred->mvdL0[j].hor = (i16)itmp; in DecodeMbPred()
390 tmp = h264bsdDecodeExpGolombSigned(pStrmData, &itmp); in DecodeMbPred()
393 pMbPred->mvdL0[j].ver = (i16)itmp; in DecodeMbPred()
398 for (itmp = 0, i = 0; itmp < 2; itmp++) in DecodeMbPred()
[all …]
Dh264bsd_sei.c487 i32 itmp; in DecodePictureTiming() local
646 itmp = (i32)tmp; in DecodePictureTiming()
650 itmp <<= (32 - timeOffsetLength); in DecodePictureTiming()
651 itmp >>= (32 - timeOffsetLength); in DecodePictureTiming()
653 pPicTiming->timeOffset[i] = itmp; in DecodePictureTiming()