MPEG: Warn about header APE tags

This commit is contained in:
Serial 2023-12-31 16:46:57 -05:00 committed by Alex
parent 14cd3e81df
commit 038998f3cc

View file

@ -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)?;