Home
last modified time | relevance | path

Searched refs:picWidth (Results 1 – 13 of 13) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
Dh264bsd_slice_group_map.c67 u32 picWidth,
75 u32 picWidth,
82 u32 picWidth,
95 u32 picWidth,
177 u32 picWidth, in DecodeDispersedMap() argument
189 ASSERT(picWidth); in DecodeDispersedMap()
192 picSize = picWidth * picHeight; in DecodeDispersedMap()
195 map[i] = ((i % picWidth) + (((i / picWidth) * numSliceGroups) >> 1)) % in DecodeDispersedMap()
230 u32 picWidth, in DecodeForegroundLeftOverMap() argument
245 ASSERT(picWidth); in DecodeForegroundLeftOverMap()
[all …]
Dh264bsd_image.c178 u32 picWidth, picSize; in h264bsdWriteOutputBlocks() local
197 picWidth = image->width; in h264bsdWriteOutputBlocks()
198 picSize = picWidth * image->height; in h264bsdWriteOutputBlocks()
199 row = mbNum / picWidth; in h264bsdWriteOutputBlocks()
200 col = mbNum % picWidth; in h264bsdWriteOutputBlocks()
203 lum = (image->data + row * picWidth * 256 + col * 16); in h264bsdWriteOutputBlocks()
204 cb = (image->data + picSize * 256 + row * picWidth * 64 + col * 8); in h264bsdWriteOutputBlocks()
207 picWidth *= 16; in h264bsdWriteOutputBlocks()
219 imageBlock = lum + y*picWidth + x; in h264bsdWriteOutputBlocks()
233 *out32 = tmp1; out32 += picWidth/4; in h264bsdWriteOutputBlocks()
[all …]
Dh264bsd_neighbour.c127 void h264bsdInitMbNeighbours(mbStorage_t *pMbStorage, u32 picWidth, in h264bsdInitMbNeighbours() argument
138 ASSERT(picWidth); in h264bsdInitMbNeighbours()
139 ASSERT(picWidth <= picSizeInMbs); in h264bsdInitMbNeighbours()
140 ASSERT(((picSizeInMbs / picWidth) * picWidth) == picSizeInMbs); in h264bsdInitMbNeighbours()
153 pMbStorage[i].mbB = pMbStorage + i - picWidth; in h264bsdInitMbNeighbours()
157 if (row && (col < picWidth - 1)) in h264bsdInitMbNeighbours()
158 pMbStorage[i].mbC = pMbStorage + i - (picWidth - 1); in h264bsdInitMbNeighbours()
163 pMbStorage[i].mbD = pMbStorage + i - (picWidth + 1); in h264bsdInitMbNeighbours()
168 if (col == picWidth) in h264bsdInitMbNeighbours()
DDecTestBench.c42 u32 picWidth, u32 picHeight, CropParams *pCropParams);
242 decInfo.picWidth, decInfo.picHeight)); in main()
263 picSize = decInfo.picWidth * decInfo.picHeight; in main()
280 decInfo.picWidth, decInfo.picHeight); in main()
340 decInfo.picWidth, decInfo.picHeight, in main()
399 decInfo.picWidth, decInfo.picHeight, in main()
589 u32 picWidth, u32 picHeight, CropParams *pCropParams) in CropPicture() argument
597 !picWidth || !picHeight) in CropPicture()
606 picWidth ) || in CropPicture()
620 pIn = pInImage + pCropParams->cropTopOffset*picWidth + in CropPicture()
[all …]
DTestBenchMultipleInstance.c38 u32 picWidth, u32 picHeight, CropParams *pCropParams);
232 decoder[i]->decInfo.picWidth, in main()
366 decInfo->picWidth, decInfo->picHeight, in CropWriteOutput()
375 picSize = decInfo->picWidth * decInfo->picHeight; in CropWriteOutput()
457 u32 picWidth, u32 picHeight, CropParams *pCropParams) in CropPicture() argument
465 !picWidth || !picHeight) in CropPicture()
473 picWidth ) || in CropPicture()
485 pIn = pInImage + pCropParams->cropTopOffset*picWidth + in CropPicture()
496 pIn += picWidth - outWidth; in CropPicture()
502 pIn = pInImage + picWidth*picHeight + in CropPicture()
[all …]
Dh264bsd_slice_group_map.h56 u32 picWidth,
DEvaluationTestBench.c141 picSize = decInfo.picWidth * decInfo.picHeight; in main()
148 decInfo.picWidth, decInfo.picHeight); in main()
Dh264bsd_neighbour.h65 void h264bsdInitMbNeighbours(mbStorage_t *pMbStorage, u32 picWidth,
DH264SwDecApi.c233 pDecInfo->picWidth = h264bsdPicWidth(pStorage) << 4; in H264SwDecGetInfo()
/frameworks/av/media/libstagefright/codecs/on2/h264dec/inc/
DH264SwDecApi.h121 u32 picWidth; member
/frameworks/av/media/libstagefright/codecs/on2/h264dec/
DSoftAVC.cpp168 &portWillReset, decoderInfo.picWidth, decoderInfo.picHeight, in onQueueFilled()
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
Dmotion_comp.cpp56 int picWidth = currPic->width; in AVCMBMotionComp() local
103 offsetP = (block_y * picWidth) + (block_x << 1); in AVCMBMotionComp()
104 eChromaMotionComp(ref_Cb, picWidth >> 1, picHeight >> 1, x_pos, y_pos, in AVCMBMotionComp()
107 eChromaMotionComp(ref_Cr, picWidth >> 1, picHeight >> 1, x_pos, y_pos, in AVCMBMotionComp()
Davcenc_lib.h858 void Copy_MB(uint8 *curL, uint8 *curCb, uint8 *curCr, uint8 *predBlock, int picWidth);