Skip to content
GitLab
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
f93feec7
Commit
f93feec7
authored
Oct 11, 2017
by
Alexander Bokov
Committed by
Hui Su
Oct 11, 2017
Browse files
Fix the memory alignment issue in predict_skip_flag_8bit
BUG=aomedia:899 Change-Id: Ia216eb8a7b1ef21a2643055816eada98cfb5d41a
parent
c99a564a
Changes
1
Hide whitespace changes
Inline
Side-by-side
av1/encoder/rdopt.c
View file @
f93feec7
...
...
@@ -5356,7 +5356,7 @@ static int predict_skip_flag_8bit(const MACROBLOCK *x, BLOCK_SIZE bsize) {
const struct macroblock_plane *const p = &x->plane[0];
const int bw = block_size_wide[bsize];
const int bh = block_size_high[bsize];
tran_low_t DCT_coefs[32 * 32];
DECLARE_ALIGNED(32,
tran_low_t
,
DCT_coefs[32 * 32]
)
;
TxfmParam param;
param.tx_type = DCT_DCT;
#if CONFIG_RECT_TX && (CONFIG_EXT_TX || CONFIG_VAR_TX)
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment