MCPcopy Create free account
hub / github.com/AOMediaCodec/libavif / avifDecoderDataFrameFullyDecoded

Function avifDecoderDataFrameFullyDecoded

src/read.c:6859–6867  ·  view source on GitHub ↗

Returns AVIF_FALSE if there is currently a partially decoded frame.

Source from the content-addressed store, hash-verified

6857
6858// Returns AVIF_FALSE if there is currently a partially decoded frame.
6859static 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)

Callers 2

avifDecoderNextImageFunction · 0.85
avifDecoderNthImageFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected