Skip ID3 tags in the mad decoder; mad itself sometimes chokes on them

custom
jacqueline 2 years ago
parent 6c20eafd05
commit b0d85fc0d6
  1. 1
      src/codecs/include/mad.hpp
  2. 28
      src/codecs/mad.cpp

@ -38,6 +38,7 @@ class MadMp3Decoder : public ICodec {
MadMp3Decoder& operator=(const MadMp3Decoder&) = delete;
private:
auto SkipID3Tags(IStream &stream) -> void;
auto GetVbrLength(const mad_header& header) -> std::optional<uint32_t>;
auto GetBytesUsed() -> std::size_t;

@ -48,6 +48,8 @@ auto MadMp3Decoder::OpenStream(std::shared_ptr<IStream> input)
-> cpp::result<OutputFormat, ICodec::Error> {
input_ = input;
SkipID3Tags(*input);
// To get the output format for MP3 streams, we simply need to decode the
// first frame header.
mad_header header;
@ -178,6 +180,32 @@ auto MadMp3Decoder::SeekTo(std::size_t target_sample)
return {};
}
auto MadMp3Decoder::SkipID3Tags(IStream& stream) -> void {
// First check that the file actually does start with ID3 tags.
std::array<std::byte, 3> magic_buf{};
if (stream.Read(magic_buf) != 3) {
return;
}
if (std::memcmp(magic_buf.data(), "ID3", 3) != 0) {
stream.SeekTo(0, IStream::SeekFrom::kStartOfStream);
return;
}
// The size of the tags (*not* including the 10-byte header) is located 6
// bytes in.
std::array<std::byte, 4> size_buf{};
stream.SeekTo(6, IStream::SeekFrom::kStartOfStream);
if (stream.Read(size_buf) != 4) {
return;
}
// Size is encoded with 7-bit ints for some reason.
uint32_t tags_size = (static_cast<uint32_t>(size_buf[0]) << (7 * 3)) |
(static_cast<uint32_t>(size_buf[1]) << (7 * 2)) |
(static_cast<uint32_t>(size_buf[2]) << 7) |
static_cast<uint32_t>(size_buf[3]);
stream.SeekTo(10 + tags_size, IStream::SeekFrom::kStartOfStream);
}
/*
* Implementation taken from SDL_mixer and modified. Original is zlib-licensed,
* copyright (C) 1997-2022 Sam Lantinga <slouken@libsdl.org>

Loading…
Cancel
Save