Skip to content
GitLab
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
2a3f9947
Commit
2a3f9947
authored
Feb 08, 2016
by
Marco
Browse files
vp9-denoiser: Allow for checking skin for bsize <=32x32.
Change-Id: I6c99ac6fd3735e24cf668479c55bff313c0b4970
parent
f032c7ea
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/encoder/vp9_denoiser.c
View file @
2a3f9947
...
...
@@ -332,7 +332,7 @@ void vp9_denoiser_denoise(VP9_DENOISER *denoiser, MACROBLOCK *mb,
struct
buf_2d
src
=
mb
->
plane
[
0
].
src
;
int
is_skin
=
0
;
if
(
bs
<=
BLOCK_
16X16
&&
denoiser
->
denoising_level
>=
kDenLow
)
{
if
(
bs
<=
BLOCK_
32X32
&&
denoiser
->
denoising_level
>=
kDenLow
)
{
is_skin
=
vp9_compute_skin_block
(
mb
->
plane
[
0
].
src
.
buf
,
mb
->
plane
[
1
].
src
.
buf
,
mb
->
plane
[
2
].
src
.
buf
,
...
...
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