We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21381f9 commit eb0b625Copy full SHA for eb0b625
mp4parse/Cargo.toml
@@ -28,7 +28,6 @@ travis-ci = { repository = "https://github.com/mozilla/mp4parse-rust" }
28
[dependencies]
29
byteorder = "1.2.1"
30
bitreader = { version = "0.3.2" }
31
-env_logger = "0.9"
32
fallible_collections = { version = "0.4", features = ["std_io"] }
33
num-traits = "0.2.14"
34
log = "0.4"
mp4parse/src/lib.rs
@@ -2476,8 +2476,6 @@ impl AvifImageType {
2476
2477
/// Read the contents of an AVIF file
2478
pub fn read_avif<T: Read>(f: &mut T, strictness: ParseStrictness) -> Result<AvifContext> {
2479
- let _ = env_logger::try_init();
2480
-
2481
debug!("read_avif(strictness: {:?})", strictness);
2482
2483
let mut f = OffsetReader::new(f);
0 commit comments