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
Mark Harris
Opus
Commits
020a0a48
Commit
020a0a48
authored
Oct 03, 2014
by
Timothy B. Terriberry
Browse files
Fix build bustage from
c95c9a04
.
parent
c95c9a04
Changes
2
Hide whitespace changes
Inline
Side-by-side
celt/celt_lpc.c
View file @
020a0a48
...
...
@@ -114,6 +114,7 @@ void celt_fir_c(
for
(
i
=
0
;
i
<
ord
;
i
++
)
mem
[
i
]
=
_x
[
N
-
i
-
1
];
#ifdef SMALL_FOOTPRINT
(
void
)
arch
;
for
(
i
=
0
;
i
<
N
;
i
++
)
{
opus_val32
sum
=
SHL32
(
EXTEND32
(
_x
[
i
]),
SIG_SHIFT
);
...
...
@@ -154,6 +155,7 @@ void celt_iir(const opus_val32 *_x,
{
#ifdef SMALL_FOOTPRINT
int
i
,
j
;
(
void
)
arch
;
for
(
i
=
0
;
i
<
N
;
i
++
)
{
opus_val32
sum
=
_x
[
i
];
...
...
celt/pitch.h
View file @
020a0a48
...
...
@@ -193,7 +193,7 @@ void
# define celt_pitch_xcorr(_x, _y, xcorr, len, max_pitch, arch) \
((*CELT_PITCH_XCORR_IMPL[(arch)&OPUS_ARCHMASK])(_x, _y, \
xcorr, len, max_pitch
, arch
))
xcorr, len, max_pitch))
# else
# define celt_pitch_xcorr(_x, _y, xcorr, len, max_pitch, arch) \
((void)(arch),celt_pitch_xcorr_c(_x, _y, xcorr, len, max_pitch, arch))
...
...
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