File tree Expand file tree Collapse file tree 3 files changed +9
-10
lines changed Expand file tree Collapse file tree 3 files changed +9
-10
lines changed Original file line number Diff line number Diff line change @@ -118,17 +118,17 @@ jobs:
118
118
matrix.conf == '1.36.0-tests' || matrix.conf == 'aom-tests' ||
119
119
matrix.conf == 'grcov-coveralls'
120
120
env :
121
- LINK : http://ppa.launchpad.net/jonathonf/ffmpeg-4/ubuntu/ pool/main/a/aom
122
- AOM_VERSION : 1 .0.0.errata1-3~18.04.york0
121
+ LINK : http://www.deb-multimedia.org/ pool/main/a/aom-dmo/
122
+ AOM_VERSION : 2 .0.0-dmo1
123
123
AOM_DEV_SHA256 : >-
124
- 93e6f64f33722cf9c80a920b3d722713869793e5e1438c05ff9331791728ca90
124
+ 3a151112c942cef784c4010e6ab72761b40eb9573a3f5d223aa83f33c908ad9a
125
125
AOM_LIB_SHA256 : >-
126
- e1ff5093f077685e4e45ce74264f9ee7ccda4634be58e401ac180b73f4232b63
126
+ a9080e8e3d043d7b435e6636be997421c5bb39c626772478bacf23a2cc648bd5
127
127
run : |
128
128
echo "$LINK/libaom-dev_${AOM_VERSION}_amd64.deb" >> DEBS
129
- echo "$LINK/libaom0_ ${AOM_VERSION}_amd64.deb" >> DEBS
129
+ echo "$LINK/libaom2_ ${AOM_VERSION}_amd64.deb" >> DEBS
130
130
echo "$AOM_DEV_SHA256 libaom-dev_${AOM_VERSION}_amd64.deb" >> CHECKSUMS
131
- echo "$AOM_LIB_SHA256 libaom0_ ${AOM_VERSION}_amd64.deb" >> CHECKSUMS
131
+ echo "$AOM_LIB_SHA256 libaom2_ ${AOM_VERSION}_amd64.deb" >> CHECKSUMS
132
132
- name : Add dav1d
133
133
if : >
134
134
matrix.conf == '1.36.0-tests' || matrix.conf == 'dav1d-tests' ||
Original file line number Diff line number Diff line change @@ -65,8 +65,8 @@ num-derive = "0.3"
65
65
paste = " 0.1"
66
66
noop_proc_macro = " 0.2.0"
67
67
serde = { version = " 1.0" , features = [" derive" ], optional = true }
68
- dav1d-sys = { version = " 0.3.1 " , optional = true }
69
- aom-sys = { version = " 0.1.4 " , optional = true }
68
+ dav1d-sys = { version = " 0.3.2 " , optional = true }
69
+ aom-sys = { version = " 0.2.0 " , optional = true }
70
70
scan_fmt = { version = " 0.2.3" , optional = true , default-features = false }
71
71
ivf = { version = " 0.1" , path = " ivf/" , optional = true }
72
72
v_frame = { version = " 0.1" , path = " v_frame/" }
Original file line number Diff line number Diff line change @@ -31,7 +31,6 @@ impl<T: Pixel> TestDecoder<T> for AomDecoder<T> {
31
31
w : w as u32 ,
32
32
h : h as u32 ,
33
33
allow_lowbitdepth : 1 ,
34
- cfg : cfg_options { ext_partition : 1 } ,
35
34
} ;
36
35
37
36
let mut dec = MaybeUninit :: uninit ( ) ;
@@ -91,7 +90,7 @@ impl<T: Pixel> TestDecoder<T> for AomDecoder<T> {
91
90
return DecodeResult :: Done ;
92
91
}
93
92
let mut corrupted = 0 ;
94
- let ret = aom_codec_control_ (
93
+ let ret = aom_codec_control (
95
94
& mut self . dec ,
96
95
aom_dec_control_id:: AOMD_GET_FRAME_CORRUPTED as i32 ,
97
96
& mut corrupted,
You can’t perform that action at this time.
0 commit comments