fix: get_frame_duration

This commit is contained in:
2024-11-21 10:41:06 +00:00
parent d783291f74
commit 94658cd808
2 changed files with 13 additions and 4 deletions

View File

@ -8,10 +8,6 @@ fn main() {
let feature_name = name["DEP_FFMPEG_".len()..name.len()].to_lowercase();
println!(r#"cargo::rustc-check-cfg=cfg(feature, values("{feature_name}"))"#);
println!(r#"cargo::rustc-cfg=feature="{feature_name}""#);
println!(
r#"cargo::rustc-env=DEP_FFMPEG_{}=1"#,
feature_name.to_uppercase()
);
}
}
}