Skip to content

Commit

Permalink
Hide import behind feature flag
Browse files Browse the repository at this point in the history
  • Loading branch information
FreezyLemon committed Aug 27, 2024
1 parent 93e7f39 commit c1d8def
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion av_metrics_tool/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ use indicatif::{ProgressBar, ProgressStyle};
use serde::Serialize;
use std::error::Error;
use std::fs::File;
use std::io::{BufReader, BufWriter, Stdout, Write};
use std::io::{BufWriter, Stdout, Write};
#[cfg(not(feature = "ffmpeg"))]
use std::io::BufReader;
use std::path::Path;

fn main() -> Result<(), String> {
Expand Down

0 comments on commit c1d8def

Please sign in to comment.