Skip to content

Commit

Permalink
flac: Allow diffrent sample rate between frames
Browse files Browse the repository at this point in the history
FLAC encodes for each frame the sample rate of that frame, it is
therefore to be expected that the sample rate changes between frames and
is valid per FLAC's test vectors. This patch removes the sample rate
check in `strict_frame_header_check` and updates the sample rate in the
SignalSpec of the AudioBuffer after decoding a frame.

Ref: https://github.com/ietf-wg-cellar/flac-test-files/blob/main/uncommon/01%20-%20changing%20samplerate.flac
  • Loading branch information
Gusted committed Jun 10, 2024
1 parent 4f41954 commit 30d7e8d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
5 changes: 5 additions & 0 deletions symphonia-bundle-flac/src/decoder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,11 @@ impl FlacDecoder {

let header = read_frame_header(&mut reader, sync)?;

// Update the sample rate for this frame.
if let Some(sample_rate) = header.sample_rate {
self.buf.spec_mut().rate = sample_rate;
}

// Use the bits per sample and sample rate as stated in the frame header, falling back to
// the stream information if provided. If neither are available, return an error.
let bits_per_sample = if let Some(bps) = header.bits_per_sample {
Expand Down
7 changes: 0 additions & 7 deletions symphonia-bundle-flac/src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -527,13 +527,6 @@ fn strict_frame_header_check(
header: &FrameHeader,
last_header: Option<&FrameHeader>,
) -> bool {
// Sample rate is fixed for the stream.
if let Some(sample_rate) = header.sample_rate {
if sample_rate != stream_info.sample_rate {
return false;
}
}

// Bits per sample is fixed for the stream.
if let Some(bps) = header.bits_per_sample {
if bps != stream_info.bits_per_sample {
Expand Down
5 changes: 5 additions & 0 deletions symphonia-core/src/audio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,11 @@ impl<S: Sample> AudioBuffer<S> {
&self.spec
}

/// Gets a mutable signal specification for the buffer.
pub fn spec_mut(&mut self) -> &mut SignalSpec {
&mut self.spec
}

/// Gets the total capacity of the buffer. The capacity is the maximum number of audio frames
/// a buffer can store.
pub fn capacity(&self) -> usize {
Expand Down

0 comments on commit 30d7e8d

Please sign in to comment.