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
b77dfccf
Commit
b77dfccf
authored
Jun 10, 2016
by
Jingning Han
Committed by
Gerrit Code Review
Jun 10, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge "Add MIN_TX_SIZE definition" into nextgenv2
parents
667db87a
68cd9469
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
vp10/common/enums.h
vp10/common/enums.h
+4
-0
No files found.
vp10/common/enums.h
View file @
b77dfccf
...
...
@@ -139,6 +139,8 @@ typedef uint8_t TX_SIZE;
#define MAX_TX_SIZE_LOG2 5
#define MAX_TX_SIZE (1 << MAX_TX_SIZE_LOG2)
#define MIN_TX_SIZE_LOG2 2
#define MIN_TX_SIZE (1 << MIN_TX_SIZE_LOG2)
#define MAX_TX_SQUARE (MAX_TX_SIZE * MAX_TX_SIZE)
// Number of maxium size transform blocks in the maximum size superblock
...
...
@@ -146,6 +148,8 @@ typedef uint8_t TX_SIZE;
((MAX_SB_SIZE_LOG2 - MAX_TX_SIZE_LOG2) * 2)
#define MAX_TX_BLOCKS_IN_MAX_SB (1 << MAX_TX_BLOCKS_IN_MAX_SB_LOG2)
#define MAX_NUM_TXB (1 << (MAX_SB_SIZE_LOG2 - MIN_TX_SIZE_LOG2))
// frame transform mode
typedef
enum
{
ONLY_4X4
=
0
,
// only 4x4 transform used
...
...
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