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
533dccd9
Commit
533dccd9
authored
Sep 25, 2018
by
Luc Trudeau
Browse files
Add rounding to Loop filter chroma vertical end
parent
48ccacc1
Pipeline
#481
passed with stage
in 49 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/lf_apply.c
View file @
533dccd9
...
...
@@ -249,7 +249,7 @@ void bytefn(dav1d_loopfilter_sbrow)(const Dav1dFrameContext *const f,
lflvl
[
x
].
filter_y
[
0
][
y
][
0
]
&=
~
mask
;
lflvl
[
x
].
filter_y
[
0
][
y
][
imin
(
idx
,
lpf_y
[
y
-
starty4
])]
|=
mask
;
}
for
(
int
y
=
starty4
>>
ss_ver
;
y
<
(
endy4
>>
ss_ver
);
y
++
)
{
for
(
int
y
=
starty4
>>
ss_ver
;
y
<
(
(
endy4
+
ss_ver
)
>>
ss_ver
);
y
++
)
{
const
int
idx
=
!!
(
lflvl
[
x
].
filter_uv
[
0
][
y
][
1
]
&
uv_mask
);
lflvl
[
x
].
filter_uv
[
0
][
y
][
1
]
&=
~
uv_mask
;
lflvl
[
x
].
filter_uv
[
0
][
y
][
0
]
&=
~
uv_mask
;
...
...
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