From 75956dd1ff73a08e1a4b3de07a11f2e510491070 Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Mon, 4 Nov 2019 20:24:52 -0800 Subject: [PATCH] Remove stale TODOs. --- src/lib.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index dc261df..d0091d2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -83,7 +83,6 @@ impl Tags { } } -// TODO(wathiede): make strem an enum with the tag type stored in codec_type? #[derive(Clone, Deserialize, Debug, Serialize)] #[serde(tag = "codec_type")] enum Stream { @@ -180,7 +179,6 @@ pub struct SubtitleFormat { #[derive(Clone, Deserialize, Debug, Serialize)] pub struct CompactMetadata { bit_rate: usize, - // TODO(wathiede): make this a custom Duration type that pretty prints H:M:S pub duration: f32, filename: String, format_name: String, @@ -236,7 +234,6 @@ pub struct MovieLibrary { fn json_metadata_for_path + AsRef>(path: P) -> Result { let mut cmd = Command::new("ffprobe"); - // TODO(wathiede): maybe add "-select_streams v" cmd.args(&[ "-v", "quiet",