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

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_seq_param_set.c57 static u32 GetDpbSize(u32 picSizeInMbs, u32 levelIdc);
370 picSizeInMbs number of macroblocks in the picture
378 INVALID_DPB_SIZE when invalid levelIdc specified or picSizeInMbs
383 u32 GetDpbSize(u32 picSizeInMbs, u32 levelIdc) argument
393 ASSERT(picSizeInMbs);
482 if (picSizeInMbs > maxPicSizeInMbs)
485 tmp /= (picSizeInMbs*384);
H A Dh264bsd_neighbour.c116 picSizeInMbs no need to clarify
128 u32 picSizeInMbs)
139 ASSERT(picWidth <= picSizeInMbs);
140 ASSERT(((picSizeInMbs / picWidth) * picWidth) == picSizeInMbs);
144 for (i = 0; i < picSizeInMbs; i++)
127 h264bsdInitMbNeighbours(mbStorage_t *pMbStorage, u32 picWidth, u32 picSizeInMbs) argument
H A Dh264bsd_util.c205 picSizeInMbs size of the picture
218 u32 h264bsdNextMbAddress(u32 *pSliceGroupMap, u32 picSizeInMbs, u32 currMbAddr) argument
228 ASSERT(picSizeInMbs);
229 ASSERT(currMbAddr < picSizeInMbs);
234 while ((i < picSizeInMbs) && (pSliceGroupMap[i] != sliceGroup))
239 if (i == picSizeInMbs)
H A Dh264bsd_slice_header.c67 static u32 NumSliceGroupChangeCycleBits(u32 picSizeInMbs,
106 u32 picSizeInMbs; local
120 picSizeInMbs = pSeqParamSet->picWidthInMbs * pSeqParamSet->picHeightInMbs;
125 if (value >= picSizeInMbs)
366 tmp = NumSliceGroupChangeCycleBits(picSizeInMbs,
373 /* corresponds to tmp = Ceil(picSizeInMbs / sliceGroupChangeRate) */
374 tmp = (picSizeInMbs + pPicParamSet->sliceGroupChangeRate - 1) /
395 Ceil( Log2( (picSizeInMbs / sliceGroupChangeRate) + 1) )
400 picSizeInMbs picture size in macroblocks
411 u32 NumSliceGroupChangeCycleBits(u32 picSizeInMbs, u3 argument
[all...]
H A Dh264bsd_storage.h88 u32 picSizeInMbs; member in struct:__anon651
H A Dh264bsd_dpb.c964 picSizeInMbs picture size in macroblocks
982 u32 picSizeInMbs,
995 ASSERT(picSizeInMbs);
1025 ALLOCATE(dpb->buffer[i].pAllocatedData, (picSizeInMbs*384 + 32+15), u8);
1062 u32 picSizeInMbs,
1071 ASSERT(picSizeInMbs);
1079 return h264bsdInitDpb(dpb, picSizeInMbs, dpbSize, maxRefFrames,
980 h264bsdInitDpb( dpbStorage_t *dpb, u32 picSizeInMbs, u32 dpbSize, u32 maxRefFrames, u32 maxFrameNum, u32 noReordering) argument
1060 h264bsdResetDpb( dpbStorage_t *dpb, u32 picSizeInMbs, u32 dpbSize, u32 maxRefFrames, u32 maxFrameNum, u32 noReordering) argument
H A Dh264bsd_deblocking.c582 u32 picSizeInMbs, mbRow, mbCol; local
599 picSizeInMbs = picWidthInMbs * image->height;
622 data = image->data + picSizeInMbs * 256 +
625 FilterChroma((u8*)data, data + 64*picSizeInMbs, bS,
1774 u32 picSizeInMbs, mbRow, mbCol; local
1795 picSizeInMbs = picWidthInMbs * image->height;
1830 data = image->data + picSizeInMbs * 256 +
1846 data += (picSizeInMbs * 64);

Completed in 302 milliseconds