Home
last modified time | relevance | path

Searched refs:stripByteCounts (Results 1 – 2 of 2) sorted by relevance

/frameworks/av/media/img_utils/src/
DTiffIfd.cpp253 sp<TiffEntry> stripByteCounts = TiffWriter::uncheckedBuildEntry(TAG_STRIPBYTECOUNTS, LONG, in validateAndSetStripTags() local
256 if (stripByteCounts == NULL) { in validateAndSetStripTags()
273 if(addEntry(stripByteCounts) != OK) { in validateAndSetStripTags()
305 sp<TiffEntry> stripByteCounts = getEntry(TAG_STRIPBYTECOUNTS); in setStripOffset() local
306 if (stripByteCounts == NULL) { in setStripOffset()
312 uint32_t byteCount = stripByteCounts->getCount(); in setStripOffset()
319 const uint32_t* stripByteCountsArray = stripByteCounts->getData<uint32_t>(); in setStripOffset()
347 sp<TiffEntry> stripByteCounts = getEntry(TAG_STRIPBYTECOUNTS); in getStripSize() local
348 if (stripByteCounts == NULL) { in getStripSize()
353 uint32_t count = stripByteCounts->getCount(); in getStripSize()
[all …]
/frameworks/base/media/java/android/media/
DExifInterface.java3494 long[] stripByteCounts = in handleThumbnailFromStrips() local
3501 if (stripByteCounts == null) { in handleThumbnailFromStrips()
3508 new byte[(int) Arrays.stream(stripByteCounts).sum()]; in handleThumbnailFromStrips()
3514 int stripByteCount = (int) stripByteCounts[i]; in handleThumbnailFromStrips()