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
333345cd
Commit
333345cd
authored
Nov 01, 2013
by
Yaowu Xu
Committed by
Gerrit Code Review
Nov 01, 2013
Browse files
Options
Browse Files
Download
Plain Diff
Merge "Convert filter kernel choice to lookup"
parents
340b2b07
0f76ba55
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
14 deletions
+9
-14
vp9/common/vp9_filter.c
vp9/common/vp9_filter.c
+9
-13
vp9/common/vp9_filter.h
vp9/common/vp9_filter.h
+0
-1
No files found.
vp9/common/vp9_filter.c
View file @
333345cd
...
...
@@ -97,19 +97,15 @@ DECLARE_ALIGNED(256, const subpel_kernel,
{
0
,
-
3
,
1
,
38
,
64
,
32
,
-
1
,
-
3
}
};
static
const
subpel_kernel
*
vp9_filter_kernels
[
4
]
=
{
vp9_sub_pel_filters_8
,
vp9_sub_pel_filters_8lp
,
vp9_sub_pel_filters_8s
,
vp9_bilinear_filters
};
const
subpel_kernel
*
vp9_get_filter_kernel
(
INTERPOLATION_TYPE
type
)
{
switch
(
type
)
{
case
EIGHTTAP
:
return
vp9_sub_pel_filters_8
;
case
EIGHTTAP_SMOOTH
:
return
vp9_sub_pel_filters_8lp
;
case
EIGHTTAP_SHARP
:
return
vp9_sub_pel_filters_8s
;
case
BILINEAR
:
return
vp9_bilinear_filters
;
default:
assert
(
!
"Invalid interpolation type."
);
return
NULL
;
}
return
vp9_filter_kernels
[
type
];
}
vp9/common/vp9_filter.h
View file @
333345cd
...
...
@@ -39,7 +39,6 @@ struct subpix_fn_table {
const
subpel_kernel
*
vp9_get_filter_kernel
(
INTERPOLATION_TYPE
type
);
extern
const
subpel_kernel
vp9_bilinear_filters
[
SUBPEL_SHIFTS
];
extern
const
subpel_kernel
vp9_sub_pel_filters_6
[
SUBPEL_SHIFTS
];
extern
const
subpel_kernel
vp9_sub_pel_filters_8
[
SUBPEL_SHIFTS
];
extern
const
subpel_kernel
vp9_sub_pel_filters_8s
[
SUBPEL_SHIFTS
];
extern
const
subpel_kernel
vp9_sub_pel_filters_8lp
[
SUBPEL_SHIFTS
];
...
...
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