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
65113f38
Commit
65113f38
authored
Apr 12, 2017
by
Jingning Han
Browse files
Fix cross tile buffer access in encoder process
BUG=aomedia:429 Change-Id: I9aef9ae0df86f7574342fc8e7424869d9b2fa1d2
parent
00491e0d
Changes
1
Hide whitespace changes
Inline
Side-by-side
av1/encoder/rdopt.c
View file @
65113f38
...
...
@@ -4913,8 +4913,10 @@ static void choose_intra_uv_mode(const AV1_COMP *const cpi, MACROBLOCK *const x,
*mode_uv = DC_PRED;
return;
}
BLOCK_SIZE bs = scale_chroma_bsize(bsize, x->e_mbd.plane[1].subsampling_x,
x->e_mbd.plane[1].subsampling_y);
rd_pick_intra_sbuv_mode(cpi, x, rate_uv, rate_uv_tokenonly, dist_uv, skip_uv,
bs
ize < BLOCK_8X8 ? BLOCK_8X8 : bsize
, max_tx_size);
bs, max_tx_size);
#endif // CONFIG_CHROMA_2X2
#else
rd_pick_intra_sbuv_mode(cpi, x, rate_uv, rate_uv_tokenonly, dist_uv, skip_uv,
...
...
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