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
a8b45c37
Commit
a8b45c37
authored
Jan 16, 2018
by
Angie Chiang
Browse files
Correct inv_start_range
Change-Id: I08e4686b0bcf19a3c318a831bc338c9e58f3a127
parent
a0d27597
Changes
1
Hide whitespace changes
Inline
Side-by-side
av1/common/av1_inv_txfm1d_cfg.h
View file @
a8b45c37
...
...
@@ -14,14 +14,33 @@
#include
"av1/common/av1_inv_txfm1d.h"
// sum of fwd_shift_##
#if CONFIG_TX64X64
static
const
int8_t
inv_start_range
[
TX_SIZES_ALL
]
=
{
5
,
6
,
7
,
7
,
7
,
6
,
6
,
7
,
7
,
7
,
7
,
7
,
7
,
6
,
6
,
7
,
7
,
7
,
7
};
#else // CONFIG_TX64X64
static
const
int8_t
inv_start_range
[
TX_SIZES_ALL
]
=
{
5
,
6
,
7
,
7
,
6
,
6
,
7
,
7
,
7
,
7
,
6
,
6
,
7
,
7
};
5
,
// 4x4 transform
6
,
// 8x8 transform
7
,
// 16x16 transform
7
,
// 32x32 transform
#if CONFIG_TX64X64
7
,
// 64x64 transform
#endif // CONFIG_TX64X64
6
,
// 4x8 transform
6
,
// 8x4 transform
6
,
// 8x16 transform
6
,
// 16x8 transform
6
,
// 16x32 transform
6
,
// 32x16 transform
#if CONFIG_TX64X64
6
,
// 32x64 transform
6
,
// 64x32 transform
#endif // CONFIG_TX64X64
6
,
// 4x16 transform
6
,
// 16x4 transform
7
,
// 8x32 transform
7
,
// 32x8 transform
#if CONFIG_TX64X64
7
,
// 16x64 transform
7
,
// 64x16 transform
#endif
};
// ---------------- 4x4 1D config -----------------------
// stage range
...
...
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