Fix data source for HEIF exif extractor
Do not allow the source to read past available bytes, since the underlying input stream may not be able to seek after that. For input streams from files, the available bytes is usually the file size, and we usually don't have problem when the file is of decent size. But when the file is very small, some of the extractors (other than mp4) would request bytes past the end of the file, which goes over the available range. Once that condition is hit, we can't reset to the offet needed for mp4 extractor and heif parsing would fail. bug: 111897855 test: open heic files of various sizes in Files (Downloads) app, check that ExifInterface shouldn't encounter any exceptions. Change-Id: I668ff900f4155dc310cb7ea8977bbe091791c5d7
Loading
Please register or sign in to comment