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
Yushin Cho
aom-rav1e
Commits
048f5937
Commit
048f5937
authored
Feb 21, 2013
by
Deb Mukherjee
Committed by
Gerrit Code Review
Feb 21, 2013
Browse files
Merge "Refactoring of switchable filter search for speed" into experimental
parents
138ffb6e
28b1db92
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
vp9/common/vp9_entropymode.c
View file @
048f5937
...
...
@@ -423,6 +423,14 @@ const int vp9_switchable_interp_map[SWITCHABLE+1] = {-1, -1, 0, 1, -1, -1};
#else
const
int
vp9_switchable_interp_map
[
SWITCHABLE
+
1
]
=
{
-
1
,
0
,
1
,
-
1
,
-
1
};
#endif
#endif // VP9_SWITCHABLE_FILTERS
// Indicates if the filter is interpolating or non-interpolating
// Note currently only the EIGHTTAP_SMOOTH is non-interpolating
#if CONFIG_ENABLE_6TAP
const
int
vp9_is_interpolating_filter
[
SWITCHABLE
+
1
]
=
{
1
,
0
,
1
,
1
,
1
,
-
1
};
#else
const
int
vp9_is_interpolating_filter
[
SWITCHABLE
+
1
]
=
{
0
,
1
,
1
,
1
,
-
1
};
#endif
void
vp9_entropy_mode_init
()
{
...
...
vp9/common/vp9_entropymode.h
View file @
048f5937
...
...
@@ -104,6 +104,8 @@ extern const INTERPOLATIONFILTERTYPE vp9_switchable_interp
extern
const
int
vp9_switchable_interp_map
[
SWITCHABLE
+
1
];
extern
const
int
vp9_is_interpolating_filter
[
SWITCHABLE
+
1
];
extern
const
vp9_tree_index
vp9_switchable_interp_tree
[
2
*
(
VP9_SWITCHABLE_FILTERS
-
1
)];
...
...
vp9/encoder/vp9_rdopt.c
View file @
048f5937
This diff is collapsed.
Click to expand it.
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