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
Xiph.Org
aom-rav1e
Commits
ce70ad59
Commit
ce70ad59
authored
May 13, 2013
by
Dmitry Kovalev
Committed by
Gerrit Code Review
May 13, 2013
Browse files
Merge "Code cleanup inside vp9_firstpass.c." into experimental
parents
21498529
dc541805
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
vp9/common/vp9_common.h
View file @
ce70ad59
...
...
@@ -52,6 +52,10 @@ static INLINE int clamp(int value, int low, int high) {
return
value
<
low
?
low
:
(
value
>
high
?
high
:
value
);
}
static
INLINE
double
fclamp
(
double
value
,
double
low
,
double
high
)
{
return
value
<
low
?
low
:
(
value
>
high
?
high
:
value
);
}
static
INLINE
int
multiple16
(
int
value
)
{
return
(
value
+
15
)
&
~
15
;
}
...
...
vp9/encoder/vp9_firstpass.c
View file @
ce70ad59
This diff is collapsed.
Click to expand it.
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