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
Guillaume Martres
aom-rav1e
Commits
2f742187
Commit
2f742187
authored
Jun 27, 2014
by
Marco Paniconi
Committed by
Gerrit Code Review
Jun 27, 2014
Browse files
Merge "vp8: bugfix in postproc vp8_de_noise."
parents
a9a13ce9
21f8d6a1
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp8/common/postproc.c
View file @
2f742187
...
...
@@ -393,12 +393,12 @@ void vp8_de_noise(VP8_COMMON *cm,
int
low_var_thresh
,
int
flag
)
{
int
mbr
;
double
level
=
6.0e-05
*
q
*
q
*
q
-
.
0067
*
q
*
q
+
.
306
*
q
+
.
0065
;
int
ppl
=
(
int
)(
level
+
.
5
);
int
mb_rows
=
source
->
y_width
>>
4
;
int
mb_cols
=
source
->
y_height
>>
4
;
int
mb_rows
=
cm
->
mb_rows
;
int
mb_cols
=
cm
->
mb_cols
;
unsigned
char
*
limits
=
cm
->
pp_limits_buffer
;;
int
mbr
,
mbc
;
(
void
)
post
;
(
void
)
low_var_thresh
;
(
void
)
flag
;
...
...
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