Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
7e32a4cc
Commit
7e32a4cc
authored
Apr 12, 2017
by
Jingning Han
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix high bit-depth transform unit test failure
BUG=aomedia:430 Change-Id: I1e6fc42163b94f221d3010f00bb5e085707687c8
parent
65113f38
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
test/av1_txfm_test.cc
test/av1_txfm_test.cc
+1
-1
test/av1_txfm_test.h
test/av1_txfm_test.h
+6
-0
No files found.
test/av1_txfm_test.cc
View file @
7e32a4cc
...
...
@@ -14,7 +14,7 @@
namespace
libaom_test
{
int
get_txfm1d_size
(
TX_SIZE
tx_size
)
{
return
1
<<
(
tx_size
+
2
)
;
}
int
get_txfm1d_size
(
TX_SIZE
tx_size
)
{
return
tx_size_wide
[
tx_size
]
;
}
void
get_txfm1d_type
(
TX_TYPE
txfm2d_type
,
TYPE_TXFM
*
type0
,
TYPE_TXFM
*
type1
)
{
switch
(
txfm2d_type
)
{
...
...
test/av1_txfm_test.h
View file @
7e32a4cc
...
...
@@ -79,12 +79,18 @@ static const int input_base = (1 << bd);
#if CONFIG_AOM_HIGHBITDEPTH
#if CONFIG_AV1_ENCODER
static
const
Fwd_Txfm2d_Func
fwd_txfm_func_ls
[
TX_SIZES
]
=
{
#if CONFIG_CB4X4
NULL
,
#endif
av1_fwd_txfm2d_4x4_c
,
av1_fwd_txfm2d_8x8_c
,
av1_fwd_txfm2d_16x16_c
,
av1_fwd_txfm2d_32x32_c
};
#endif
static
const
Inv_Txfm2d_Func
inv_txfm_func_ls
[
TX_SIZES
]
=
{
#if CONFIG_CB4X4
NULL
,
#endif
av1_inv_txfm2d_add_4x4_c
,
av1_inv_txfm2d_add_8x8_c
,
av1_inv_txfm2d_add_16x16_c
,
av1_inv_txfm2d_add_32x32_c
};
...
...
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