mirror of
https://github.com/kilyabin/psysonic.git
synced 2026-07-22 22:45:41 +00:00
a4c400cc69
M4A files store the iTunSMPB value behind a 16-byte binary 'data' atom header. The previous parser took bytes directly after the ASCII key, landing in the binary header and producing a corrupted parts array (total_valid=348 instead of ~13M samples), which caused take_duration to exhaust the source in ~8ms — silent no-playback. Fix: search for the " 00000000 " sentinel within 128 bytes of the key to locate the actual value string, falling back to the old offset for ID3v2/MP3 files where no binary header exists. Also patches symphonia-format-isomp4 (local crate under patches/) to: - Tolerate SL descriptor predefined=0x01 (older iTunes M4A) - Convert descriptor.unwrap() panic to a proper decode error - Gracefully skip malformed trak atoms (e.g. MJPEG cover-art streams) instead of failing the entire probe Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
32 lines
864 B
Rust
32 lines
864 B
Rust
// Symphonia
|
|
// Copyright (c) 2019-2022 The Project Symphonia Developers.
|
|
//
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
|
|
use std::fmt;
|
|
|
|
/// Four character codes for typical Ftyps (reference: http://ftyps.com/).
|
|
#[derive(PartialEq, Eq, Clone, Copy)]
|
|
#[repr(transparent)]
|
|
pub struct FourCc {
|
|
val: [u8; 4],
|
|
}
|
|
|
|
impl FourCc {
|
|
/// Construct a new FourCC code from the given byte array.
|
|
pub fn new(val: [u8; 4]) -> Self {
|
|
Self { val }
|
|
}
|
|
}
|
|
|
|
impl fmt::Debug for FourCc {
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
match std::str::from_utf8(&self.val) {
|
|
Ok(name) => f.write_str(name),
|
|
_ => write!(f, "{:x?}", self.val),
|
|
}
|
|
}
|
|
}
|