summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHubert Figuière <hub@figuiere.net>2024-01-06 19:20:06 -0500
committerHubert Figuière <hub@figuiere.net>2024-01-06 19:20:14 -0500
commit93a8c2906a7a2195200bcb2638e772dd184215e6 (patch)
treee74acbfd5562ee228a033fa9ec1700781be3b938
parentcb721e556ef996a39d8ec002f87788adc7a3f6c4 (diff)
mp4::parse: Remove env_logger
Signed-off-by: Hubert Figuière <hub@figuiere.net>
-rw-r--r--Cargo.toml1
-rw-r--r--src/mp4/parse/mod.rs2
2 files changed, 0 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index f1dd938..8d24d55 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -23,7 +23,6 @@ bitreader = "0.3.7"
byteorder = "1.4.3"
cc = "1.0"
chrono = { version = "0.4.26", default-features = false, features = [ "clock" ] }
-env_logger = "0.10"
fallible_collections = { version = "0.4", features = ["std_io"] }
getopts = "0.2.21"
jpeg-decoder = "0.3.0"
diff --git a/src/mp4/parse/mod.rs b/src/mp4/parse/mod.rs
index 9e9b2e6..5d7c5ab 100644
--- a/src/mp4/parse/mod.rs
+++ b/src/mp4/parse/mod.rs
@@ -1705,8 +1705,6 @@ fn skip_box_remain<T: Read>(src: &mut BMFFBox<T>) -> Result<()> {
/// Read the contents of an AVIF file
pub fn read_avif<T: Read>(f: &mut T, strictness: ParseStrictness) -> Result<AvifContext> {
- let _ = env_logger::try_init();
-
debug!("read_avif(strictness: {:?})", strictness);
let mut f = OffsetReader::new(f);