Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
aom-rav1e
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
aom-rav1e
Commits
bd970650
Commit
bd970650
authored
10 years ago
by
Jingning Han
Committed by
Gerrit Code Review
10 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Move inter filter defs to vp9_filter.h"
parents
91442e16
5d9cdac0
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
vp9/common/vp9_entropymode.h
+0
-2
0 additions, 2 deletions
vp9/common/vp9_entropymode.h
vp9/common/vp9_filter.h
+7
-0
7 additions, 0 deletions
vp9/common/vp9_filter.h
vp9/encoder/vp9_context_tree.h
+2
-1
2 additions, 1 deletion
vp9/encoder/vp9_context_tree.h
with
9 additions
and
3 deletions
vp9/common/vp9_entropymode.h
+
0
−
2
View file @
bd970650
...
...
@@ -20,8 +20,6 @@ extern "C" {
#endif
#define TX_SIZE_CONTEXTS 2
#define SWITCHABLE_FILTERS 3 // number of switchable filters
#define SWITCHABLE_FILTER_CONTEXTS (SWITCHABLE_FILTERS + 1)
struct
VP9Common
;
...
...
This diff is collapsed.
Click to expand it.
vp9/common/vp9_filter.h
+
7
−
0
View file @
bd970650
...
...
@@ -35,6 +35,13 @@ typedef enum {
SWITCHABLE
=
4
/* should be the last one */
}
INTERP_FILTER
;
// Number of switchable filters
#define SWITCHABLE_FILTERS 3
// The codec can operate in four possible inter prediction filter mode:
// 8-tap, 8-tap-smooth, 8-tap-sharp, and switching between the three.
#define SWITCHABLE_FILTER_CONTEXTS (SWITCHABLE_FILTERS + 1)
typedef
int16_t
InterpKernel
[
SUBPEL_TAPS
];
const
InterpKernel
*
vp9_get_interp_kernel
(
INTERP_FILTER
filter
);
...
...
This diff is collapsed.
Click to expand it.
vp9/encoder/vp9_context_tree.h
+
2
−
1
View file @
bd970650
...
...
@@ -11,9 +11,10 @@
#ifndef VP9_ENCODER_VP9_CONTEXT_TREE_H_
#define VP9_ENCODER_VP9_CONTEXT_TREE_H_
#include
"vp9/common/vp9_
entropymode
.h"
#include
"vp9/common/vp9_
blockd
.h"
struct
VP9_COMP
;
struct
VP9Common
;
// Structure to hold snapshot of coding context during the mode picking process
typedef
struct
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment