Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
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
b55366df
Commit
b55366df
authored
Jan 02, 2018
by
Sebastien Alaiwan
Committed by
Frédéric BARBIER
Jan 02, 2018
Browse files
Remove dead function
Change-Id: If6f25deface628dbc9bc1964a352ab1b8fed1227
parent
2ba7d206
Changes
1
Hide whitespace changes
Inline
Side-by-side
aom_dsp/aom_dsp_common.h
View file @
b55366df
...
...
@@ -69,10 +69,6 @@ static INLINE int clamp(int value, int low, int high) {
return
value
<
low
?
low
:
(
value
>
high
?
high
:
value
);
}
static
INLINE
uint32_t
clamp32u
(
uint32_t
value
,
uint32_t
low
,
uint32_t
high
)
{
return
value
<
low
?
low
:
(
value
>
high
?
high
:
value
);
}
static
INLINE
int64_t
clamp64
(
int64_t
value
,
int64_t
low
,
int64_t
high
)
{
return
value
<
low
?
low
:
(
value
>
high
?
high
:
value
);
}
...
...
Write
Preview
Markdown
is supported
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