Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
d83fc3b8
Commit
d83fc3b8
authored
Oct 19, 2016
by
Angie Chiang
Committed by
Gerrit Code Review
Oct 19, 2016
Browse files
Merge "Add av1_fdct64_new and av1_idct64_new" into nextgenv2
parents
74d0ad84
792519bd
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
av1/common/av1_fwd_txfm1d.c
View file @
d83fc3b8
This diff is collapsed.
Click to expand it.
av1/common/av1_inv_txfm1d.c
View file @
d83fc3b8
This diff is collapsed.
Click to expand it.
test/av1_fwd_txfm1d_test.cc
View file @
d83fc3b8
...
...
@@ -23,10 +23,15 @@ const int txfm_type_num = 2;
const
TYPE_TXFM
txfm_type_ls
[
2
]
=
{
TYPE_DCT
,
TYPE_ADST
};
const
int
txfm_size_num
=
5
;
const
int
txfm_size_ls
[
5
]
=
{
4
,
8
,
16
,
32
};
const
int
txfm_size_ls
[
5
]
=
{
4
,
8
,
16
,
32
,
64
};
const
TxfmFunc
fwd_txfm_func_ls
[
2
][
5
]
=
{
#if CONFIG_TX64X64
{
av1_fdct4_new
,
av1_fdct8_new
,
av1_fdct16_new
,
av1_fdct32_new
,
av1_fdct64_new
},
#else
{
av1_fdct4_new
,
av1_fdct8_new
,
av1_fdct16_new
,
av1_fdct32_new
,
NULL
},
#endif
{
av1_fadst4_new
,
av1_fadst8_new
,
av1_fadst16_new
,
av1_fadst32_new
,
NULL
}
};
...
...
test/av1_inv_txfm1d_test.cc
View file @
d83fc3b8
...
...
@@ -18,15 +18,25 @@ using libaom_test::input_base;
namespace
{
const
int
txfm_type_num
=
2
;
const
int
txfm_size_num
=
5
;
const
int
txfm_size_ls
[
5
]
=
{
4
,
8
,
16
,
32
};
const
int
txfm_size_ls
[
5
]
=
{
4
,
8
,
16
,
32
,
64
};
const
TxfmFunc
fwd_txfm_func_ls
[
2
][
5
]
=
{
#if CONFIG_TX64X64
{
av1_fdct4_new
,
av1_fdct8_new
,
av1_fdct16_new
,
av1_fdct32_new
,
av1_fdct64_new
},
#else
{
av1_fdct4_new
,
av1_fdct8_new
,
av1_fdct16_new
,
av1_fdct32_new
,
NULL
},
#endif
{
av1_fadst4_new
,
av1_fadst8_new
,
av1_fadst16_new
,
av1_fadst32_new
,
NULL
}
};
const
TxfmFunc
inv_txfm_func_ls
[
2
][
5
]
=
{
#if CONFIG_TX64X64
{
av1_idct4_new
,
av1_idct8_new
,
av1_idct16_new
,
av1_idct32_new
,
av1_idct64_new
},
#else
{
av1_idct4_new
,
av1_idct8_new
,
av1_idct16_new
,
av1_idct32_new
,
NULL
},
#endif
{
av1_iadst4_new
,
av1_iadst8_new
,
av1_iadst16_new
,
av1_iadst32_new
,
NULL
}
};
...
...
Write
Preview
Supports
Markdown
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