annotate qcelpdec.c @ 8145:f27d01aff4af libavcodec

More OKed parts of the QCELP decoder patch by Kenan Gillet, kenan.gillet gmail com
author vitor
date Fri, 14 Nov 2008 17:36:47 +0000
parents 3b5256153553
children 4da8fc62ae00
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8096
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
1 /*
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
2 * QCELP decoder
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
3 * Copyright (c) 2007 Reynaldo H. Verdejo Pinochet
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
4 *
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
5 * This file is part of FFmpeg.
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
6 *
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
7 * FFmpeg is free software; you can redistribute it and/or
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
8 * modify it under the terms of the GNU Lesser General Public
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
9 * License as published by the Free Software Foundation; either
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
10 * version 2.1 of the License, or (at your option) any later version.
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
11 *
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
12 * FFmpeg is distributed in the hope that it will be useful,
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
15 * Lesser General Public License for more details.
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
16 *
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
17 * You should have received a copy of the GNU Lesser General Public
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
18 * License along with FFmpeg; if not, write to the Free Software
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
20 */
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
21 /**
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
22 * @file qcelpdec.c
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
23 * QCELP decoder
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
24 * @author Reynaldo H. Verdejo Pinochet
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
25 */
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
26
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
27 #include <stddef.h>
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
28
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
29 #include "avcodec.h"
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
30 #include "bitstream.h"
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
31
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
32 #include "qcelp.h"
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
33 #include "qcelpdata.h"
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
34
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
35 #include "celp_math.h"
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
36 #include "celp_filters.h"
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
37
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
38 #undef NDEBUG
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
39 #include <assert.h>
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
40
8123
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
41 static void weighted_vector_sumf(float *out,
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
42 const float *in_a,
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
43 const float *in_b,
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
44 float weight_coeff_a,
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
45 float weight_coeff_b,
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
46 int length) {
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
47 int i;
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
48
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
49 for (i = 0; i < length; i++)
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
50 out[i] = weight_coeff_a * in_a[i]
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
51 + weight_coeff_b * in_b[i];
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
52 }
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
53
8096
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
54 /**
8145
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
55 * Initialize the speech codec according to the specification.
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
56 *
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
57 * TIA/EIA/IS-733 2.4.9
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
58 */
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
59 static av_cold int qcelp_decode_init(AVCodecContext *avctx) {
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
60 QCELPContext *q = avctx->priv_data;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
61 int i;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
62
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
63 avctx->sample_fmt = SAMPLE_FMT_FLT;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
64
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
65 for (i = 0; i < 10; i++)
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
66 q->prev_lspf[i] = (i + 1) / 11.;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
67
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
68 return 0;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
69 }
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
70
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
71 /**
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
72 * Computes the scaled codebook vector Cdn From INDEX and GAIN
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
73 * for all rates.
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
74 *
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
75 * The specification lacks some information here.
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
76 *
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
77 * TIA/EIA/IS-733 has an omission on the codebook index determination
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
78 * formula for RATE_FULL and RATE_HALF frames at section 2.4.8.1.1. It says
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
79 * you have to subtract the decoded index parameter from the given scaled
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
80 * codebook vector index 'n' to get the desired circular codebook index, but
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
81 * it does not mention that you have to clamp 'n' to [0-9] in order to get
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
82 * RI-compliant results.
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
83 *
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
84 * The reason for this mistake seems to be the fact they forgot to mention you
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
85 * have to do these calculations per codebook subframe and adjust given
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
86 * equation values accordingly.
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
87 *
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
88 * @param q the context
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
89 * @param gain array holding the 4 pitch subframe gain values
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
90 * @param cdn_vector array for the generated scaled codebook vector
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
91 */
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
92 static void compute_svector(const QCELPContext *q,
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
93 const float *gain,
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
94 float *cdn_vector) {
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
95 int i, j, k;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
96 uint16_t cbseed, cindex;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
97 float *rnd, tmp_gain, fir_filter_value;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
98
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
99 switch (q->framerate) {
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
100 case RATE_FULL:
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
101 for (i = 0; i < 16; i++) {
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
102 tmp_gain = gain[i] * QCELP_RATE_FULL_CODEBOOK_RATIO;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
103 cindex = -q->cindex[i];
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
104 for (j = 0; j < 10; j++)
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
105 *cdn_vector++ = tmp_gain * qcelp_rate_full_codebook[cindex++ & 127];
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
106 }
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
107 break;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
108 case RATE_HALF:
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
109 for (i = 0; i < 4; i++) {
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
110 tmp_gain = gain[i] * QCELP_RATE_HALF_CODEBOOK_RATIO;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
111 cindex = -q->cindex[i];
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
112 for (j = 0; j < 40; j++)
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
113 *cdn_vector++ = tmp_gain * qcelp_rate_half_codebook[cindex++ & 127];
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
114 }
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
115 break;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
116 case RATE_QUARTER:
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
117 cbseed = (0x0003 & q->lspv[4])<<14 |
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
118 (0x003F & q->lspv[3])<< 8 |
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
119 (0x0060 & q->lspv[2])<< 1 |
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
120 (0x0007 & q->lspv[1])<< 3 |
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
121 (0x0038 & q->lspv[0])>> 3 ;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
122 rnd = q->rnd_fir_filter_mem + 20;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
123 for (i = 0; i < 8; i++) {
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
124 tmp_gain = gain[i] * (QCELP_SQRT1887 / 32768.0);
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
125 for (k = 0; k < 20; k++) {
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
126 cbseed = 521 * cbseed + 259;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
127 *rnd = (int16_t)cbseed;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
128
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
129 // FIR filter
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
130 fir_filter_value = 0.0;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
131 for (j = 0; j < 10; j++)
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
132 fir_filter_value += qcelp_rnd_fir_coefs[j ] * (rnd[-j ] + rnd[-20+j]);
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
133 fir_filter_value += qcelp_rnd_fir_coefs[10] * rnd[-10];
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
134
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
135 *cdn_vector++ = tmp_gain * fir_filter_value;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
136 rnd++;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
137 }
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
138 }
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
139 memcpy(q->rnd_fir_filter_mem, q->rnd_fir_filter_mem + 160, 20 * sizeof(float));
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
140 break;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
141 case RATE_OCTAVE:
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
142 cbseed = q->first16bits;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
143 for (i = 0; i < 8; i++) {
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
144 tmp_gain = gain[i] * (QCELP_SQRT1887 / 32768.0);
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
145 for (j = 0; j < 20; j++) {
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
146 cbseed = 521 * cbseed + 259;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
147 *cdn_vector++ = tmp_gain * (int16_t)cbseed;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
148 }
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
149 }
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
150 break;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
151 case I_F_Q:
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
152 cbseed = -44; // random codebook index
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
153 for (i = 0; i < 4; i++) {
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
154 tmp_gain = gain[i] * QCELP_RATE_FULL_CODEBOOK_RATIO;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
155 for (j = 0; j < 40; j++)
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
156 *cdn_vector++ = tmp_gain * qcelp_rate_full_codebook[cbseed++ & 127];
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
157 }
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
158 break;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
159 }
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
160 }
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
161
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
162 /**
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
163 * Apply generic gain control.
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
164 *
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
165 * @param v_out output vector
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
166 * @param v_in gain-controlled vector
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
167 * @param v_ref vector to control gain of
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
168 *
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
169 * FIXME: If v_ref is a zero vector, it energy is zero
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
170 * and the behavior of the gain control is
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
171 * undefined in the specs.
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
172 *
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
173 * TIA/EIA/IS-733 2.4.8.3-2/3/4/5, 2.4.8.6
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
174 */
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
175 static void apply_gain_ctrl(float *v_out,
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
176 const float *v_ref,
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
177 const float *v_in) {
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
178 int i, j, len;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
179 float scalefactor;
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
180
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
181 for (i = 0, j = 0; i < 4; i++) {
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
182 scalefactor = ff_dot_productf(v_in + j, v_in + j, 40);
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
183 if (scalefactor)
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
184 scalefactor = sqrt(ff_dot_productf(v_ref + j, v_ref + j, 40) / scalefactor);
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
185 else
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
186 av_log_missing_feature(NULL, "Zero energy for gain control", 1);
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
187 for (len = j + 40; j < len; j++)
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
188 v_out[j] = scalefactor * v_in[j];
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
189 }
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
190 }
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
191
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
192 /**
8096
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
193 * Apply filter in pitch-subframe steps.
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
194 *
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
195 * @param memory buffer for the previous state of the filter
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
196 * - must be able to contain 303 elements
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
197 * - the 143 first elements are from the previous state
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
198 * - the next 160 are for output
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
199 * @param v_in input filter vector
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
200 * @param gain per-subframe gain array, each element is between 0.0 and 2.0
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
201 * @param lag per-subframe lag array, each element is
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
202 * - between 16 and 143 if its corresponding pfrac is 0,
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
203 * - between 16 and 139 otherwise
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
204 * @param pfrac per-subframe boolean array, 1 if the lag is fractional, 0 otherwise
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
205 *
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
206 * @return filter output vector
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
207 */
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
208 static const float *do_pitchfilter(float memory[303],
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
209 const float v_in[160],
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
210 const float gain[4],
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
211 const uint8_t *lag,
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
212 const uint8_t pfrac[4]) {
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
213 int i, j;
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
214 float *v_lag, *v_out;
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
215 const float *v_len;
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
216
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
217 v_out = memory + 143; // Output vector starts at memory[143].
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
218
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
219 for (i = 0; i < 4; i++)
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
220 if (gain[i]) {
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
221 v_lag = memory + 143 + 40 * i - lag[i];
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
222 for (v_len = v_in + 40; v_in < v_len; v_in++) {
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
223 if (pfrac[i]) { // If it is a fractional lag...
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
224 for (j = 0, *v_out = 0.; j < 4; j++)
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
225 *v_out += qcelp_hammsinc_table[j] * (v_lag[j-4] + v_lag[3-j]);
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
226 } else
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
227 *v_out = *v_lag;
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
228
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
229 *v_out = *v_in + gain[i] * *v_out;
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
230
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
231 v_lag++;
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
232 v_out++;
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
233 }
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
234 } else {
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
235 memcpy(v_out, v_in, 40 * sizeof(float));
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
236 v_in += 40;
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
237 v_out += 40;
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
238 }
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
239
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
240 memmove(memory, memory + 160, 143 * sizeof(float));
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
241 return memory + 143;
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
242 }
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
243
8127
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
244 /**
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
245 * Interpolates LSP frequencies and computes LPC coefficients
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
246 * for a given framerate & pitch subframe.
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
247 *
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
248 * TIA/EIA/IS-733 2.4.3.3.4
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
249 *
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
250 * @param q the context
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
251 * @param curr_lspf LSP frequencies vector of the current frame
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
252 * @param lpc float vector for the resulting LPC
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
253 * @param subframe_num frame number in decoded stream
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
254 */
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
255 void interpolate_lpc(QCELPContext *q,
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
256 const float *curr_lspf,
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
257 float *lpc,
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
258 const int subframe_num) {
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
259 float interpolated_lspf[10];
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
260 float weight;
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
261
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
262 if (q->framerate >= RATE_QUARTER) {
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
263 weight = 0.25 * (subframe_num + 1);
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
264 } else if (q->framerate == RATE_OCTAVE && !subframe_num) {
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
265 weight = 0.625;
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
266 } else {
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
267 weight = 1.0;
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
268 }
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
269
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
270 if (weight != 1.0) {
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
271 weighted_vector_sumf(interpolated_lspf, curr_lspf, q->prev_lspf, weight, 1.0 - weight, 10);
8145
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
272 qcelp_lspf2lpc(interpolated_lspf, lpc);
8127
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
273 } else if (q->framerate >= RATE_QUARTER || (q->framerate == I_F_Q && !subframe_num))
8145
f27d01aff4af More OKed parts of the QCELP decoder
vitor
parents: 8127
diff changeset
274 qcelp_lspf2lpc(curr_lspf, lpc);
8127
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
275 }
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
276
8123
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
277 static int buf_size2framerate(const int buf_size) {
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
278 switch (buf_size) {
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
279 case 35:
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
280 return RATE_FULL;
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
281 case 17:
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
282 return RATE_HALF;
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
283 case 8:
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
284 return RATE_QUARTER;
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
285 case 4:
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
286 return RATE_OCTAVE;
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
287 case 1:
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
288 return SILENCE;
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
289 }
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
290 return -1;
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
291 }
cd756806be02 More OKed parts of the QCELP decoder
vitor
parents: 8096
diff changeset
292
8096
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
293 static void warn_insufficient_frame_quality(AVCodecContext *avctx,
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
294 const char *message) {
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
295 av_log(avctx, AV_LOG_WARNING, "Frame #%d, IFQ: %s\n", avctx->frame_number, message);
eb55481f35fa OKed parts of the QCELP decoder
vitor
parents:
diff changeset
296 }
8127
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
297
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
298 AVCodec qcelp_decoder =
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
299 {
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
300 .name = "qcelp",
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
301 .type = CODEC_TYPE_AUDIO,
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
302 .id = CODEC_ID_QCELP,
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
303 .init = qcelp_decode_init,
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
304 .decode = qcelp_decode_frame,
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
305 .priv_data_size = sizeof(QCELPContext),
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
306 .long_name = NULL_IF_CONFIG_SMALL("QCELP / PureVoice"),
3b5256153553 More OKed parts of the QCELP decoder
vitor
parents: 8123
diff changeset
307 };