Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
dav1d
Commits
6fa9df9c
Commit
6fa9df9c
authored
Oct 24, 2018
by
Ronald S. Bultje
Committed by
Janne Grunau
Oct 24, 2018
Browse files
Add tile constraint to loopfilter mask fix-up code
Fixes #92.
parent
2e991b14
Pipeline
#1282
passed with stage
in 2 minutes and 30 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/lf_apply.c
View file @
6fa9df9c
...
...
@@ -163,7 +163,7 @@ void bytefn(dav1d_loopfilter_sbrow)(const Dav1dFrameContext *const f,
// fix lpf strength at tile col boundaries
const
uint8_t
*
lpf_y
=
&
f
->
lf
.
tx_lpf_right_edge
[
0
][
sby
<<
sbl2
];
const
uint8_t
*
lpf_uv
=
&
f
->
lf
.
tx_lpf_right_edge
[
1
][
sby
<<
(
sbl2
-
ss_ver
)];
for
(
int
tile_col
=
1
;;
tile_col
++
)
{
for
(
int
tile_col
=
1
;
tile_col
<
f
->
frame_hdr
.
tiling
.
cols
;
tile_col
++
)
{
x
=
f
->
frame_hdr
.
tiling
.
col_start_sb
[
tile_col
];
if
((
x
<<
sbl2
)
>=
f
->
bw
)
break
;
const
int
bx4
=
x
&
is_sb64
?
16
:
0
,
cbx4
=
bx4
>>
ss_hor
;
...
...
Ronald S. Bultje
@rbultje
mentioned in merge request
!236 (merged)
·
Oct 24, 2018
mentioned in merge request
!236 (merged)
mentioned in merge request !236
Toggle commit list
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