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
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Alexander Traud
Opus
Commits
53695789
Commit
53695789
authored
16 years ago
by
Jean-Marc Valin
Browse files
Options
Downloads
Patches
Plain Diff
better indexing in exp_rotation()
parent
884916fb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libcelt/bands.c
+12
-8
12 additions, 8 deletions
libcelt/bands.c
with
12 additions
and
8 deletions
libcelt/bands.c
+
12
−
8
View file @
53695789
...
...
@@ -46,6 +46,7 @@ void exp_rotation(celt_norm_t *X, int len, int dir, int stride, int iter)
{
int
i
,
k
;
celt_word16_t
c
,
s
;
celt_norm_t
*
Xptr
;
/* Equivalent to cos(.3) and sin(.3) */
c
=
QCONST16
(
0
.
95534
,
15
);
s
=
dir
*
QCONST16
(
0
.
29552
,
15
);
...
...
@@ -53,26 +54,29 @@ void exp_rotation(celt_norm_t *X, int len, int dir, int stride, int iter)
{
/* We could use MULT16_16_P15 instead of MULT16_16_Q15 for more accuracy,
but at this point, I really don't think it's necessary */
Xptr
=
X
;
for
(
i
=
0
;
i
<
len
-
stride
;
i
++
)
{
celt_norm_t
x1
,
x2
;
x1
=
X
[
i
];
x2
=
X
[
i
+
stride
];
X
[
i
]
=
MULT16_16_Q15
(
c
,
x
1
)
-
MULT16_16_Q15
(
s
,
x
2
);
X
[
i
+
stride
]
=
MULT16_16_Q15
(
c
,
x
2
)
+
MULT16_16_Q15
(
s
,
x
1
);
x1
=
X
ptr
[
0
];
x2
=
X
ptr
[
stride
];
X
ptr
[
stride
]
=
MULT16_16_Q15
(
c
,
x
2
)
+
MULT16_16_Q15
(
s
,
x
1
);
*
Xptr
++
=
MULT16_16_Q15
(
c
,
x
1
)
-
MULT16_16_Q15
(
s
,
x
2
);
}
Xptr
=
&
X
[
len
-
2
*
stride
-
1
];
for
(
i
=
len
-
2
*
stride
-
1
;
i
>=
0
;
i
--
)
{
celt_norm_t
x1
,
x2
;
x1
=
X
[
i
];
x2
=
X
[
i
+
stride
];
X
[
i
]
=
MULT16_16_Q15
(
c
,
x
1
)
-
MULT16_16_Q15
(
s
,
x
2
);
X
[
i
+
stride
]
=
MULT16_16_Q15
(
c
,
x
2
)
+
MULT16_16_Q15
(
s
,
x
1
);
x1
=
X
ptr
[
0
];
x2
=
X
ptr
[
stride
];
X
ptr
[
stride
]
=
MULT16_16_Q15
(
c
,
x
2
)
+
MULT16_16_Q15
(
s
,
x
1
);
*
Xptr
--
=
MULT16_16_Q15
(
c
,
x
1
)
-
MULT16_16_Q15
(
s
,
x
2
);
}
}
}
const
celt_word16_t
sqrtC_1
[
2
]
=
{
QCONST16
(
1
.
f
,
14
),
QCONST16
(
1
.
414214
f
,
14
)};
#ifdef FIXED_POINT
...
...
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