Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
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
9abda591
Commit
9abda591
authored
Dec 27, 2017
by
Linfeng Zhang
Browse files
Fix warnings: unused variable ‘plane_bsize’
Change-Id: I8e205e5b6310b345065200cfdac23f30badc3caa
parent
96fa7575
Changes
2
Hide whitespace changes
Inline
Side-by-side
av1/common/reconintra.c
View file @
9abda591
...
...
@@ -2315,6 +2315,7 @@ void av1_predict_intra_block_facade(const AV1_COMMON *cm, MACROBLOCKD *xd,
#if CONFIG_DEBUG
assert
(
is_cfl_allowed
(
mbmi
));
const
BLOCK_SIZE
plane_bsize
=
get_plane_block_size
(
mbmi
->
sb_type
,
pd
);
(
void
)
plane_bsize
;
assert
(
plane_bsize
<
BLOCK_SIZES_ALL
);
if
(
!
xd
->
lossless
[
mbmi
->
segment_id
])
{
assert
(
blk_col
==
0
);
...
...
av1/encoder/rdopt.c
View file @
9abda591
...
...
@@ -5403,6 +5403,7 @@ static int cfl_rd_pick_alpha(MACROBLOCK *const x, const AV1_COMP *const cpi,
assert(is_cfl_allowed(mbmi));
const BLOCK_SIZE plane_bsize =
get_plane_block_size(mbmi->sb_type, &xd->plane[AOM_PLANE_U]);
(void)plane_bsize;
assert(plane_bsize < BLOCK_SIZES_ALL);
if (!xd->lossless[mbmi->segment_id]) {
assert(block_size_wide[plane_bsize] == tx_size_wide[tx_size]);
...
...
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