Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
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
Options
Browse Files
Download
Email Patches
Plain Diff
Remove dead function
Change-Id: If6f25deface628dbc9bc1964a352ab1b8fed1227
parent
2ba7d206
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
4 deletions
+0
-4
aom_dsp/aom_dsp_common.h
aom_dsp/aom_dsp_common.h
+0
-4
No files found.
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