Returns AVIF_FALSE if there is currently a partially decoded frame.
| 6857 | |
| 6858 | // Returns AVIF_FALSE if there is currently a partially decoded frame. |
| 6859 | static avifBool avifDecoderDataFrameFullyDecoded(const avifDecoderData * data) |
| 6860 | { |
| 6861 | for (int c = 0; c < AVIF_ITEM_CATEGORY_COUNT; ++c) { |
| 6862 | if (data->tileInfos[c].decodedTileCount != data->tileInfos[c].tileCount) { |
| 6863 | return AVIF_FALSE; |
| 6864 | } |
| 6865 | } |
| 6866 | return AVIF_TRUE; |
| 6867 | } |
| 6868 | |
| 6869 | // Composites hidden image items and/or the primary image item into the dstImage. |
| 6870 | // Tiles are aggregated into temporary buffers (reconstructedInputImages) |
no outgoing calls
no test coverage detected