HomeSort by relevance Sort by last modified time
    Searched refs:picWidth (Results 1 - 13 of 13) sorted by null

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_slice_group_map.h 56 u32 picWidth,
h264bsd_slice_group_map.c 67 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) * numSliceGroups) >> 1))
    [all...]
h264bsd_image.c 178 u32 picWidth, picSize;
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/4
    [all...]
h264bsd_neighbour.c 115 picWidth width of the picture in macroblocks
127 void h264bsdInitMbNeighbours(mbStorage_t *pMbStorage, u32 picWidth,
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 + 1)
    [all...]
DecTestBench.c 42 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 ) ||
    [all...]
h264bsd_neighbour.h 65 void h264bsdInitMbNeighbours(mbStorage_t *pMbStorage, u32 picWidth,
TestBenchMultipleInstance.c 38 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*picHeight
    [all...]
EvaluationTestBench.c 141 picSize = decInfo.picWidth * decInfo.picHeight;
145 * picSize = (decInfo.picWidth * decInfo.picHeight) * 2; */
148 decInfo.picWidth, decInfo.picHeight);
H264SwDecApi.c 228 * picWidth and -Height in pixels */
229 pDecInfo->picWidth = h264bsdPicWidth(pStorage) << 4;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/inc/
H264SwDecApi.h 121 u32 picWidth;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/
SoftAVC.cpp 219 if (mWidth != info->picWidth || mHeight != info->picHeight) {
220 mWidth = info->picWidth;
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
avcenc_lib.h 415 \param "picwidth" "Width of the picture."
425 void eLumaMotionComp(uint8 *ref, int picwidth, int picheight,
455 void eChromaMotionComp(uint8 *ref, int picwidth, int picheight,
    [all...]
motion_comp.cpp 56 int picWidth = currPic->width;
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,
    [all...]

Completed in 763 milliseconds