Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Opus
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
Opus
Commits
020a0a48
Commit
020a0a48
authored
10 years ago
by
Timothy B. Terriberry
Browse files
Options
Downloads
Patches
Plain Diff
Fix build bustage from
c95c9a04
.
parent
c95c9a04
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
celt/celt_lpc.c
+2
-0
2 additions, 0 deletions
celt/celt_lpc.c
celt/pitch.h
+1
-1
1 addition, 1 deletion
celt/pitch.h
with
3 additions
and
1 deletion
celt/celt_lpc.c
+
2
−
0
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
];
...
...
This diff is collapsed.
Click to expand it.
celt/pitch.h
+
1
−
1
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))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment