Skip to content

Commit 18b8d87

Browse files
committed
Update deps
1 parent 013aa27 commit 18b8d87

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ num-derive = "0.3"
8383
paste = "1.0"
8484
noop_proc_macro = "0.3.0"
8585
serde = { version = "1.0", features = ["derive"], optional = true }
86-
dav1d-sys = { version = "0.5.0", optional = true }
87-
aom-sys = { version = "0.3.0", optional = true }
86+
dav1d-sys = { version = "0.7.0", optional = true }
87+
aom-sys = { version = "0.3.2", optional = true }
8888
scan_fmt = { version = "0.2.3", optional = true, default-features = false }
8989
ivf = { version = "0.1", path = "ivf/", optional = true }
9090
v_frame = "0.3.0"

src/test_encode_decode/dav1d.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ impl<T: Pixel> TestDecoder<T> for Dav1dDecoder<T> {
6464
debug!("Retrieving frame");
6565
let ret = pic.get(self.dec);
6666
debug!("Retrieved.");
67-
if ret == -(EAGAIN as i32) {
67+
if ret == DAV1D_ERR_AGAIN {
6868
return DecodeResult::Done;
6969
}
7070
if ret != 0 {

0 commit comments

Comments
 (0)