Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/read.c
Original file line number Diff line number Diff line change
Expand Up @@ -1617,7 +1617,7 @@ static avifBool avifParseItemLocationBox(avifMeta * meta, const uint8_t * raw, s
}
}

uint16_t dataReferenceIndex; // unsigned int(16) data_ref rence_index;
uint16_t dataReferenceIndex; // unsigned int(16) data_reference_index;
AVIF_CHECK(avifROStreamReadU16(&s, &dataReferenceIndex)); //
uint64_t baseOffset; // unsigned int(base_offset_size*8) base_offset;
AVIF_CHECK(avifROStreamReadUX8(&s, &baseOffset, baseOffsetSize)); //
Expand Down Expand Up @@ -1929,7 +1929,7 @@ static avifBool avifParseAV1LayeredImageIndexingProperty(avifProperty * prop, co
}
}

// Layer sizes will be validated layer (when the item's size is known)
// Layer sizes will be validated later (when the item's size is known)
return AVIF_TRUE;
}

Expand Down