Home
last modified time | relevance | path

Searched refs:picSize (Results 1 – 8 of 8) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
Dh264bsd_slice_group_map.c62 u32 picSize);
89 u32 picSize);
124 u32 picSize) in DecodeInterleavedMap() argument
140 for (group = 0; group < numSliceGroups && i < picSize; in DecodeInterleavedMap()
143 ASSERT(runLength[group] <= picSize); in DecodeInterleavedMap()
144 for (j = 0; j < runLength[group] && i + j < picSize; j++) in DecodeInterleavedMap()
147 } while (i < picSize); in DecodeInterleavedMap()
183 u32 i, picSize; in DecodeDispersedMap() local
192 picSize = picWidth * picHeight; in DecodeDispersedMap()
194 for (i = 0; i < picSize; i++) in DecodeDispersedMap()
[all …]
DEvaluationTestBench.c22 void WriteOutput(FILE *fid, u8 *data, u32 picSize);
44 u32 picSize; in main() local
141 picSize = decInfo.picWidth * decInfo.picHeight; in main()
143 picSize = (3 * picSize)/2; in main()
186 picSize); in main()
228 WriteOutput(foutput, (u8*)decPicture.pOutputPicture, picSize); in main()
261 void WriteOutput(FILE *fid, u8 *data, u32 picSize) in WriteOutput() argument
263 fwrite(data, 1, picSize, fid); in WriteOutput()
DDecTestBench.c39 void WriteOutput(char *filename, u8 *data, u32 picSize);
92 u32 picSize; in main() local
253 picSize = decInfo.cropParams.cropOutWidth * in main()
255 picSize = (3 * picSize)/2; in main()
256 tmpImage = malloc(picSize); in main()
263 picSize = decInfo.picWidth * decInfo.picHeight; in main()
264 picSize = (3 * picSize)/2; in main()
344 WriteOutput(outFileName, tmpImage, picSize); in main()
348 WriteOutput(outFileName, imageData, picSize); in main()
403 WriteOutput(outFileName, tmpImage, picSize); in main()
[all …]
DTestBenchMultipleInstance.c35 void WriteOutput(FILE *fid, u8 *data, u32 picSize);
355 u32 tmp, picSize; in CropWriteOutput() local
359 picSize = decInfo->cropParams.cropOutWidth * in CropWriteOutput()
361 picSize = (3 * picSize)/2; in CropWriteOutput()
362 tmpImage = malloc(picSize); in CropWriteOutput()
370 WriteOutput(foutput, tmpImage, picSize); in CropWriteOutput()
375 picSize = decInfo->picWidth * decInfo->picHeight; in CropWriteOutput()
376 picSize = (3 * picSize)/2; in CropWriteOutput()
377 WriteOutput(foutput, imageData, picSize); in CropWriteOutput()
385 void WriteOutput(FILE *fid, u8 *data, u32 picSize) in WriteOutput() argument
[all …]
Dh264bsd_util.c267 u32 picSize; in h264bsdSetCurrImageMbPointers() local
277 picSize = width * height; in h264bsdSetCurrImageMbPointers()
280 image->cb = (u8*)(image->data + picSize * 256 + tmp * 64 + col * 8); in h264bsdSetCurrImageMbPointers()
281 image->cr = (u8*)(image->cb + picSize * 64); in h264bsdSetCurrImageMbPointers()
Dh264bsd_image.c178 u32 picWidth, picSize; in h264bsdWriteOutputBlocks() local
198 picSize = picWidth * image->height; in h264bsdWriteOutputBlocks()
204 cb = (image->data + picSize * 256 + row * picWidth * 64 + col * 8); in h264bsdWriteOutputBlocks()
205 cr = (cb + picSize * 64); in h264bsdWriteOutputBlocks()
Dh264bsd_storage.c798 u32 picSize; in CheckPps() local
800 picSize = sps->picWidthInMbs * sps->picHeightInMbs; in CheckPps()
810 if (pps->runLength[i] > picSize) in CheckPps()
821 pps->bottomRight[i] >= picSize) in CheckPps()
831 if (pps->sliceGroupChangeRate > picSize) in CheckPps()
835 pps->picSizeInMapUnits < picSize) in CheckPps()
Dh264bsd_intra_prediction.c546 u32 width, picSize; in h264bsdGetNeighbourPels() local
561 picSize = width * image->height; in h264bsdGetNeighbourPels()
588 ptr = image->data + picSize * 256 + row * 8 * width + col * 8; in h264bsdGetNeighbourPels()
595 tmp += (picSize * 64) - 9; in h264bsdGetNeighbourPels()
605 ptr += (picSize * 64) - 8 * width; in h264bsdGetNeighbourPels()