1
0
Fork 0
mirror of https://github.com/alfg/mp4-rust.git synced 2024-06-02 13:39:54 +00:00

Comment debugging messages

This commit is contained in:
Ian Jun 2020-08-11 09:55:11 +09:00
parent 99f48f8c99
commit 1e6982755e

View file

@ -163,7 +163,7 @@ async fn async_copy<P: AsRef<Path>>(src_filename: &P, dst_filename: &P) -> Resul
for sample_idx in 0..sample_count {
let sample_id = sample_idx + 1;
let sample = mp4_reader.async_read_sample(track_id, sample_id).await?.unwrap();
println!("{}:({})", sample_id, sample);
// println!("{}:{}:({})", track_id, sample_id, sample);
mp4_writer.async_write_sample(track_id, &sample).await?;
}
}