File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -83,8 +83,8 @@ num-derive = "0.3"
83
83
paste = " 1.0"
84
84
noop_proc_macro = " 0.3.0"
85
85
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 }
88
88
scan_fmt = { version = " 0.2.3" , optional = true , default-features = false }
89
89
ivf = { version = " 0.1" , path = " ivf/" , optional = true }
90
90
v_frame = " 0.3.0"
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ impl<T: Pixel> TestDecoder<T> for Dav1dDecoder<T> {
64
64
debug ! ( "Retrieving frame" ) ;
65
65
let ret = pic. get ( self . dec ) ;
66
66
debug ! ( "Retrieved." ) ;
67
- if ret == - ( EAGAIN as i32 ) {
67
+ if ret == DAV1D_ERR_AGAIN {
68
68
return DecodeResult :: Done ;
69
69
}
70
70
if ret != 0 {
You can’t perform that action at this time.
0 commit comments