diff --git a/docs/spec/blocks/metadata.adoc b/docs/spec/blocks/metadata.adoc index 58f97c2..f5b5d2f 100644 --- a/docs/spec/blocks/metadata.adoc +++ b/docs/spec/blocks/metadata.adoc @@ -14,9 +14,9 @@ typedef struct MetadataBlockHeader uint32_t identifier; /**Size in uint8_ts of this whole metadata block */ uint32_t blockSize; - /**Sequence of media set this media beint64_ts to */ + /**Sequence of media set this media belongs to */ int32_t mediaSequence; - /**Total number of media on the media set this media beint64_ts to */ + /**Total number of media on the media set this media belongs to */ int32_t lastMediaSequence; /**Offset to start of creator string from start of this block */ uint32_t creatorOffset; diff --git a/include/aaruformat/structs/metadata.h b/include/aaruformat/structs/metadata.h index 9a88fc8..2ffcecd 100644 --- a/include/aaruformat/structs/metadata.h +++ b/include/aaruformat/structs/metadata.h @@ -27,9 +27,9 @@ typedef struct MetadataBlockHeader { uint32_t identifier; /**Size in uint8_ts of this whole metadata block */ uint32_t blockSize; - /**Sequence of media set this media beint64_ts to */ + /**Sequence of media set this media belongs to */ int32_t mediaSequence; - /**Total number of media on the media set this media beint64_ts to */ + /**Total number of media on the media set this media belongs to */ int32_t lastMediaSequence; /**Offset to start of creator string from start of this block */ uint32_t creatorOffset;