mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-23 07:42:51 +00:00
checkasm/hevc_idct : update test bit depth from 8 9 and 10 to 8 10 and 12
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
d8ca7a7e70
commit
e5b4cd4c4a
@ -87,7 +87,7 @@ void checkasm_check_hevc_idct(void)
|
|||||||
{
|
{
|
||||||
int bit_depth;
|
int bit_depth;
|
||||||
|
|
||||||
for (bit_depth = 8; bit_depth <= 10; bit_depth++) {
|
for (bit_depth = 8; bit_depth <= 12; bit_depth += 2) {
|
||||||
HEVCDSPContext h;
|
HEVCDSPContext h;
|
||||||
|
|
||||||
ff_hevc_dsp_init(&h, bit_depth);
|
ff_hevc_dsp_init(&h, bit_depth);
|
||||||
@ -95,7 +95,7 @@ void checkasm_check_hevc_idct(void)
|
|||||||
}
|
}
|
||||||
report("idct_dc");
|
report("idct_dc");
|
||||||
|
|
||||||
for (bit_depth = 8; bit_depth <= 10; bit_depth++) {
|
for (bit_depth = 8; bit_depth <= 12; bit_depth += 2) {
|
||||||
HEVCDSPContext h;
|
HEVCDSPContext h;
|
||||||
|
|
||||||
ff_hevc_dsp_init(&h, bit_depth);
|
ff_hevc_dsp_init(&h, bit_depth);
|
||||||
|
Loading…
Reference in New Issue
Block a user