/* * Copyright (C) 2017 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef ITEM_TABLE_H_ #define ITEM_TABLE_H_ #include #include #include #include #include namespace android { class DataSourceHelper; class MetaData; namespace heif { struct AssociationEntry; struct ImageItem; struct ExternalMetaItem; struct ItemLoc; struct ItemInfo; struct ItemProperty; struct ItemReference; /* * ItemTable keeps track of all image items (including coded images, grids and * tiles) inside a HEIF/AVIF still image (ISO/IEC FDIS 23008-12.2:2017(E)). */ class ItemTable : public RefBase { public: ItemTable(DataSourceHelper *source, bool isHeif); status_t parse(uint32_t type, off64_t offset, size_t size); bool isValid() { return mImageItemsValid; } uint32_t countImages() const; AMediaFormat *getImageMeta(const uint32_t imageIndex); status_t findImageItem(const uint32_t imageIndex, uint32_t *itemIndex); status_t findThumbnailItem(const uint32_t imageIndex, uint32_t *itemIndex); status_t getImageOffsetAndSize( uint32_t *itemIndex, off64_t *offset, size_t *size); status_t getExifOffsetAndSize(off64_t *offset, size_t *size); status_t getXmpOffsetAndSize(off64_t *offset, size_t *size); protected: ~ItemTable(); private: DataSourceHelper *mDataSource; // If this is true, then this item table is for a HEIF image. Otherwise it is for an AVIF image. bool mIsHeif; KeyedVector mItemLocs; Vector mItemInfos; Vector mAssociations; Vector > mItemProperties; Vector > mItemReferences; uint32_t mPrimaryItemId; off64_t mIdatOffset; size_t mIdatSize; std::set mRequiredBoxes; std::set mBoxesSeen; bool mImageItemsValid; uint32_t mCurrentItemIndex; KeyedVector mItemIdToItemMap; KeyedVector mItemIdToMetaMap; Vector mDisplayables; status_t parseIlocBox(off64_t offset, size_t size); status_t parseIinfBox(off64_t offset, size_t size); status_t parsePitmBox(off64_t offset, size_t size); status_t parseIprpBox(off64_t offset, size_t size); status_t parseIdatBox(off64_t offset, size_t size); status_t parseIrefBox(off64_t offset, size_t size); void attachProperty(const AssociationEntry &association); status_t buildImageItemsIfPossible(uint32_t type); DISALLOW_EVIL_CONSTRUCTORS(ItemTable); }; } // namespace heif } // namespace android #endif // ITEM_TABLE_H_