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
d463fdf2
Commit
d463fdf2
authored
Dec 11, 2016
by
Angie Chiang
Browse files
Use consistent function call for av1_convolve
Change-Id: Iaf11f439eb4baf2e0c7bf2a19c7c1c012ae7f57b
parent
997ba51e
Changes
1
Hide whitespace changes
Inline
Side-by-side
av1/common/convolve.c
View file @
d463fdf2
...
...
@@ -172,8 +172,8 @@ void av1_convolve(const uint8_t *src, int src_stride, uint8_t *dst,
av1_get_interp_filter_params
(
interp_filter
);
#endif
assert
(
filter_params
.
taps
<=
MAX_FILTER_TAP
);
av1_convolve_horiz
(
src
,
src_stride
,
dst
,
dst_stride
,
w
,
h
,
filter_params
,
subpel_x_q4
,
x_step_q4
,
ref_idx
);
av1_convolve_horiz
_facade
(
src
,
src_stride
,
dst
,
dst_stride
,
w
,
h
,
filter_params
,
subpel_x_q4
,
x_step_q4
,
ref_idx
);
}
else
if
(
ignore_horiz
)
{
#if CONFIG_DUAL_FILTER
InterpFilterParams
filter_params
=
...
...
@@ -183,8 +183,8 @@ void av1_convolve(const uint8_t *src, int src_stride, uint8_t *dst,
av1_get_interp_filter_params
(
interp_filter
);
#endif
assert
(
filter_params
.
taps
<=
MAX_FILTER_TAP
);
av1_convolve_vert
(
src
,
src_stride
,
dst
,
dst_stride
,
w
,
h
,
filter_params
,
subpel_y_q4
,
y_step_q4
,
ref_idx
);
av1_convolve_vert
_facade
(
src
,
src_stride
,
dst
,
dst_stride
,
w
,
h
,
filter_params
,
subpel_y_q4
,
y_step_q4
,
ref_idx
);
}
else
{
// temp's size is set to a 256 aligned value to facilitate SIMD
// implementation. The value is greater than (maximum possible intermediate
...
...
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