Skip to content

Commit

Permalink
move dependencies to common block
Browse files Browse the repository at this point in the history
  • Loading branch information
ns-mkusper committed Jun 23, 2024
1 parent b5a37b7 commit a5e1506
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ anyhow = "1.0.86"
rsmpeg = { version = "0.15.1", default-features = false, features = ["ffmpeg6"] }

[package.metadata.vcpkg]
dependencies = ["ffmpeg[x264,vpx]", "x264[asm,core,default-features]"]
git = "https://github.com/microsoft/vcpkg"
rev = "c4467cb686f92671f0172aa8299a77d908175b4e"

[package.metadata.vcpkg.target]
x86_64-pc-windows-msvc = {install = ["ffmpeg[x264,vpx]", "x264[asm,core,default-features]"], triplet = "x64-windows-static-md" }
x86_64-pc-windows-msvc = {triplet = "x64-windows-static-md" }

2 changes: 0 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,4 @@ fn main() {
let output_file = &args[2];

convert_video_file(input_file, output_file);

// dump_av_info(&CString::new("./test.jpg").unwrap()).unwrap();
}

0 comments on commit a5e1506

Please sign in to comment.