1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923
// 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 symphonia_core::support_format;
use symphonia_core::checksum::Crc16AnsiLe;
use symphonia_core::codecs::CodecParameters;
use symphonia_core::errors::{seek_error, Result, SeekErrorKind};
use symphonia_core::formats::prelude::*;
use symphonia_core::io::*;
use symphonia_core::meta::{Metadata, MetadataLog};
use symphonia_core::probe::{Descriptor, Instantiate, QueryDescriptor};
use crate::common::{FrameHeader, MpegLayer};
use crate::header::{self, MAX_MPEG_FRAME_SIZE, MPEG_HEADER_LEN};
use std::io::{Seek, SeekFrom};
use log::{debug, info, warn};
/// MPEG1 and MPEG2 audio elementary stream reader.
///
/// `MpaReader` implements a demuxer for the MPEG1 and MPEG2 audio elementary stream.
pub struct MpaReader {
reader: MediaSourceStream,
tracks: Vec<Track>,
cues: Vec<Cue>,
metadata: MetadataLog,
options: FormatOptions,
first_packet_pos: u64,
next_packet_ts: u64,
}
impl QueryDescriptor for MpaReader {
fn query() -> &'static [Descriptor] {
&[
// Layer 1
support_format!(
"mp1",
"MPEG Audio Layer 1 Native",
&["mp1"],
&["audio/mpeg", "audio/mp1"],
&[
&[0xff, 0xfe], // MPEG 1 with CRC
&[0xff, 0xff], // MPEG 1
&[0xff, 0xf6], // MPEG 2 with CRC
&[0xff, 0xf7], // MPEG 2
&[0xff, 0xe6], // MPEG 2.5 with CRC
&[0xff, 0xe7], // MPEG 2.5
]
),
// Layer 2
support_format!(
"mp2",
"MPEG Audio Layer 2 Native",
&["mp2"],
&["audio/mpeg", "audio/mp2"],
&[
&[0xff, 0xfc], // MPEG 1 with CRC
&[0xff, 0xfd], // MPEG 1
&[0xff, 0xf4], // MPEG 2 with CRC
&[0xff, 0xf5], // MPEG 2
&[0xff, 0xe4], // MPEG 2.5 with CRC
&[0xff, 0xe5], // MPEG 2.5
]
),
// Layer 3
support_format!(
"mp3",
"MPEG Audio Layer 3 Native",
&["mp3"],
&["audio/mpeg", "audio/mp3"],
&[
&[0xff, 0xfa], // MPEG 1 with CRC
&[0xff, 0xfb], // MPEG 1
&[0xff, 0xf2], // MPEG 2 with CRC
&[0xff, 0xf3], // MPEG 2
&[0xff, 0xe2], // MPEG 2.5 with CRC
&[0xff, 0xe3], // MPEG 2.5
]
),
]
}
fn score(_context: &[u8]) -> u8 {
255
}
}
impl FormatReader for MpaReader {
fn try_new(mut source: MediaSourceStream, options: &FormatOptions) -> Result<Self> {
// Try to read the first MPEG frame.
let (header, packet) = read_mpeg_frame_strict(&mut source)?;
// Use the header to populate the codec parameters.
let mut params = CodecParameters::new();
params
.for_codec(header.codec())
.with_sample_rate(header.sample_rate)
.with_time_base(TimeBase::new(1, header.sample_rate))
.with_channels(header.channel_mode.channels());
// Check if there is a Xing/Info tag contained in the first frame.
if let Some(info_tag) = try_read_info_tag(&packet, &header) {
// The LAME tag contains ReplayGain and padding information.
let (delay, padding) = if let Some(lame_tag) = info_tag.lame {
params.with_delay(lame_tag.enc_delay).with_padding(lame_tag.enc_padding);
(lame_tag.enc_delay, lame_tag.enc_padding)
}
else {
(0, 0)
};
// The base Xing/Info tag may contain the number of frames.
if let Some(num_mpeg_frames) = info_tag.num_frames {
info!("using xing header for duration");
let num_frames = u64::from(num_mpeg_frames) * header.duration();
// Adjust for gapless playback.
if options.enable_gapless {
params.with_n_frames(num_frames - u64::from(delay) - u64::from(padding));
}
else {
params.with_n_frames(num_frames);
}
}
}
else if let Some(vbri_tag) = try_read_vbri_tag(&packet, &header) {
info!("using vbri header for duration");
let num_frames = u64::from(vbri_tag.num_mpeg_frames) * header.duration();
// Check if there is a VBRI tag.
params.with_n_frames(num_frames);
}
else {
// The first frame was not a Xing/Info header, rewind back to the start of the frame so
// that it may be decoded.
source.seek_buffered_rev(MPEG_HEADER_LEN + header.frame_size);
// Likely not a VBR file, so estimate the duration if seekable.
if source.is_seekable() {
info!("estimating duration from bitrate, may be inaccurate for vbr files");
if let Some(n_mpeg_frames) = estimate_num_mpeg_frames(&mut source) {
params.with_n_frames(n_mpeg_frames * header.duration());
}
}
}
let first_packet_pos = source.pos();
Ok(MpaReader {
reader: source,
tracks: vec![Track::new(0, params)],
cues: Vec::new(),
metadata: Default::default(),
options: *options,
first_packet_pos,
next_packet_ts: 0,
})
}
fn next_packet(&mut self) -> Result<Packet> {
let (header, packet) = loop {
// Read the next MPEG frame.
let (header, packet) = read_mpeg_frame(&mut self.reader)?;
// Check if the packet contains a Xing, Info, or VBRI tag.
if is_maybe_info_tag(&packet, &header) {
if try_read_info_tag(&packet, &header).is_some() {
// Discard the packet and tag since it was not at the start of the stream.
warn!("found an unexpected xing tag, discarding");
continue;
}
}
else if is_maybe_vbri_tag(&packet, &header)
&& try_read_vbri_tag(&packet, &header).is_some()
{
// Discard the packet and tag since it was not at the start of the stream.
warn!("found an unexpected vbri tag, discarding");
continue;
}
break (header, packet);
};
// Each frame contains 1 or 2 granules with each granule being exactly 576 samples long.
let ts = self.next_packet_ts;
let duration = header.duration();
self.next_packet_ts += duration;
let mut packet = Packet::new_from_boxed_slice(0, ts, duration, packet.into_boxed_slice());
if self.options.enable_gapless {
symphonia_core::formats::util::trim_packet(
&mut packet,
self.tracks[0].codec_params.delay.unwrap_or(0),
self.tracks[0].codec_params.n_frames,
);
}
Ok(packet)
}
fn metadata(&mut self) -> Metadata<'_> {
self.metadata.metadata()
}
fn cues(&self) -> &[Cue] {
&self.cues
}
fn tracks(&self) -> &[Track] {
&self.tracks
}
fn seek(&mut self, mode: SeekMode, to: SeekTo) -> Result<SeekedTo> {
const MAX_REF_FRAMES: usize = 4;
const REF_FRAMES_MASK: usize = MAX_REF_FRAMES - 1;
// Get the timestamp of the desired audio frame.
let desired_ts = match to {
// Frame timestamp given.
SeekTo::TimeStamp { ts, .. } => ts,
// Time value given, calculate frame timestamp from sample rate.
SeekTo::Time { time, .. } => {
// Use the sample rate to calculate the frame timestamp. If sample rate is not
// known, the seek cannot be completed.
if let Some(sample_rate) = self.tracks[0].codec_params.sample_rate {
TimeBase::new(1, sample_rate).calc_timestamp(time)
}
else {
return seek_error(SeekErrorKind::Unseekable);
}
}
};
// If gapless playback is enabled, get the delay.
let delay = if self.options.enable_gapless {
u64::from(self.tracks[0].codec_params.delay.unwrap_or(0))
}
else {
0
};
// The required timestamp is offset by the delay.
let required_ts = desired_ts + delay;
// If the stream is unseekable and the required timestamp in the past, then return an
// error, it is not possible to seek to it.
let is_seekable = self.reader.is_seekable();
if !is_seekable && required_ts < self.next_packet_ts {
return seek_error(SeekErrorKind::ForwardOnly);
}
debug!("seeking to ts={} (+{} delay = {})", desired_ts, delay, required_ts);
// Step 1
//
// In coarse seek mode, the underlying media source stream will be roughly seeked based on
// the required timestamp and the total duration of the media. Coarse seek mode requires a
// seekable stream because the total length in bytes of the stream is required.
//
// In accurate seek mode, the underlying media source stream will not be seeked unless the
// required timestamp is in the past, in which case the stream is seeked back to the start.
match mode {
SeekMode::Coarse if is_seekable => self.preseek_coarse(required_ts, delay)?,
SeekMode::Accurate => self.preseek_accurate(required_ts)?,
_ => (),
};
// Step 2
//
// Following the pre-seek operation above, parse MPEG frames (packets) one-by-one from the
// current position in the stream until the frame containing the desired timestamp is
// reached. For coarse seeks, this should only parse a few packets. For accurate seeks, the
// entire stream could potentially be parsed.
let mut frames: [FramePos; MAX_REF_FRAMES] = Default::default();
let mut n_parsed = 0;
loop {
// Parse the next frame header.
let header = header::parse_frame_header(header::sync_frame(&mut self.reader)?)?;
// Position of the frame header.
let pos = self.reader.pos() - std::mem::size_of::<u32>() as u64;
// Calculate the duration of the frame.
let duration = header.duration();
// Add the frame to the frame ring.
frames[n_parsed & REF_FRAMES_MASK] = FramePos { pos, ts: self.next_packet_ts };
n_parsed += 1;
// If the next frame's timestamp would exceed the desired timestamp, rewind back to the
// start of this frame and end the search.
if self.next_packet_ts + duration > required_ts {
// The main_data_begin offset is a negative offset from the frame's header to where
// its main data begins. Therefore, for a decoder to properly decode this frame, the
// reader must provide previous (reference) frames up-to and including the frame
// that contains the first byte this frame's main_data.
let main_data_begin = read_main_data_begin(&mut self.reader, &header)? as u64;
debug!(
"found frame with ts={} ({}) @ pos={} with main_data_begin={}",
self.next_packet_ts.saturating_sub(delay),
self.next_packet_ts,
pos,
main_data_begin
);
// The number of reference frames is 0 if main_data_begin is also 0. Otherwise,
// attempt to find the first (oldest) reference frame, then select 1 frame before
// that one to actually seek to.
let mut n_ref_frames = 0;
let mut ref_frame = &frames[(n_parsed - 1) & REF_FRAMES_MASK];
if main_data_begin > 0 {
// The maximum number of reference frames is limited to the number of frames
// read and the number of previous frames recorded.
let max_ref_frames = std::cmp::min(n_parsed, frames.len());
while n_ref_frames < max_ref_frames {
ref_frame = &frames[(n_parsed - n_ref_frames - 1) & REF_FRAMES_MASK];
if pos - ref_frame.pos >= main_data_begin {
break;
}
n_ref_frames += 1;
}
debug!(
"will seek -{} frame(s) to ts={} ({}) @ pos={} (-{} bytes)",
n_ref_frames,
ref_frame.ts.saturating_sub(delay),
ref_frame.ts,
ref_frame.pos,
pos - ref_frame.pos
);
}
// Do the actual seek to the reference frame.
self.next_packet_ts = ref_frame.ts;
self.reader.seek_buffered(ref_frame.pos);
break;
}
// Otherwise, ignore the frame body.
self.reader.ignore_bytes(header.frame_size as u64)?;
// Increment the timestamp for the next packet.
self.next_packet_ts += duration;
}
let actual_ts = self.next_packet_ts.saturating_sub(delay);
debug!(
"seeked to ts={} ({}) (delta={})",
actual_ts,
self.next_packet_ts,
self.next_packet_ts as i64 - required_ts as i64,
);
Ok(SeekedTo { track_id: 0, required_ts: required_ts - delay, actual_ts })
}
fn into_inner(self: Box<Self>) -> MediaSourceStream {
self.reader
}
}
impl MpaReader {
/// Seeks the media source stream to a byte position roughly where the packet with the required
/// timestamp should be located.
fn preseek_coarse(&mut self, required_ts: u64, delay: u64) -> Result<()> {
// If gapless playback is enabled, get the padding.
let padding = if self.options.enable_gapless {
u64::from(self.tracks[0].codec_params.padding.unwrap_or(0))
}
else {
0
};
// Get the total byte length of the stream. It is not possible to seek without this.
let total_byte_len = match self.reader.byte_len() {
Some(byte_len) => byte_len,
None => return seek_error(SeekErrorKind::Unseekable),
};
// Get the total duration in audio frames of the stream, including delay and padding. It is
// not possible to seek without this.
let duration = match self.tracks[0].codec_params.n_frames {
Some(num_frames) => num_frames + delay + padding,
None => return seek_error(SeekErrorKind::Unseekable),
};
// Calculate the total size of the audio data.
let audio_byte_len = total_byte_len - self.first_packet_pos;
// Calculate, roughly, where the packet containing the required timestamp is in the media
// source stream relative to the start of the audio data.
let packet_pos =
((u128::from(required_ts) * u128::from(audio_byte_len)) / u128::from(duration)) as u64;
// It is preferable to return a packet with a timestamp before the requested timestamp.
// Therefore, subtract the maximum packet size from the position found above to ensure this.
let seek_pos = packet_pos.saturating_sub(MAX_MPEG_FRAME_SIZE) + self.first_packet_pos;
// Seek the media source stream.
self.reader.seek(SeekFrom::Start(seek_pos))?;
// Resync to the start of the next packet.
let (header, _) = read_mpeg_frame_strict(&mut self.reader)?;
// Calculate, roughly, the timestamp of the packet based on the byte position after resync.
let seeked_pos = self.reader.pos();
let ts = ((u128::from(seeked_pos - self.first_packet_pos) * u128::from(duration))
/ u128::from(audio_byte_len)) as u64;
// Assuming the duration of a packet remains constant throughout the stream (not a
// guarantee, but usually the case), round the timestamp to a multiple of a packet duration.
let packet_dur = header.duration();
self.next_packet_ts = (ts / packet_dur) * packet_dur;
Ok(())
}
/// Seeks the media source stream back to the start of the first packet if the required
/// timestamp is in the past.
fn preseek_accurate(&mut self, required_ts: u64) -> Result<()> {
if required_ts < self.next_packet_ts {
let seeked_pos = self.reader.seek(SeekFrom::Start(self.first_packet_pos))?;
// Since the elementary stream has no timestamp information, the position seeked
// to must be exactly as requested.
if seeked_pos != self.first_packet_pos {
return seek_error(SeekErrorKind::Unseekable);
}
// Successfuly seeked to the start of the stream, reset the next packet timestamp.
self.next_packet_ts = 0;
}
Ok(())
}
}
/// Reads a MPEG frame and returns the header and buffer.
fn read_mpeg_frame(reader: &mut MediaSourceStream) -> Result<(FrameHeader, Vec<u8>)> {
let (header, header_word) = loop {
// Sync to the next frame header.
let sync = header::sync_frame(reader)?;
// Parse the frame header fully.
if let Ok(header) = header::parse_frame_header(sync) {
break (header, sync);
}
warn!("invalid mpeg audio header");
};
// Allocate frame buffer.
let mut packet = vec![0u8; MPEG_HEADER_LEN + header.frame_size];
packet[0..MPEG_HEADER_LEN].copy_from_slice(&header_word.to_be_bytes());
// Read the frame body.
reader.read_buf_exact(&mut packet[MPEG_HEADER_LEN..])?;
// Return the parsed header and packet body.
Ok((header, packet))
}
/// Reads a MPEG frame and checks if the next frame begins after the packet.
fn read_mpeg_frame_strict(reader: &mut MediaSourceStream) -> Result<(FrameHeader, Vec<u8>)> {
loop {
// Read the next MPEG frame.
let (header, packet) = read_mpeg_frame(reader)?;
// Get the position before trying to read the next header.
let pos = reader.pos();
// Read a sync word from the stream. If this read fails then the file may have ended and
// this check cannot be performed.
if let Ok(sync) = header::read_frame_header_word_no_sync(reader) {
// If the stream is not synced to the next frame's sync word, or the next frame header
// is not parseable or similar to the current frame header, then reject the current
// packet since the stream likely synced to random data.
if !header::is_frame_header_word_synced(sync) || !is_frame_header_similar(&header, sync)
{
warn!("skipping junk at {} bytes", pos - packet.len() as u64);
// Seek back to the second byte of the rejected packet to prevent syncing to the
// same spot again.
reader.seek_buffered_rev(packet.len() + MPEG_HEADER_LEN - 1);
continue;
}
}
// Jump back to the position before the next header was read.
reader.seek_buffered(pos);
break Ok((header, packet));
}
}
/// Check if a sync word parses to a frame header that is similar to the one provided.
fn is_frame_header_similar(header: &FrameHeader, sync: u32) -> bool {
if let Ok(candidate) = header::parse_frame_header(sync) {
if header.version == candidate.version
&& header.layer == candidate.layer
&& header.sample_rate == candidate.sample_rate
&& header.n_channels() == candidate.n_channels()
{
return true;
}
}
false
}
#[derive(Default)]
struct FramePos {
ts: u64,
pos: u64,
}
/// Reads the main_data_begin field from the side information of a MPEG audio frame.
fn read_main_data_begin<B: ReadBytes>(reader: &mut B, header: &FrameHeader) -> Result<u16> {
// After the head the optional CRC is present.
if header.has_crc {
let _crc = reader.read_be_u16()?;
}
// For MPEG version 1 the first 9 bits is main_data_begin.
let main_data_begin = if header.is_mpeg1() {
reader.read_be_u16()? >> 7
}
// For MPEG version 2 the first 8 bits is main_data_begin.
else {
u16::from(reader.read_u8()?)
};
Ok(main_data_begin)
}
/// Estimates the total number of MPEG frames in the media source stream.
fn estimate_num_mpeg_frames(reader: &mut MediaSourceStream) -> Option<u64> {
const MAX_FRAMES: u32 = 16;
const MAX_LEN: usize = 16 * 1024;
// Macro to convert a Result to Option, and break a loop on exit.
macro_rules! break_on_err {
($expr:expr) => {
match $expr {
Ok(a) => a,
_ => break None,
}
};
}
let start_pos = reader.pos();
let mut total_frame_len = 0;
let mut total_frames = 0;
let total_len = match reader.byte_len() {
Some(len) => len - start_pos,
_ => return None,
};
let num_mpeg_frames = loop {
// Read the frame header.
let header_val = break_on_err!(reader.read_be_u32());
// Parse the frame header.
let header = break_on_err!(header::parse_frame_header(header_val));
// Tabulate the size.
total_frame_len += MPEG_HEADER_LEN + header.frame_size;
total_frames += 1;
// Ignore the frame body.
break_on_err!(reader.ignore_bytes(header.frame_size as u64));
// Read up-to 16 frames, or 16kB, then calculate the average MPEG frame length, and from
// that, the total number of MPEG frames.
if total_frames > MAX_FRAMES || total_frame_len > MAX_LEN {
let avg_mpeg_frame_len = total_frame_len as f64 / total_frames as f64;
break Some((total_len as f64 / avg_mpeg_frame_len) as u64);
}
};
// Rewind back to the first frame seen upon entering this function.
reader.seek_buffered_rev((reader.pos() - start_pos) as usize);
num_mpeg_frames
}
const XING_TAG_ID: [u8; 4] = *b"Xing";
const INFO_TAG_ID: [u8; 4] = *b"Info";
/// The LAME tag is an extension to the Xing/Info tag.
#[allow(dead_code)]
struct LameTag {
encoder: String,
replaygain_peak: Option<f32>,
replaygain_radio: Option<f32>,
replaygain_audiophile: Option<f32>,
enc_delay: u32,
enc_padding: u32,
}
/// The Xing/Info time additional information for regarding a MP3 file.
#[allow(dead_code)]
struct XingInfoTag {
num_frames: Option<u32>,
num_bytes: Option<u32>,
toc: Option<[u8; 100]>,
quality: Option<u32>,
is_cbr: bool,
lame: Option<LameTag>,
}
/// Try to read a Xing/Info tag from the provided MPEG frame.
fn try_read_info_tag(buf: &[u8], header: &FrameHeader) -> Option<XingInfoTag> {
// The Info header is a completely optional piece of information. Therefore, flatten an error
// reading the tag into a None.
try_read_info_tag_inner(buf, header).ok().flatten()
}
fn try_read_info_tag_inner(buf: &[u8], header: &FrameHeader) -> Result<Option<XingInfoTag>> {
// Do a quick check that this is a Xing/Info tag.
if !is_maybe_info_tag(buf, header) {
return Ok(None);
}
// The position of the Xing/Info tag relative to the end of the header. This is equal to the
// side information length for the frame.
let offset = header.side_info_len();
// Start the CRC with the header and side information.
let mut crc16 = Crc16AnsiLe::new(0);
crc16.process_buf_bytes(&buf[..offset + MPEG_HEADER_LEN]);
// Start reading the Xing/Info tag after the side information.
let mut reader = MonitorStream::new(BufReader::new(&buf[offset + MPEG_HEADER_LEN..]), crc16);
// Check for Xing/Info header.
let id = reader.read_quad_bytes()?;
if id != XING_TAG_ID && id != INFO_TAG_ID {
return Ok(None);
}
// The "Info" id is used for CBR files.
let is_cbr = id == INFO_TAG_ID;
// Flags indicates what information is provided in this Xing/Info tag.
let flags = reader.read_be_u32()?;
let num_frames = if flags & 0x1 != 0 { Some(reader.read_be_u32()?) } else { None };
let num_bytes = if flags & 0x2 != 0 { Some(reader.read_be_u32()?) } else { None };
let toc = if flags & 0x4 != 0 {
let mut toc = [0; 100];
reader.read_buf_exact(&mut toc)?;
Some(toc)
}
else {
None
};
let quality = if flags & 0x8 != 0 { Some(reader.read_be_u32()?) } else { None };
/// The full LAME extension size.
const LAME_EXT_LEN: u64 = 36;
/// The minimal LAME extension size up-to the encode delay & padding fields.
const MIN_LAME_EXT_LEN: u64 = 24;
// The LAME extension may not always be present, or complete. The important fields in the
// extension are within the first 24 bytes. Therefore, try to read those if they're available.
let lame = if reader.inner().bytes_available() >= MIN_LAME_EXT_LEN {
// Encoder string.
let mut encoder = [0; 9];
reader.read_buf_exact(&mut encoder)?;
// Revision.
let _revision = reader.read_u8()?;
// Lowpass filter value.
let _lowpass = reader.read_u8()?;
// Replay gain peak in 9.23 (bit) fixed-point format.
let replaygain_peak = match reader.read_be_u32()? {
0 => None,
peak => Some(32767.0 * (peak as f32 / 2.0f32.powi(23))),
};
// Radio replay gain.
let replaygain_radio = parse_lame_tag_replaygain(reader.read_be_u16()?, 1);
// Audiophile replay gain.
let replaygain_audiophile = parse_lame_tag_replaygain(reader.read_be_u16()?, 2);
// Encoding flags & ATH type.
let _encoding_flags = reader.read_u8()?;
// Arbitrary bitrate.
let _abr = reader.read_u8()?;
let (enc_delay, enc_padding) = {
let trim = reader.read_be_u24()?;
if encoder[..4] == *b"LAME" || encoder[..4] == *b"Lavf" || encoder[..4] == *b"Lavc" {
let delay = 528 + 1 + (trim >> 12);
let padding = trim & ((1 << 12) - 1);
(delay, padding.saturating_sub(528 + 1))
}
else {
(0, 0)
}
};
// If possible, attempt to read the extra fields of the extension if they weren't
// truncated.
let crc = if reader.inner().bytes_available() >= LAME_EXT_LEN - MIN_LAME_EXT_LEN {
// Flags.
let _misc = reader.read_u8()?;
// MP3 gain.
let _mp3_gain = reader.read_u8()?;
// Preset and surround info.
let _surround_info = reader.read_be_u16()?;
// Music length.
let _music_len = reader.read_be_u32()?;
// Music (audio) CRC.
let _music_crc = reader.read_be_u16()?;
// The tag CRC. LAME always includes this CRC regardless of the protection bit, but
// other encoders may only do so if the protection bit is set.
if header.has_crc || encoder[..4] == *b"LAME" {
// Read the CRC using the inner reader to not change the computed CRC.
Some(reader.inner_mut().read_be_u16()?)
}
else {
// No CRC is present.
None
}
}
else {
// The tag is truncated. No CRC will be present.
info!("xing tag lame extension is truncated");
None
};
// If there is no CRC, then assume the tag is correct. Otherwise, use the CRC.
let is_tag_ok = crc.map_or(true, |crc| crc == reader.monitor().crc());
if is_tag_ok {
// The CRC matched or is not present.
Some(LameTag {
encoder: String::from_utf8_lossy(&encoder).into(),
replaygain_peak,
replaygain_radio,
replaygain_audiophile,
enc_delay,
enc_padding,
})
}
else {
// The CRC did not match, this is probably not a LAME tag.
warn!("xing tag lame extension crc mismatch");
None
}
}
else {
// Frame not large enough for a LAME tag.
info!("xing tag too small for lame extension");
None
};
Ok(Some(XingInfoTag { num_frames, num_bytes, toc, quality, is_cbr, lame }))
}
fn parse_lame_tag_replaygain(value: u16, expected_name: u8) -> Option<f32> {
// The 3 most-significant bits are the name code.
let name = ((value & 0xe000) >> 13) as u8;
if name == expected_name {
let gain = (value & 0x01ff) as f32 / 10.0;
Some(if value & 0x200 != 0 { -gain } else { gain })
}
else {
None
}
}
/// Perform a fast check to see if the packet contains a Xing/Info tag. If this returns true, the
/// packet should be parsed fully to ensure it is in fact a tag.
fn is_maybe_info_tag(buf: &[u8], header: &FrameHeader) -> bool {
const MIN_XING_TAG_LEN: usize = 8;
// Only supported with layer 3 packets.
if header.layer != MpegLayer::Layer3 {
return false;
}
// The position of the Xing/Info tag relative to the start of the packet. This is equal to the
// side information length for the frame.
let offset = header.side_info_len() + MPEG_HEADER_LEN;
// The packet must be big enough to contain a tag.
if buf.len() < offset + MIN_XING_TAG_LEN {
return false;
}
// The tag ID must be present and correct.
let id = &buf[offset..offset + 4];
if id != XING_TAG_ID && id != INFO_TAG_ID {
return false;
}
// The side information should be zeroed.
!buf[MPEG_HEADER_LEN..offset].iter().any(|&b| b != 0)
}
const VBRI_TAG_ID: [u8; 4] = *b"VBRI";
/// The contents of a VBRI tag.
#[allow(dead_code)]
struct VbriTag {
num_bytes: u32,
num_mpeg_frames: u32,
}
/// Try to read a VBRI tag from the provided MPEG frame.
fn try_read_vbri_tag(buf: &[u8], header: &FrameHeader) -> Option<VbriTag> {
// The VBRI header is a completely optional piece of information. Therefore, flatten an error
// reading the tag into a None.
try_read_vbri_tag_inner(buf, header).ok().flatten()
}
fn try_read_vbri_tag_inner(buf: &[u8], header: &FrameHeader) -> Result<Option<VbriTag>> {
// Do a quick check that this is a VBRI tag.
if !is_maybe_vbri_tag(buf, header) {
return Ok(None);
}
let mut reader = BufReader::new(buf);
// The VBRI tag is always 32 bytes after the header.
reader.ignore_bytes(MPEG_HEADER_LEN as u64 + 32)?;
// Check for the VBRI signature.
let id = reader.read_quad_bytes()?;
if id != VBRI_TAG_ID {
return Ok(None);
}
// The version is always 1.
let version = reader.read_be_u16()?;
if version != 1 {
return Ok(None);
}
// Delay is a 2-byte big-endiann floating point value?
let _delay = reader.read_be_u16()?;
let _quality = reader.read_be_u16()?;
let num_bytes = reader.read_be_u32()?;
let num_mpeg_frames = reader.read_be_u32()?;
Ok(Some(VbriTag { num_bytes, num_mpeg_frames }))
}
/// Perform a fast check to see if the packet contains a VBRI tag. If this returns true, the
/// packet should be parsed fully to ensure it is in fact a tag.
fn is_maybe_vbri_tag(buf: &[u8], header: &FrameHeader) -> bool {
const MIN_VBRI_TAG_LEN: usize = 26;
const VBRI_TAG_OFFSET: usize = 36;
// Only supported with layer 3 packets.
if header.layer != MpegLayer::Layer3 {
return false;
}
// The packet must be big enough to contain a tag.
if buf.len() < VBRI_TAG_OFFSET + MIN_VBRI_TAG_LEN {
return false;
}
// The tag ID must be present and correct.
let id = &buf[VBRI_TAG_OFFSET..VBRI_TAG_OFFSET + 4];
if id != VBRI_TAG_ID {
return false;
}
// The bytes preceeding the VBRI tag (mostly the side information) should be all 0.
!buf[MPEG_HEADER_LEN..VBRI_TAG_OFFSET].iter().any(|&b| b != 0)
}