mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 07:17:32 +09:00
Update libaom to commit ID 1e227d41f0616de9548a673a83a21ef990b62591
This commit is contained in:
parent
77c9089b7d
commit
368651059a
526 changed files with 34535 additions and 15900 deletions
|
|
@ -71,9 +71,9 @@ void AV1Convolve2DSrTest::RunCheckOutput(convolve_2d_func test_impl) {
|
|||
out_h);
|
||||
for (int do_average = 0; do_average < 1; ++do_average) {
|
||||
ConvolveParams conv_params1 =
|
||||
get_conv_params_no_round(0, do_average, 0, NULL, 0, 0, 8);
|
||||
get_conv_params_no_round(do_average, 0, NULL, 0, 0, 8);
|
||||
ConvolveParams conv_params2 =
|
||||
get_conv_params_no_round(0, do_average, 0, NULL, 0, 0, 8);
|
||||
get_conv_params_no_round(do_average, 0, NULL, 0, 0, 8);
|
||||
|
||||
const int subx_range = has_subx ? 16 : 1;
|
||||
const int suby_range = has_suby ? 16 : 1;
|
||||
|
|
@ -126,7 +126,7 @@ void AV1Convolve2DSrTest::RunSpeedTest(convolve_2d_func test_impl) {
|
|||
|
||||
const int do_average = 0;
|
||||
ConvolveParams conv_params2 =
|
||||
get_conv_params_no_round(0, do_average, 0, NULL, 0, 0, 8);
|
||||
get_conv_params_no_round(do_average, 0, NULL, 0, 0, 8);
|
||||
|
||||
// Make sure that sizes 2xN and Nx2 are also tested for chroma.
|
||||
const int num_sizes =
|
||||
|
|
@ -195,10 +195,10 @@ void AV1JntConvolve2DTest::RunCheckOutput(convolve_2d_func test_impl) {
|
|||
av1_get_interp_filter_params_with_block_size((InterpFilter)vfilter,
|
||||
out_h);
|
||||
for (int do_average = 0; do_average <= 1; ++do_average) {
|
||||
ConvolveParams conv_params1 = get_conv_params_no_round(
|
||||
0, do_average, 0, output1, MAX_SB_SIZE, 1, 8);
|
||||
ConvolveParams conv_params2 = get_conv_params_no_round(
|
||||
0, do_average, 0, output2, MAX_SB_SIZE, 1, 8);
|
||||
ConvolveParams conv_params1 =
|
||||
get_conv_params_no_round(do_average, 0, output1, MAX_SB_SIZE, 1, 8);
|
||||
ConvolveParams conv_params2 =
|
||||
get_conv_params_no_round(do_average, 0, output2, MAX_SB_SIZE, 1, 8);
|
||||
|
||||
// Test special case where jnt_comp_avg is not used
|
||||
conv_params1.use_jnt_comp_avg = 0;
|
||||
|
|
@ -331,7 +331,7 @@ void AV1JntConvolve2DTest::RunSpeedTest(convolve_2d_func test_impl) {
|
|||
out_h);
|
||||
|
||||
ConvolveParams conv_params =
|
||||
get_conv_params_no_round(0, do_average, 0, output, MAX_SB_SIZE, 1, 8);
|
||||
get_conv_params_no_round(do_average, 0, output, MAX_SB_SIZE, 1, 8);
|
||||
|
||||
conv_params.use_jnt_comp_avg = 0;
|
||||
|
||||
|
|
@ -395,7 +395,7 @@ void AV1HighbdConvolve2DSrTest::RunSpeedTest(
|
|||
suby = 0;
|
||||
|
||||
ConvolveParams conv_params =
|
||||
get_conv_params_no_round(0, do_average, 0, NULL, 0, 0, bd);
|
||||
get_conv_params_no_round(do_average, 0, NULL, 0, 0, bd);
|
||||
|
||||
// Make sure that sizes 2xN and Nx2 are also tested for chroma.
|
||||
const int num_sizes =
|
||||
|
|
@ -464,9 +464,9 @@ void AV1HighbdConvolve2DSrTest::RunCheckOutput(
|
|||
out_h);
|
||||
for (int do_average = 0; do_average < 1; ++do_average) {
|
||||
ConvolveParams conv_params1 =
|
||||
get_conv_params_no_round(0, do_average, 0, NULL, 0, 0, bd);
|
||||
get_conv_params_no_round(do_average, 0, NULL, 0, 0, bd);
|
||||
ConvolveParams conv_params2 =
|
||||
get_conv_params_no_round(0, do_average, 0, NULL, 0, 0, bd);
|
||||
get_conv_params_no_round(do_average, 0, NULL, 0, 0, bd);
|
||||
|
||||
const int subx_range = has_subx ? 16 : 1;
|
||||
const int suby_range = has_suby ? 16 : 1;
|
||||
|
|
@ -538,7 +538,7 @@ void AV1HighbdJntConvolve2DTest::RunSpeedTest(
|
|||
out_h);
|
||||
|
||||
ConvolveParams conv_params =
|
||||
get_conv_params_no_round(0, do_average, 0, output, MAX_SB_SIZE, 1, bd);
|
||||
get_conv_params_no_round(do_average, 0, output, MAX_SB_SIZE, 1, bd);
|
||||
|
||||
// Test special case where jnt_comp_avg is not used
|
||||
conv_params.use_jnt_comp_avg = 0;
|
||||
|
|
@ -597,9 +597,9 @@ void AV1HighbdJntConvolve2DTest::RunCheckOutput(
|
|||
out_h);
|
||||
for (int do_average = 0; do_average <= 1; ++do_average) {
|
||||
ConvolveParams conv_params1 = get_conv_params_no_round(
|
||||
0, do_average, 0, output1, MAX_SB_SIZE, 1, bd);
|
||||
do_average, 0, output1, MAX_SB_SIZE, 1, bd);
|
||||
ConvolveParams conv_params2 = get_conv_params_no_round(
|
||||
0, do_average, 0, output2, MAX_SB_SIZE, 1, bd);
|
||||
do_average, 0, output2, MAX_SB_SIZE, 1, bd);
|
||||
|
||||
// Test special case where jnt_comp_avg is not used
|
||||
conv_params1.use_jnt_comp_avg = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue