ffv1: Update to a newer git revision of the codec implementation

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/2045>
This commit is contained in:
Sebastian Dröge 2025-01-20 13:58:06 +02:00
parent d4e76dfdc8
commit 261211886f
2 changed files with 2 additions and 18 deletions

18
Cargo.lock generated
View file

@ -941,12 +941,6 @@ dependencies = [
"memchr",
]
[[package]]
name = "build_const"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4ae4235e6dac0694637c763029ecea1a2ec9e4e06ec2729bd21ba4d9c863eb7"
[[package]]
name = "built"
version = "0.7.5"
@ -1321,15 +1315,6 @@ dependencies = [
"libc",
]
[[package]]
name = "crc"
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d663548de7f5cca343f1e0a48d14dcfb0e9eb4e079ec58883b7251539fa10aeb"
dependencies = [
"build_const",
]
[[package]]
name = "crc32c"
version = "0.6.8"
@ -1901,9 +1886,8 @@ dependencies = [
[[package]]
name = "ffv1"
version = "0.0.0"
source = "git+https://github.com/rust-av/ffv1.git?rev=2afb025a327173ce891954c052e804d0f880368a#2afb025a327173ce891954c052e804d0f880368a"
source = "git+https://github.com/rust-av/ffv1.git?rev=bd9eabfc14c9ad53c37b32279e276619f4390ab8#bd9eabfc14c9ad53c37b32279e276619f4390ab8"
dependencies = [
"crc",
"num-traits",
"thiserror 1.0.69",
]

View file

@ -10,7 +10,7 @@ rust-version.workspace = true
[dependencies]
byte-slice-cast = "1"
ffv1 = { git = "https://github.com/rust-av/ffv1.git", rev = "2afb025a327173ce891954c052e804d0f880368a" }
ffv1 = { git = "https://github.com/rust-av/ffv1.git", rev = "bd9eabfc14c9ad53c37b32279e276619f4390ab8" }
gst = { workspace = true, features = ["v1_18"] }
gst-video = { workspace = true, features = ["v1_18"] }