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
c01cc430
Commit
c01cc430
authored
Sep 27, 2017
by
Zoe Liu
Browse files
Fix compiler error when convolve-round is off
Change-Id: I7dcce8c84d1a16b8b894d4292d77ae368dc44b6a
parent
3ab20b45
Changes
1
Hide whitespace changes
Inline
Side-by-side
av1/common/reconinter.c
View file @
c01cc430
...
...
@@ -995,7 +995,6 @@ void av1_make_masked_inter_predictor(const uint8_t *pre, int pre_stride,
#endif
DECLARE_ALIGNED
(
16
,
uint8_t
,
tmp_buf
[
INTER_PRED_BYTES_PER_PIXEL
*
MAX_SB_SQUARE
]);
const
int
tmp_buf_stride
=
MAX_SB_SIZE
;
#undef INTER_PRED_BYTES_PER_PIXEL
#if CONFIG_HIGHBITDEPTH
...
...
@@ -1009,6 +1008,7 @@ void av1_make_masked_inter_predictor(const uint8_t *pre, int pre_stride,
#endif
#if CONFIG_CONVOLVE_ROUND
const
int
tmp_buf_stride
=
MAX_SB_SIZE
;
const
int
is_conv_no_round
=
conv_params
->
round
==
CONVOLVE_OPT_NO_ROUND
;
CONV_BUF_TYPE
*
org_dst
=
conv_params
->
dst
;
int
org_dst_stride
=
conv_params
->
dst_stride
;
...
...
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