mirror of
https://github.com/Serial-ATA/lofty-rs
synced 2024-11-10 06:34:18 +00:00
MPEG: Warn about header APE tags
This commit is contained in:
parent
14cd3e81df
commit
038998f3cc
1 changed files with 4 additions and 0 deletions
|
@ -58,6 +58,10 @@ where
|
|||
continue;
|
||||
},
|
||||
[b'A', b'P', b'E', b'T'] => {
|
||||
log::warn!(
|
||||
"Encountered an APE tag at the beginning of the file, attempting to read"
|
||||
);
|
||||
|
||||
let mut header_remaining = [0; 4];
|
||||
reader.read_exact(&mut header_remaining)?;
|
||||
|
||||
|
|
Loading…
Reference in a new issue