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
b4ed1493
Commit
b4ed1493
authored
May 31, 2017
by
hui su
Committed by
Hui Su
Jun 01, 2017
Browse files
filter-intra: fix compiler warnings when cb4x4 is off
Change-Id: I995b1ba6b1dafeceb1e75a3d71d6630215a8df68
parent
749f5cd5
Changes
2
Hide whitespace changes
Inline
Side-by-side
av1/decoder/decodemv.c
View file @
b4ed1493
...
...
@@ -782,7 +782,10 @@ static void read_filter_intra_mode_info(AV1_COMMON *const cm,
xd
->
plane
[
1
].
subsampling_x
,
xd
->
plane
[
1
].
subsampling_y
))
return
;
#endif
#else
(
void
)
mi_row
;
(
void
)
mi_col
;
#endif // CONFIG_CB4X4
if
(
mbmi
->
uv_mode
==
DC_PRED
#if CONFIG_PALETTE
...
...
av1/encoder/bitstream.c
View file @
b4ed1493
...
...
@@ -1244,7 +1244,11 @@ static void write_filter_intra_mode_info(const AV1_COMMON *const cm,
xd
->
plane
[
1
].
subsampling_x
,
xd
->
plane
[
1
].
subsampling_y
))
return
;
#endif
#else
(
void
)
xd
;
(
void
)
mi_row
;
(
void
)
mi_col
;
#endif // CONFIG_CB4X4
if
(
mbmi
->
uv_mode
==
DC_PRED
#if CONFIG_PALETTE
...
...
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