Searched defs:picWidth (Results 1 - 7 of 7) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_neighbour.c115 picWidth width of the picture in macroblocks
127 void h264bsdInitMbNeighbours(mbStorage_t *pMbStorage, u32 picWidth, argument
138 ASSERT(picWidth);
139 ASSERT(picWidth <= picSizeInMbs);
140 ASSERT(((picSizeInMbs / picWidth) * picWidth) == picSizeInMbs);
153 pMbStorage[i].mbB = pMbStorage + i - picWidth;
157 if (row && (col < picWidth - 1))
158 pMbStorage[i].mbC = pMbStorage + i - (picWidth - 1);
163 pMbStorage[i].mbD = pMbStorage + i - (picWidth
[all...]
H A Dh264bsd_image.c178 u32 picWidth, picSize; local
197 picWidth = image->width;
198 picSize = picWidth * image->height;
199 row = mbNum / picWidth;
200 col = mbNum % picWidth;
203 lum = (image->data + row * picWidth * 256 + col * 16);
204 cb = (image->data + picSize * 256 + row * picWidth * 64 + col * 8);
207 picWidth *= 16;
219 imageBlock = lum + y*picWidth + x;
233 *out32 = tmp1; out32 += picWidth/
[all...]
H A Dh264bsd_slice_group_map.c67 u32 picWidth,
75 u32 picWidth,
82 u32 picWidth,
95 u32 picWidth,
163 picWidth picture width in macroblocks
177 u32 picWidth,
189 ASSERT(picWidth);
192 picSize = picWidth * picHeight;
195 map[i] = ((i % picWidth) + (((i / picWidth) * numSliceGroup
174 DecodeDispersedMap( u32 *map, u32 numSliceGroups, u32 picWidth, u32 picHeight) argument
225 DecodeForegroundLeftOverMap( u32 *map, u32 numSliceGroups, u32 *topLeft, u32 *bottomRight, u32 picWidth, u32 picHeight) argument
294 DecodeBoxOutMap( u32 *map, u32 sliceGroupChangeDirectionFlag, u32 unitsInSliceGroup0, u32 picWidth, u32 picHeight) argument
448 DecodeWipeMap( u32 *map, u32 sliceGroupChangeDirectionFlag, u32 sizeOfUpperLeftGroup, u32 picWidth, u32 picHeight) argument
503 h264bsdDecodeSliceGroupMap( u32 *map, picParamSet_t *pps, u32 sliceGroupChangeCycle, u32 picWidth, u32 picHeight) argument
[all...]
H A DTestBenchMultipleInstance.c38 u32 picWidth, u32 picHeight, CropParams *pCropParams);
232 decoder[i]->decInfo.picWidth,
366 decInfo->picWidth, decInfo->picHeight,
375 picSize = decInfo->picWidth * decInfo->picHeight;
457 u32 picWidth, u32 picHeight, CropParams *pCropParams)
465 !picWidth || !picHeight)
473 picWidth ) ||
485 pIn = pInImage + pCropParams->cropTopOffset*picWidth +
496 pIn += picWidth - outWidth;
502 pIn = pInImage + picWidth*picHeigh
456 CropPicture(u8 *pOutImage, u8 *pInImage, u32 picWidth, u32 picHeight, CropParams *pCropParams) argument
[all...]
H A DDecTestBench.c42 u32 picWidth, u32 picHeight, CropParams *pCropParams);
242 decInfo.picWidth, decInfo.picHeight));
263 picSize = decInfo.picWidth * decInfo.picHeight;
280 decInfo.picWidth, decInfo.picHeight);
340 decInfo.picWidth, decInfo.picHeight,
399 decInfo.picWidth, decInfo.picHeight,
584 picWidth x picHeight is cropped with pCropParams and the resulting
589 u32 picWidth, u32 picHeight, CropParams *pCropParams)
597 !picWidth || !picHeight)
606 picWidth ) ||
588 CropPicture(u8 *pOutImage, u8 *pInImage, u32 picWidth, u32 picHeight, CropParams *pCropParams) argument
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/inc/
H A DH264SwDecApi.h121 u32 picWidth; member in struct:__anon472
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dmotion_comp.cpp56 int picWidth = currPic->width; local
103 offsetP = (block_y * picWidth) + (block_x << 1);
104 eChromaMotionComp(ref_Cb, picWidth >> 1, picHeight >> 1, x_pos, y_pos,
107 eChromaMotionComp(ref_Cr, picWidth >> 1, picHeight >> 1, x_pos, y_pos,

Completed in 3914 milliseconds