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

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_inter_prediction.h 53 dpbStorage_t *dpb, u32 mbNum, image_t *image, u8 *data);
h264bsd_image.h 63 void h264bsdWriteOutputBlocks(image_t *image, u32 mbNum, u8 *data,
h264bsd_intra_prediction.h 52 image_t *image, u32 mbNum, u32 constrainedIntraPred, u8 *data);
63 void h264bsdGetNeighbourPels(image_t *image, u8 *above, u8 *left, u32 mbNum);
h264bsd_util.c 256 mbNum number of current MB
264 void h264bsdSetCurrImageMbPointers(image_t *image, u32 mbNum)
273 row = mbNum / width;
274 col = mbNum % width;
h264bsd_image.c 158 mbNum number of the macroblock
171 void h264bsdWriteOutputBlocks(image_t *image, u32 mbNum, u8 *data,
193 ASSERT(mbNum < image->width * image->height);
199 row = mbNum / picWidth;
200 col = mbNum % picWidth;
h264bsd_macroblock_layer.h 200 image_t *currImage, dpbStorage_t *dpb, i32 *qpY, u32 mbNum,
h264bsd_util.h 176 void h264bsdSetCurrImageMbPointers(image_t *image, u32 mbNum);
h264bsd_inter_prediction.c 183 mbNum current macroblock number
198 dpbStorage_t *dpb, u32 mbNum, image_t *currImage, u8 *data)
221 colAndRow = mbNum / currImage->width;
223 colAndRow += (mbNum - colAndRow * currImage->width) << 16;
346 mbNum current macroblock number
361 dpbStorage_t *dpb, u32 mbNum, image_t *currImage, u8 *data)
378 row = mbNum / currImage->width;
379 col = mbNum - row * currImage->width;
472 h264bsdWriteOutputBlocks(currImage, mbNum, data,
    [all...]
h264bsd_macroblock_layer.c 950 mbNum current macroblock number
965 image_t *currImage, dpbStorage_t *dpb, i32 *qpY, u32 mbNum,
982 ASSERT(mbNum < currImage->width*currImage->height);
989 h264bsdSetCurrImageMbPointers(currImage, mbNum);
1027 tmp = h264bsdInterPrediction(pMb, pMbLayer, dpb, mbNum,
    [all...]
h264bsd_conceal.c 261 u32 mbNum;
289 mbNum = row * width + col;
291 h264bsdSetCurrImageMbPointers(currImage, mbNum);
h264bsd_intra_prediction.c 458 mbNum current macroblock number
474 image_t *image, u32 mbNum, u32 constrainedIntraPred, u8 *data)
493 ASSERT(mbNum < image->width * image->height);
496 h264bsdGetNeighbourPels(image, pelAbove, pelLeft, mbNum);
540 void h264bsdGetNeighbourPels(image_t *image, u8 *above, u8 *left, u32 mbNum)
555 ASSERT(mbNum < image->width * image->height);
557 if (!mbNum)
562 row = mbNum / width;
563 col = mbNum - row * width;
    [all...]

Completed in 4848 milliseconds