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

  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_slice_group_map.c 62 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;
192 picSize = picWidth * picHeight
    [all...]
EvaluationTestBench.c 22 void WriteOutput(FILE *fid, u8 *data, u32 picSize);
44 u32 picSize;
141 picSize = decInfo.picWidth * decInfo.picHeight;
143 picSize = (3 * picSize)/2;
145 * picSize = (decInfo.picWidth * decInfo.picHeight) * 2; */
186 picSize);
228 WriteOutput(foutput, (u8*)decPicture.pOutputPicture, picSize);
258 picture in pixels is indicated by picSize.
261 void WriteOutput(FILE *fid, u8 *data, u32 picSize)
    [all...]
h264bsd_util.c 269 u32 picSize;
279 picSize = width * height;
282 image->cb = (u8*)(image->data + picSize * 256 + tmp * 64 + col * 8);
283 image->cr = (u8*)(image->cb + picSize * 64);
DecTestBench.c 39 void WriteOutput(char *filename, u8 *data, u32 picSize);
92 u32 picSize;
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) variable initialized a
    [all...]
TestBenchMultipleInstance.c 35 void WriteOutput(FILE *fid, u8 *data, u32 picSize);
355 u32 tmp, picSize;
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)/2
    [all...]
h264bsd_image.c 178 u32 picWidth, picSize;
198 picSize = picWidth * image->height;
204 cb = (image->data + picSize * 256 + row * picWidth * 64 + col * 8);
205 cr = (cb + picSize * 64);
h264bsd_storage.c 798 u32 picSize;
800 picSize = sps->picWidthInMbs * sps->picHeightInMbs;
810 if (pps->runLength[i] > picSize)
821 pps->bottomRight[i] >= picSize)
831 if (pps->sliceGroupChangeRate > picSize)
835 pps->picSizeInMapUnits < picSize)
h264bsd_intra_prediction.c 546 u32 width, picSize;
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;
    [all...]

Completed in 956 milliseconds