summaryrefslogtreecommitdiff
path: root/libavcodec/opus_pvq.c
diff options
context:
space:
mode:
authorRostislav Pehlivanov <atomnuker@gmail.com>2017-04-26 23:28:16 +0100
committerRostislav Pehlivanov <atomnuker@gmail.com>2017-04-26 23:54:21 +0100
commit18a0d9d7ad0292ce37f5262bda92ebfdd33bf31d (patch)
tree5517aabbd6ac0ff429585f6d165a3c70b64a5ee4 /libavcodec/opus_pvq.c
parent4d59de39915099c5646af773ff98909dbea31799 (diff)
downloadffmpeg-18a0d9d7ad0292ce37f5262bda92ebfdd33bf31d.tar.gz
opus_pvq: remove outdated/incorrect comments and redundant variables
Removes the last style issues with opus_pvq.c Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
Diffstat (limited to 'libavcodec/opus_pvq.c')
-rw-r--r--libavcodec/opus_pvq.c25
1 files changed, 7 insertions, 18 deletions
diff --git a/libavcodec/opus_pvq.c b/libavcodec/opus_pvq.c
index e37eccae16..d1091677ad 100644
--- a/libavcodec/opus_pvq.c
+++ b/libavcodec/opus_pvq.c
@@ -89,18 +89,16 @@ static void celt_exp_rotation_impl(float *X, uint32_t len, uint32_t stride,
Xptr = X;
for (i = 0; i < len - stride; i++) {
- float x1, x2;
- x1 = Xptr[0];
- x2 = Xptr[stride];
+ float x1 = Xptr[0];
+ float x2 = Xptr[stride];
Xptr[stride] = c * x2 + s * x1;
*Xptr++ = c * x1 - s * x2;
}
Xptr = &X[len - 2 * stride - 1];
for (i = len - 2 * stride - 1; i >= 0; i--) {
- float x1, x2;
- x1 = Xptr[0];
- x2 = Xptr[stride];
+ float x1 = Xptr[0];
+ float x2 = Xptr[stride];
Xptr[stride] = c * x2 + s * x1;
*Xptr-- = c * x1 - s * x2;
}
@@ -132,8 +130,6 @@ static inline void celt_exp_rotation(float *X, uint32_t len,
stride2++;
}
- /*NOTE: As a minor optimization, we could be passing around log2(B), not B, for both this and for
- extract_collapse_mask().*/
len /= stride;
for (i = 0; i < stride; i++) {
if (encode) {
@@ -150,17 +146,12 @@ static inline void celt_exp_rotation(float *X, uint32_t len,
static inline uint32_t celt_extract_collapse_mask(const int *iy, uint32_t N, uint32_t B)
{
- uint32_t collapse_mask;
- int N0;
- int i, j;
+ int i, j, N0 = N / B;
+ uint32_t collapse_mask = 0;
if (B <= 1)
return 1;
- /*NOTE: As a minor optimization, we could be passing around log2(B), not B, for both this and for
- exp_rotation().*/
- N0 = N/B;
- collapse_mask = 0;
for (i = 0; i < B; i++)
for (j = 0; j < N0; j++)
collapse_mask |= (!!iy[i*N0+j]) << i;
@@ -277,13 +268,11 @@ static inline uint32_t celt_icwrsi(uint32_t N, uint32_t K, const int *y)
static inline uint64_t celt_cwrsi(uint32_t N, uint32_t K, uint32_t i, int *y)
{
uint64_t norm = 0;
- uint32_t p;
+ uint32_t q, p;
int s, val;
int k0;
while (N > 2) {
- uint32_t q;
-
/*Lots of pulses case:*/
if (K >= N) {
const uint32_t *row = ff_celt_pvq_u_row[N];