Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
aom-rav1e
Commits
5f22715c
Commit
5f22715c
authored
Dec 12, 2017
by
Yaowu Xu
Committed by
Cheng Chen
Dec 12, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compiler error when lpf_sb is on
Change-Id: I3801ba8ad8dc5229e95832e46753255ed536efba
parent
8265d70c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
av1/decoder/decodeframe.c
av1/decoder/decodeframe.c
+3
-6
No files found.
av1/decoder/decodeframe.c
View file @
5f22715c
...
...
@@ -2343,14 +2343,11 @@ static const uint8_t *decode_tiles(AV1Decoder *pbi, const uint8_t *data,
#endif // CONFIG_INTRABC && !CONFIG_LPF_SB
{
// Loopfilter the whole frame.
#if CONFIG_LPF_SB
av1_loop_filter_frame
(
get_frame_new_buffer
(
cm
),
cm
,
&
pbi
->
mb
,
cm
->
lf
.
filter_level
,
0
,
0
,
0
,
0
);
#else
#if !CONFIG_LPF_SB
#if CONFIG_OBU
if
(
endTile
==
cm
->
tile_rows
*
cm
->
tile_cols
-
1
)
#endif
#if CONFIG_LOOPFILTER_LEVEL
&& !CONFIG_LPF_SB
#if CONFIG_LOOPFILTER_LEVEL
if
(
cm
->
lf
.
filter_level
[
0
]
||
cm
->
lf
.
filter_level
[
1
])
{
av1_loop_filter_frame
(
get_frame_new_buffer
(
cm
),
cm
,
&
pbi
->
mb
,
cm
->
lf
.
filter_level
[
0
],
cm
->
lf
.
filter_level
[
1
],
0
,
...
...
@@ -2362,7 +2359,7 @@ static const uint8_t *decode_tiles(AV1Decoder *pbi, const uint8_t *data,
cm
->
lf
.
filter_level_v
,
cm
->
lf
.
filter_level_v
,
2
,
0
);
}
#el
if !CONFIG_LPF_SB
#el
se
av1_loop_filter_frame
(
get_frame_new_buffer
(
cm
),
cm
,
&
pbi
->
mb
,
cm
->
lf
.
filter_level
,
0
,
0
);
#endif // CONFIG_LOOPFILTER_LEVEL
...
...
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