Add ffmpeg 6 support (#729)

Closes #728
This commit is contained in:
Josh Holmer 2023-03-13 04:00:17 -04:00 committed by GitHub
parent 4f919bb7fd
commit 0a3ffdafe6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

8
Cargo.lock generated
View file

@ -597,9 +597,9 @@ dependencies = [
[[package]]
name = "ffmpeg-sys-the-third"
version = "1.0.2+ffmpeg-5.1.2"
version = "1.1.1+ffmpeg-6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aba6e39e3bb60cc687e4be01ad5eefa1e42505f0b220c267e0e2c3d83280f642"
checksum = "94a4b2e9c02074c0ee85661b23b3ac849bad6afc554b503c183975f5e2e0d3de"
dependencies = [
"bindgen",
"cc",
@ -611,9 +611,9 @@ dependencies = [
[[package]]
name = "ffmpeg-the-third"
version = "1.1.2+ffmpeg-5.1.2"
version = "1.2.2+ffmpeg-6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad99f870dcc508647be4efc47e8d96b8dd0b92060442afff37a9a2ff7e59160a"
checksum = "301c55f432cce71d0cc5266e8e70e69cc7a865f8aa8785c44cb56c3935a13715"
dependencies = [
"bitflags",
"ffmpeg-sys-the-third",

View file

@ -63,7 +63,7 @@ features = ["const_generics", "const_new", "union"]
[dependencies.ffmpeg]
package = "ffmpeg-the-third"
version = "1.1.2"
version = "1.2.0"
features = ["serialize"]
[dependencies.plotters]

View file

@ -40,7 +40,7 @@ features = ["git", "build", "rustc", "cargo"]
[dependencies.ffmpeg]
package = "ffmpeg-the-third"
version = "1.1.2"
version = "1.2.0"
features = ["serialize"]
[features]