Skip to content

Commit 5688cdd

Browse files
committed
MP4: Update docs
1 parent 551163c commit 5688cdd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lofty/src/mp4/ilst/atom.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -284,13 +284,13 @@ pub enum AtomData {
284284
///
285285
/// NOTE: This isn't an official data type, but multiple flag atoms exist,
286286
/// so this makes them easier to represent. The *real* underlying type
287-
/// is `SignedInteger`.
287+
/// is [`Self::SignedInteger`].
288288
Bool(bool),
289289
/// Unknown data
290290
///
291291
/// Due to the number of possible types, there are many
292292
/// **specified** types that are going to fall into this
293-
/// variant.
293+
/// variant. See [`DataType`] for a list of known types.
294294
Unknown {
295295
/// The code, or type of the item
296296
code: DataType,

lofty/src/mp4/ilst/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -841,7 +841,7 @@ impl MergeTag for SplitTagRemainder {
841841
picture.pic_type = PictureType::Other;
842842

843843
merged.atoms.push(Atom {
844-
ident: AtomIdent::Fourcc([b'c', b'o', b'v', b'r']),
844+
ident: COVR,
845845
data: AtomDataStorage::Single(AtomData::Picture(picture)),
846846
})
847847
}

0 commit comments

Comments
 (0)