Searched defs:picSize (Results 1 - 8 of 8) sorted by relevance

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_util.c267 u32 picSize; local
277 picSize = width * height;
280 image->cb = (u8*)(image->data + picSize * 256 + tmp * 64 + col * 8);
281 image->cr = (u8*)(image->cb + picSize * 64);
H A DEvaluationTestBench.c22 void WriteOutput(FILE *fid, u8 *data, u32 picSize);
44 u32 picSize; local
141 picSize = decInfo.picWidth * decInfo.picHeight;
143 picSize = (3 * picSize)/2;
145 * picSize = (decInfo.picWidth * decInfo.picHeight) * 2; */
186 picSize); local
228 WriteOutput(foutput, (u8*)decPicture.pOutputPicture, picSize); local
258 picture in pixels is indicated by picSize.
261 void WriteOutput(FILE *fid, u8 *data, u32 picSize) argument
[all...]
H A Dh264bsd_image.c178 u32 picWidth, picSize; local
198 picSize = picWidth * image->height;
204 cb = (image->data + picSize * 256 + row * picWidth * 64 + col * 8);
205 cr = (cb + picSize * 64);
H A Dh264bsd_slice_group_map.c62 u32 picSize);
89 u32 picSize);
110 picSize picture size in macroblocks
124 u32 picSize)
140 for (group = 0; group < numSliceGroups && i < picSize;
143 ASSERT(runLength[group] <= picSize);
144 for (j = 0; j < runLength[group] && i + j < picSize; j++)
147 } while (i < picSize);
183 u32 i, picSize; local
192 picSize
120 DecodeInterleavedMap( u32 *map, u32 numSliceGroups, u32 *runLength, u32 picSize) argument
236 u32 i,y,x,yTopLeft,yBottomRight,xTopLeft,xBottomRight, picSize; local
304 u32 i, k, picSize; local
400 DecodeRasterScanMap( u32 *map, u32 sliceGroupChangeDirectionFlag, u32 sizeOfUpperLeftGroup, u32 picSize) argument
513 u32 i, picSize, unitsInSliceGroup0 = 0, sizeOfUpperLeftGroup = 0; local
[all...]
H A Dh264bsd_storage.c816 u32 picSize; local
818 picSize = sps->picWidthInMbs * sps->picHeightInMbs;
828 if (pps->runLength[i] > picSize)
839 pps->bottomRight[i] >= picSize)
849 if (pps->sliceGroupChangeRate > picSize)
853 pps->picSizeInMapUnits < picSize)
H A DTestBenchMultipleInstance.c35 void WriteOutput(FILE *fid, u8 *data, u32 picSize);
355 u32 tmp, picSize; local
359 picSize = decInfo->cropParams.cropOutWidth *
361 picSize = (3 * picSize)/2;
362 tmpImage = malloc(picSize);
370 WriteOutput(foutput, tmpImage, picSize);
375 picSize = decInfo->picWidth * decInfo->picHeight;
376 picSize = (3 * picSize)/
385 WriteOutput(FILE *fid, u8 *data, u32 picSize) argument
[all...]
H A DDecTestBench.c39 void WriteOutput(char *filename, u8 *data, u32 picSize);
92 u32 picSize; local
253 picSize = decInfo.cropParams.cropOutWidth *
255 picSize = (3 * picSize)/2;
256 tmpImage = malloc(picSize);
263 picSize = decInfo.picWidth * decInfo.picHeight;
264 picSize = (3 * picSize)/2;
295 /*lint -esym(644,tmpImage,picSize) variabl
442 WriteOutput(char *filename, u8 *data, u32 picSize) argument
[all...]
H A Dh264bsd_intra_prediction.c546 u32 width, picSize; local
561 picSize = width * image->height;
588 ptr = image->data + picSize * 256 + row * 8 * width + col * 8;
595 tmp += (picSize * 64) - 9;
605 ptr += (picSize * 64) - 8 * width;

Completed in 177 milliseconds