Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
1bc3046d
Commit
1bc3046d
authored
Mar 08, 2017
by
Sebastien Alaiwan
Committed by
sebastien alaiwan
Mar 13, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify list of functions to test
Change-Id: Id4eeefe769351414abae6e3ddda56a2f9f0c3eda
parent
def28b24
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
6 deletions
+10
-6
test/av1_inv_txfm1d_test.cc
test/av1_inv_txfm1d_test.cc
+10
-6
No files found.
test/av1_inv_txfm1d_test.cc
View file @
1bc3046d
...
...
@@ -22,22 +22,26 @@ const int txfm_size_num = 5;
const
int
txfm_size_ls
[
5
]
=
{
4
,
8
,
16
,
32
,
64
};
const
TxfmFunc
fwd_txfm_func_ls
[
2
][
5
]
=
{
{
av1_fdct4_new
,
av1_fdct8_new
,
av1_fdct16_new
,
av1_fdct32_new
,
#if CONFIG_TX64X64
{
av1_fdct4_new
,
av1_fdct8_new
,
av1_fdct16_new
,
av1_fdct32_new
,
av1_fdct64_new
},
av1_fdct64_new
,
#else
{
av1_fdct4_new
,
av1_fdct8_new
,
av1_fdct16_new
,
av1_fdct32_new
,
NULL
}
,
NULL
,
#endif
},
{
av1_fadst4_new
,
av1_fadst8_new
,
av1_fadst16_new
,
av1_fadst32_new
,
NULL
}
};
const
TxfmFunc
inv_txfm_func_ls
[
2
][
5
]
=
{
{
av1_idct4_new
,
av1_idct8_new
,
av1_idct16_new
,
av1_idct32_new
,
#if CONFIG_TX64X64
{
av1_idct4_new
,
av1_idct8_new
,
av1_idct16_new
,
av1_idct32_new
,
av1_idct64_new
},
av1_idct64_new
,
#else
{
av1_idct4_new
,
av1_idct8_new
,
av1_idct16_new
,
av1_idct32_new
,
NULL
}
,
NULL
,
#endif
},
{
av1_iadst4_new
,
av1_iadst8_new
,
av1_iadst16_new
,
av1_iadst32_new
,
NULL
}
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment