Skip to content

Commit

Permalink
mkv: Quiet MkvReader a little.
Browse files Browse the repository at this point in the history
Fixes #259.
  • Loading branch information
pdeljanov committed Feb 16, 2024
1 parent 5941734 commit 80bb59f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion symphonia-format-mkv/src/demuxer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ impl MkvReader {
if let Some(ClusterState { end: Some(end), .. }) = &self.current_cluster {
// Make sure we don't read past the current cluster if its size is known.
if self.iter.pos() >= *end {
log::debug!("ended cluster");
// log::debug!("ended cluster");
self.current_cluster = None;
}
}
Expand Down
2 changes: 1 addition & 1 deletion symphonia-format-mkv/src/ebml.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ pub(crate) fn read_tag<R: ReadBytes>(mut reader: R) -> Result<(u32, u32, bool)>
vint = (vint << 8) | u32::from(byte);
}

log::debug!("element with tag: {:X}", vint);
// log::debug!("element with tag: {:X}", vint);
return Ok((vint, remaining_octets + 1, false));
}

Expand Down

0 comments on commit 80bb59f

Please sign in to comment.