00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #include "avcodec.h"
00023 #include "get_bits.h"
00024 #include "dsputil.h"
00025 #include "fft.h"
00026 #include "lsp.h"
00027
00028 #include <math.h>
00029 #include <stdint.h>
00030
00031 #include "twinvq_data.h"
00032
00033 enum FrameType {
00034 FT_SHORT = 0,
00035 FT_MEDIUM,
00036 FT_LONG,
00037 FT_PPC,
00038 };
00039
00043 struct FrameMode {
00044 uint8_t sub;
00045 const uint16_t *bark_tab;
00046
00048 uint8_t bark_env_size;
00049
00050 const int16_t *bark_cb;
00051 uint8_t bark_n_coef;
00052 uint8_t bark_n_bit;
00053
00055
00056 const int16_t *cb0;
00057 const int16_t *cb1;
00059
00060 uint8_t cb_len_read;
00061 };
00062
00067 typedef struct {
00068 struct FrameMode fmode[3];
00069
00070 uint16_t size;
00071 uint8_t n_lsp;
00072 const float *lspcodebook;
00073
00074
00075 uint8_t lsp_bit0;
00076 uint8_t lsp_bit1;
00077 uint8_t lsp_bit2;
00078
00079 uint8_t lsp_split;
00080 const int16_t *ppc_shape_cb;
00081
00083 uint8_t ppc_period_bit;
00084
00085 uint8_t ppc_shape_bit;
00086 uint8_t ppc_shape_len;
00087 uint8_t pgain_bit;
00088
00090 uint16_t peak_per2wid;
00091 } ModeTab;
00092
00093 static const ModeTab mode_08_08 = {
00094 {
00095 { 8, bark_tab_s08_64, 10, tab.fcb08s , 1, 5, tab.cb0808s0, tab.cb0808s1, 18},
00096 { 2, bark_tab_m08_256, 20, tab.fcb08m , 2, 5, tab.cb0808m0, tab.cb0808m1, 16},
00097 { 1, bark_tab_l08_512, 30, tab.fcb08l , 3, 6, tab.cb0808l0, tab.cb0808l1, 17}
00098 },
00099 512 , 12, tab.lsp08, 1, 5, 3, 3, tab.shape08 , 8, 28, 20, 6, 40
00100 };
00101
00102 static const ModeTab mode_11_08 = {
00103 {
00104 { 8, bark_tab_s11_64, 10, tab.fcb11s , 1, 5, tab.cb1108s0, tab.cb1108s1, 29},
00105 { 2, bark_tab_m11_256, 20, tab.fcb11m , 2, 5, tab.cb1108m0, tab.cb1108m1, 24},
00106 { 1, bark_tab_l11_512, 30, tab.fcb11l , 3, 6, tab.cb1108l0, tab.cb1108l1, 27}
00107 },
00108 512 , 16, tab.lsp11, 1, 6, 4, 3, tab.shape11 , 9, 36, 30, 7, 90
00109 };
00110
00111 static const ModeTab mode_11_10 = {
00112 {
00113 { 8, bark_tab_s11_64, 10, tab.fcb11s , 1, 5, tab.cb1110s0, tab.cb1110s1, 21},
00114 { 2, bark_tab_m11_256, 20, tab.fcb11m , 2, 5, tab.cb1110m0, tab.cb1110m1, 18},
00115 { 1, bark_tab_l11_512, 30, tab.fcb11l , 3, 6, tab.cb1110l0, tab.cb1110l1, 20}
00116 },
00117 512 , 16, tab.lsp11, 1, 6, 4, 3, tab.shape11 , 9, 36, 30, 7, 90
00118 };
00119
00120 static const ModeTab mode_16_16 = {
00121 {
00122 { 8, bark_tab_s16_128, 10, tab.fcb16s , 1, 5, tab.cb1616s0, tab.cb1616s1, 16},
00123 { 2, bark_tab_m16_512, 20, tab.fcb16m , 2, 5, tab.cb1616m0, tab.cb1616m1, 15},
00124 { 1, bark_tab_l16_1024,30, tab.fcb16l , 3, 6, tab.cb1616l0, tab.cb1616l1, 16}
00125 },
00126 1024, 16, tab.lsp16, 1, 6, 4, 3, tab.shape16 , 9, 56, 60, 7, 180
00127 };
00128
00129 static const ModeTab mode_22_20 = {
00130 {
00131 { 8, bark_tab_s22_128, 10, tab.fcb22s_1, 1, 6, tab.cb2220s0, tab.cb2220s1, 18},
00132 { 2, bark_tab_m22_512, 20, tab.fcb22m_1, 2, 6, tab.cb2220m0, tab.cb2220m1, 17},
00133 { 1, bark_tab_l22_1024,32, tab.fcb22l_1, 4, 6, tab.cb2220l0, tab.cb2220l1, 18}
00134 },
00135 1024, 16, tab.lsp22_1, 1, 6, 4, 3, tab.shape22_1, 9, 56, 36, 7, 144
00136 };
00137
00138 static const ModeTab mode_22_24 = {
00139 {
00140 { 8, bark_tab_s22_128, 10, tab.fcb22s_1, 1, 6, tab.cb2224s0, tab.cb2224s1, 15},
00141 { 2, bark_tab_m22_512, 20, tab.fcb22m_1, 2, 6, tab.cb2224m0, tab.cb2224m1, 14},
00142 { 1, bark_tab_l22_1024,32, tab.fcb22l_1, 4, 6, tab.cb2224l0, tab.cb2224l1, 15}
00143 },
00144 1024, 16, tab.lsp22_1, 1, 6, 4, 3, tab.shape22_1, 9, 56, 36, 7, 144
00145 };
00146
00147 static const ModeTab mode_22_32 = {
00148 {
00149 { 4, bark_tab_s22_128, 10, tab.fcb22s_2, 1, 6, tab.cb2232s0, tab.cb2232s1, 11},
00150 { 2, bark_tab_m22_256, 20, tab.fcb22m_2, 2, 6, tab.cb2232m0, tab.cb2232m1, 11},
00151 { 1, bark_tab_l22_512, 32, tab.fcb22l_2, 4, 6, tab.cb2232l0, tab.cb2232l1, 12}
00152 },
00153 512 , 16, tab.lsp22_2, 1, 6, 4, 4, tab.shape22_2, 9, 56, 36, 7, 72
00154 };
00155
00156 static const ModeTab mode_44_40 = {
00157 {
00158 {16, bark_tab_s44_128, 10, tab.fcb44s , 1, 6, tab.cb4440s0, tab.cb4440s1, 18},
00159 { 4, bark_tab_m44_512, 20, tab.fcb44m , 2, 6, tab.cb4440m0, tab.cb4440m1, 17},
00160 { 1, bark_tab_l44_2048,40, tab.fcb44l , 4, 6, tab.cb4440l0, tab.cb4440l1, 17}
00161 },
00162 2048, 20, tab.lsp44, 1, 6, 4, 4, tab.shape44 , 9, 84, 54, 7, 432
00163 };
00164
00165 static const ModeTab mode_44_48 = {
00166 {
00167 {16, bark_tab_s44_128, 10, tab.fcb44s , 1, 6, tab.cb4448s0, tab.cb4448s1, 15},
00168 { 4, bark_tab_m44_512, 20, tab.fcb44m , 2, 6, tab.cb4448m0, tab.cb4448m1, 14},
00169 { 1, bark_tab_l44_2048,40, tab.fcb44l , 4, 6, tab.cb4448l0, tab.cb4448l1, 14}
00170 },
00171 2048, 20, tab.lsp44, 1, 6, 4, 4, tab.shape44 , 9, 84, 54, 7, 432
00172 };
00173
00174 typedef struct TwinContext {
00175 AVCodecContext *avctx;
00176 DSPContext dsp;
00177 FFTContext mdct_ctx[3];
00178
00179 const ModeTab *mtab;
00180
00181
00182 float lsp_hist[2][20];
00183 float bark_hist[3][2][40];
00184
00185
00186 int16_t permut[4][4096];
00187 uint8_t length[4][2];
00188 uint8_t length_change[4];
00189 uint8_t bits_main_spec[2][4][2];
00190 int bits_main_spec_change[4];
00191 int n_div[4];
00192
00193 float *spectrum;
00194 float *curr_frame;
00195 float *prev_frame;
00196 int last_block_pos[2];
00197
00198 float *cos_tabs[3];
00199
00200
00201 float *tmp_buf;
00202 } TwinContext;
00203
00204 #define PPC_SHAPE_CB_SIZE 64
00205 #define PPC_SHAPE_LEN_MAX 60
00206 #define SUB_AMP_MAX 4500.0
00207 #define MULAW_MU 100.0
00208 #define GAIN_BITS 8
00209 #define AMP_MAX 13000.0
00210 #define SUB_GAIN_BITS 5
00211 #define WINDOW_TYPE_BITS 4
00212 #define PGAIN_MU 200
00213 #define LSP_COEFS_MAX 20
00214 #define LSP_SPLIT_MAX 4
00215 #define CHANNELS_MAX 2
00216 #define SUBBLOCKS_MAX 16
00217 #define BARK_N_COEF_MAX 4
00218
00220 static void memset_float(float *buf, float val, int size)
00221 {
00222 while (size--)
00223 *buf++ = val;
00224 }
00225
00238 static float eval_lpc_spectrum(const float *lsp, float cos_val, int order)
00239 {
00240 int j;
00241 float p = 0.5f;
00242 float q = 0.5f;
00243 float two_cos_w = 2.0f*cos_val;
00244
00245 for (j = 0; j + 1 < order; j += 2*2) {
00246
00247 q *= lsp[j ] - two_cos_w;
00248 p *= lsp[j+1] - two_cos_w;
00249
00250 q *= lsp[j+2] - two_cos_w;
00251 p *= lsp[j+3] - two_cos_w;
00252 }
00253
00254 p *= p * (2.0f - two_cos_w);
00255 q *= q * (2.0f + two_cos_w);
00256
00257 return 0.5 / (p + q);
00258 }
00259
00263 static void eval_lpcenv(TwinContext *tctx, const float *cos_vals, float *lpc)
00264 {
00265 int i;
00266 const ModeTab *mtab = tctx->mtab;
00267 int size_s = mtab->size / mtab->fmode[FT_SHORT].sub;
00268
00269 for (i = 0; i < size_s/2; i++) {
00270 float cos_i = tctx->cos_tabs[0][i];
00271 lpc[i] = eval_lpc_spectrum(cos_vals, cos_i, mtab->n_lsp);
00272 lpc[size_s-i-1] = eval_lpc_spectrum(cos_vals, -cos_i, mtab->n_lsp);
00273 }
00274 }
00275
00276 static void interpolate(float *out, float v1, float v2, int size)
00277 {
00278 int i;
00279 float step = (v1 - v2)/(size + 1);
00280
00281 for (i = 0; i < size; i++) {
00282 v2 += step;
00283 out[i] = v2;
00284 }
00285 }
00286
00287 static inline float get_cos(int idx, int part, const float *cos_tab, int size)
00288 {
00289 return part ? -cos_tab[size - idx - 1] :
00290 cos_tab[ idx ];
00291 }
00292
00307 static inline void eval_lpcenv_or_interp(TwinContext *tctx,
00308 enum FrameType ftype,
00309 float *out, const float *in,
00310 int size, int step, int part)
00311 {
00312 int i;
00313 const ModeTab *mtab = tctx->mtab;
00314 const float *cos_tab = tctx->cos_tabs[ftype];
00315
00316
00317 for (i = 0; i < size; i += step)
00318 out[i] =
00319 eval_lpc_spectrum(in,
00320 get_cos(i, part, cos_tab, size),
00321 mtab->n_lsp);
00322
00323
00324 for (i = step; i <= size - 2*step; i += step) {
00325 if (out[i + step] + out[i - step] > 1.95*out[i] ||
00326 out[i + step] >= out[i - step]) {
00327 interpolate(out + i - step + 1, out[i], out[i-step], step - 1);
00328 } else {
00329 out[i - step/2] =
00330 eval_lpc_spectrum(in,
00331 get_cos(i-step/2, part, cos_tab, size),
00332 mtab->n_lsp);
00333 interpolate(out + i - step + 1, out[i-step/2], out[i-step ], step/2 - 1);
00334 interpolate(out + i - step/2 + 1, out[i ], out[i-step/2], step/2 - 1);
00335 }
00336 }
00337
00338 interpolate(out + size - 2*step + 1, out[size-step], out[size - 2*step], step - 1);
00339 }
00340
00341 static void eval_lpcenv_2parts(TwinContext *tctx, enum FrameType ftype,
00342 const float *buf, float *lpc,
00343 int size, int step)
00344 {
00345 eval_lpcenv_or_interp(tctx, ftype, lpc , buf, size/2, step, 0);
00346 eval_lpcenv_or_interp(tctx, ftype, lpc + size/2, buf, size/2, 2*step, 1);
00347
00348 interpolate(lpc+size/2-step+1, lpc[size/2], lpc[size/2-step], step);
00349
00350 memset_float(lpc + size - 2*step + 1, lpc[size - 2*step], 2*step - 1);
00351 }
00352
00358 static void dequant(TwinContext *tctx, GetBitContext *gb, float *out,
00359 enum FrameType ftype,
00360 const int16_t *cb0, const int16_t *cb1, int cb_len)
00361 {
00362 int pos = 0;
00363 int i, j;
00364
00365 for (i = 0; i < tctx->n_div[ftype]; i++) {
00366 int tmp0, tmp1;
00367 int sign0 = 1;
00368 int sign1 = 1;
00369 const int16_t *tab0, *tab1;
00370 int length = tctx->length[ftype][i >= tctx->length_change[ftype]];
00371 int bitstream_second_part = (i >= tctx->bits_main_spec_change[ftype]);
00372
00373 int bits = tctx->bits_main_spec[0][ftype][bitstream_second_part];
00374 if (bits == 7) {
00375 if (get_bits1(gb))
00376 sign0 = -1;
00377 bits = 6;
00378 }
00379 tmp0 = get_bits(gb, bits);
00380
00381 bits = tctx->bits_main_spec[1][ftype][bitstream_second_part];
00382
00383 if (bits == 7) {
00384 if (get_bits1(gb))
00385 sign1 = -1;
00386
00387 bits = 6;
00388 }
00389 tmp1 = get_bits(gb, bits);
00390
00391 tab0 = cb0 + tmp0*cb_len;
00392 tab1 = cb1 + tmp1*cb_len;
00393
00394 for (j = 0; j < length; j++)
00395 out[tctx->permut[ftype][pos+j]] = sign0*tab0[j] + sign1*tab1[j];
00396
00397 pos += length;
00398 }
00399
00400 }
00401
00402 static inline float mulawinv(float y, float clip, float mu)
00403 {
00404 y = av_clipf(y/clip, -1, 1);
00405 return clip * FFSIGN(y) * (exp(log(1+mu) * fabs(y)) - 1) / mu;
00406 }
00407
00428 static int very_broken_op(int a, int b)
00429 {
00430 int x = a*b + 200;
00431 int size;
00432 const uint8_t *rtab;
00433
00434 if (x%400 || b%5)
00435 return x/400;
00436
00437 x /= 400;
00438
00439 size = tabs[b/5].size;
00440 rtab = tabs[b/5].tab;
00441 return x - rtab[size*av_log2(2*(x - 1)/size)+(x - 1)%size];
00442 }
00443
00449 static void add_peak(int period, int width, const float *shape,
00450 float ppc_gain, float *speech, int len)
00451 {
00452 int i, j;
00453
00454 const float *shape_end = shape + len;
00455 int center;
00456
00457
00458 for (i = 0; i < width/2; i++)
00459 speech[i] += ppc_gain * *shape++;
00460
00461 for (i = 1; i < ROUNDED_DIV(len,width) ; i++) {
00462 center = very_broken_op(period, i);
00463 for (j = -width/2; j < (width+1)/2; j++)
00464 speech[j+center] += ppc_gain * *shape++;
00465 }
00466
00467
00468 center = very_broken_op(period, i);
00469 for (j = -width/2; j < (width + 1)/2 && shape < shape_end; j++)
00470 speech[j+center] += ppc_gain * *shape++;
00471 }
00472
00473 static void decode_ppc(TwinContext *tctx, int period_coef, const float *shape,
00474 float ppc_gain, float *speech)
00475 {
00476 const ModeTab *mtab = tctx->mtab;
00477 int isampf = tctx->avctx->sample_rate/1000;
00478 int ibps = tctx->avctx->bit_rate/(1000 * tctx->avctx->channels);
00479 int min_period = ROUNDED_DIV( 40*2*mtab->size, isampf);
00480 int max_period = ROUNDED_DIV(6*40*2*mtab->size, isampf);
00481 int period_range = max_period - min_period;
00482
00483
00484
00485 int period = min_period +
00486 ROUNDED_DIV(period_coef*period_range, (1 << mtab->ppc_period_bit) - 1);
00487 int width;
00488
00489 if (isampf == 22 && ibps == 32) {
00490
00491 width = ROUNDED_DIV((period + 800)* mtab->peak_per2wid, 400*mtab->size);
00492 } else
00493 width = (period )* mtab->peak_per2wid/(400*mtab->size);
00494
00495 add_peak(period, width, shape, ppc_gain, speech, mtab->ppc_shape_len);
00496 }
00497
00498 static void dec_gain(TwinContext *tctx, GetBitContext *gb, enum FrameType ftype,
00499 float *out)
00500 {
00501 const ModeTab *mtab = tctx->mtab;
00502 int i, j;
00503 int sub = mtab->fmode[ftype].sub;
00504 float step = AMP_MAX / ((1 << GAIN_BITS) - 1);
00505 float sub_step = SUB_AMP_MAX / ((1 << SUB_GAIN_BITS) - 1);
00506
00507 if (ftype == FT_LONG) {
00508 for (i = 0; i < tctx->avctx->channels; i++)
00509 out[i] = (1./(1<<13)) *
00510 mulawinv(step * 0.5 + step * get_bits(gb, GAIN_BITS),
00511 AMP_MAX, MULAW_MU);
00512 } else {
00513 for (i = 0; i < tctx->avctx->channels; i++) {
00514 float val = (1./(1<<23)) *
00515 mulawinv(step * 0.5 + step * get_bits(gb, GAIN_BITS),
00516 AMP_MAX, MULAW_MU);
00517
00518 for (j = 0; j < sub; j++) {
00519 out[i*sub + j] =
00520 val*mulawinv(sub_step* 0.5 +
00521 sub_step* get_bits(gb, SUB_GAIN_BITS),
00522 SUB_AMP_MAX, MULAW_MU);
00523 }
00524 }
00525 }
00526 }
00527
00534 static void rearrange_lsp(int order, float *lsp, float min_dist)
00535 {
00536 int i;
00537 float min_dist2 = min_dist * 0.5;
00538 for (i = 1; i < order; i++)
00539 if (lsp[i] - lsp[i-1] < min_dist) {
00540 float avg = (lsp[i] + lsp[i-1]) * 0.5;
00541
00542 lsp[i-1] = avg - min_dist2;
00543 lsp[i ] = avg + min_dist2;
00544 }
00545 }
00546
00547 static void decode_lsp(TwinContext *tctx, int lpc_idx1, uint8_t *lpc_idx2,
00548 int lpc_hist_idx, float *lsp, float *hist)
00549 {
00550 const ModeTab *mtab = tctx->mtab;
00551 int i, j;
00552
00553 const float *cb = mtab->lspcodebook;
00554 const float *cb2 = cb + (1 << mtab->lsp_bit1)*mtab->n_lsp;
00555 const float *cb3 = cb2 + (1 << mtab->lsp_bit2)*mtab->n_lsp;
00556
00557 const int8_t funny_rounding[4] = {
00558 -2,
00559 mtab->lsp_split == 4 ? -2 : 1,
00560 mtab->lsp_split == 4 ? -2 : 1,
00561 0
00562 };
00563
00564 j = 0;
00565 for (i = 0; i < mtab->lsp_split; i++) {
00566 int chunk_end = ((i + 1)*mtab->n_lsp + funny_rounding[i])/mtab->lsp_split;
00567 for (; j < chunk_end; j++)
00568 lsp[j] = cb [lpc_idx1 * mtab->n_lsp + j] +
00569 cb2[lpc_idx2[i] * mtab->n_lsp + j];
00570 }
00571
00572 rearrange_lsp(mtab->n_lsp, lsp, 0.0001);
00573
00574 for (i = 0; i < mtab->n_lsp; i++) {
00575 float tmp1 = 1. - cb3[lpc_hist_idx*mtab->n_lsp + i];
00576 float tmp2 = hist[i] * cb3[lpc_hist_idx*mtab->n_lsp + i];
00577 hist[i] = lsp[i];
00578 lsp[i] = lsp[i] * tmp1 + tmp2;
00579 }
00580
00581 rearrange_lsp(mtab->n_lsp, lsp, 0.0001);
00582 rearrange_lsp(mtab->n_lsp, lsp, 0.000095);
00583 ff_sort_nearly_sorted_floats(lsp, mtab->n_lsp);
00584 }
00585
00586 static void dec_lpc_spectrum_inv(TwinContext *tctx, float *lsp,
00587 enum FrameType ftype, float *lpc)
00588 {
00589 int i;
00590 int size = tctx->mtab->size / tctx->mtab->fmode[ftype].sub;
00591
00592 for (i = 0; i < tctx->mtab->n_lsp; i++)
00593 lsp[i] = 2*cos(lsp[i]);
00594
00595 switch (ftype) {
00596 case FT_LONG:
00597 eval_lpcenv_2parts(tctx, ftype, lsp, lpc, size, 8);
00598 break;
00599 case FT_MEDIUM:
00600 eval_lpcenv_2parts(tctx, ftype, lsp, lpc, size, 2);
00601 break;
00602 case FT_SHORT:
00603 eval_lpcenv(tctx, lsp, lpc);
00604 break;
00605 }
00606 }
00607
00608 static void imdct_and_window(TwinContext *tctx, enum FrameType ftype, int wtype,
00609 float *in, float *prev, int ch)
00610 {
00611 const ModeTab *mtab = tctx->mtab;
00612 int bsize = mtab->size / mtab->fmode[ftype].sub;
00613 int size = mtab->size;
00614 float *buf1 = tctx->tmp_buf;
00615 int j;
00616 int wsize;
00617 float *out = tctx->curr_frame + 2*ch*mtab->size;
00618 float *out2 = out;
00619 float *prev_buf;
00620 int first_wsize;
00621
00622 static const uint8_t wtype_to_wsize[] = {0, 0, 2, 2, 2, 1, 0, 1, 1};
00623 int types_sizes[] = {
00624 mtab->size / mtab->fmode[FT_LONG ].sub,
00625 mtab->size / mtab->fmode[FT_MEDIUM].sub,
00626 mtab->size / (2*mtab->fmode[FT_SHORT ].sub),
00627 };
00628
00629 wsize = types_sizes[wtype_to_wsize[wtype]];
00630 first_wsize = wsize;
00631 prev_buf = prev + (size - bsize)/2;
00632
00633 for (j = 0; j < mtab->fmode[ftype].sub; j++) {
00634 int sub_wtype = ftype == FT_MEDIUM ? 8 : wtype;
00635
00636 if (!j && wtype == 4)
00637 sub_wtype = 4;
00638 else if (j == mtab->fmode[ftype].sub-1 && wtype == 7)
00639 sub_wtype = 7;
00640
00641 wsize = types_sizes[wtype_to_wsize[sub_wtype]];
00642
00643 ff_imdct_half(&tctx->mdct_ctx[ftype], buf1 + bsize*j, in + bsize*j);
00644
00645 tctx->dsp.vector_fmul_window(out2,
00646 prev_buf + (bsize-wsize)/2,
00647 buf1 + bsize*j,
00648 ff_sine_windows[av_log2(wsize)],
00649 0.0,
00650 wsize/2);
00651 out2 += wsize;
00652
00653 memcpy(out2, buf1 + bsize*j + wsize/2, (bsize - wsize/2)*sizeof(float));
00654
00655 out2 += ftype == FT_MEDIUM ? (bsize-wsize)/2 : bsize - wsize;
00656
00657 prev_buf = buf1 + bsize*j + bsize/2;
00658 }
00659
00660 tctx->last_block_pos[ch] = (size + first_wsize)/2;
00661 }
00662
00663 static void imdct_output(TwinContext *tctx, enum FrameType ftype, int wtype,
00664 float *out)
00665 {
00666 const ModeTab *mtab = tctx->mtab;
00667 float *prev_buf = tctx->prev_frame + tctx->last_block_pos[0];
00668 int i, j;
00669
00670 for (i = 0; i < tctx->avctx->channels; i++) {
00671 imdct_and_window(tctx, ftype, wtype,
00672 tctx->spectrum + i*mtab->size,
00673 prev_buf + 2*i*mtab->size,
00674 i);
00675 }
00676
00677 if (tctx->avctx->channels == 2) {
00678 for (i = 0; i < mtab->size - tctx->last_block_pos[0]; i++) {
00679 float f1 = prev_buf[ i];
00680 float f2 = prev_buf[2*mtab->size + i];
00681 out[2*i ] = f1 + f2;
00682 out[2*i + 1] = f1 - f2;
00683 }
00684 for (j = 0; i < mtab->size; j++,i++) {
00685 float f1 = tctx->curr_frame[ j];
00686 float f2 = tctx->curr_frame[2*mtab->size + j];
00687 out[2*i ] = f1 + f2;
00688 out[2*i + 1] = f1 - f2;
00689 }
00690 } else {
00691 memcpy(out, prev_buf,
00692 (mtab->size - tctx->last_block_pos[0]) * sizeof(*out));
00693
00694 out += mtab->size - tctx->last_block_pos[0];
00695
00696 memcpy(out, tctx->curr_frame,
00697 (tctx->last_block_pos[0]) * sizeof(*out));
00698 }
00699
00700 }
00701
00702 static void dec_bark_env(TwinContext *tctx, const uint8_t *in, int use_hist,
00703 int ch, float *out, float gain, enum FrameType ftype)
00704 {
00705 const ModeTab *mtab = tctx->mtab;
00706 int i,j;
00707 float *hist = tctx->bark_hist[ftype][ch];
00708 float val = ((const float []) {0.4, 0.35, 0.28})[ftype];
00709 int bark_n_coef = mtab->fmode[ftype].bark_n_coef;
00710 int fw_cb_len = mtab->fmode[ftype].bark_env_size / bark_n_coef;
00711 int idx = 0;
00712
00713 for (i = 0; i < fw_cb_len; i++)
00714 for (j = 0; j < bark_n_coef; j++, idx++) {
00715 float tmp2 =
00716 mtab->fmode[ftype].bark_cb[fw_cb_len*in[j] + i] * (1./4096);
00717 float st = use_hist ?
00718 (1. - val) * tmp2 + val*hist[idx] + 1. : tmp2 + 1.;
00719
00720 hist[idx] = tmp2;
00721 if (st < -1.) st = 1.;
00722
00723 memset_float(out, st * gain, mtab->fmode[ftype].bark_tab[idx]);
00724 out += mtab->fmode[ftype].bark_tab[idx];
00725 }
00726
00727 }
00728
00729 static void read_and_decode_spectrum(TwinContext *tctx, GetBitContext *gb,
00730 float *out, enum FrameType ftype)
00731 {
00732 const ModeTab *mtab = tctx->mtab;
00733 int channels = tctx->avctx->channels;
00734 int sub = mtab->fmode[ftype].sub;
00735 int block_size = mtab->size / sub;
00736 float gain[CHANNELS_MAX*SUBBLOCKS_MAX];
00737 float ppc_shape[PPC_SHAPE_LEN_MAX * CHANNELS_MAX * 4];
00738 uint8_t bark1[CHANNELS_MAX][SUBBLOCKS_MAX][BARK_N_COEF_MAX];
00739 uint8_t bark_use_hist[CHANNELS_MAX][SUBBLOCKS_MAX];
00740
00741 uint8_t lpc_idx1[CHANNELS_MAX];
00742 uint8_t lpc_idx2[CHANNELS_MAX][LSP_SPLIT_MAX];
00743 uint8_t lpc_hist_idx[CHANNELS_MAX];
00744
00745 int i, j, k;
00746
00747 dequant(tctx, gb, out, ftype,
00748 mtab->fmode[ftype].cb0, mtab->fmode[ftype].cb1,
00749 mtab->fmode[ftype].cb_len_read);
00750
00751 for (i = 0; i < channels; i++)
00752 for (j = 0; j < sub; j++)
00753 for (k = 0; k < mtab->fmode[ftype].bark_n_coef; k++)
00754 bark1[i][j][k] =
00755 get_bits(gb, mtab->fmode[ftype].bark_n_bit);
00756
00757 for (i = 0; i < channels; i++)
00758 for (j = 0; j < sub; j++)
00759 bark_use_hist[i][j] = get_bits1(gb);
00760
00761 dec_gain(tctx, gb, ftype, gain);
00762
00763 for (i = 0; i < channels; i++) {
00764 lpc_hist_idx[i] = get_bits(gb, tctx->mtab->lsp_bit0);
00765 lpc_idx1 [i] = get_bits(gb, tctx->mtab->lsp_bit1);
00766
00767 for (j = 0; j < tctx->mtab->lsp_split; j++)
00768 lpc_idx2[i][j] = get_bits(gb, tctx->mtab->lsp_bit2);
00769 }
00770
00771 if (ftype == FT_LONG) {
00772 int cb_len_p = (tctx->n_div[3] + mtab->ppc_shape_len*channels - 1)/
00773 tctx->n_div[3];
00774 dequant(tctx, gb, ppc_shape, FT_PPC, mtab->ppc_shape_cb,
00775 mtab->ppc_shape_cb + cb_len_p*PPC_SHAPE_CB_SIZE, cb_len_p);
00776 }
00777
00778 for (i = 0; i < channels; i++) {
00779 float *chunk = out + mtab->size * i;
00780 float lsp[LSP_COEFS_MAX];
00781
00782 for (j = 0; j < sub; j++) {
00783 dec_bark_env(tctx, bark1[i][j], bark_use_hist[i][j], i,
00784 tctx->tmp_buf, gain[sub*i+j], ftype);
00785
00786 tctx->dsp.vector_fmul(chunk + block_size*j, tctx->tmp_buf,
00787 block_size);
00788
00789 }
00790
00791 if (ftype == FT_LONG) {
00792 float pgain_step = 25000. / ((1 << mtab->pgain_bit) - 1);
00793 int p_coef = get_bits(gb, tctx->mtab->ppc_period_bit);
00794 int g_coef = get_bits(gb, tctx->mtab->pgain_bit);
00795 float v = 1./8192*
00796 mulawinv(pgain_step*g_coef+ pgain_step/2, 25000., PGAIN_MU);
00797
00798 decode_ppc(tctx, p_coef, ppc_shape + i*mtab->ppc_shape_len, v,
00799 chunk);
00800 }
00801
00802 decode_lsp(tctx, lpc_idx1[i], lpc_idx2[i], lpc_hist_idx[i], lsp,
00803 tctx->lsp_hist[i]);
00804
00805 dec_lpc_spectrum_inv(tctx, lsp, ftype, tctx->tmp_buf);
00806
00807 for (j = 0; j < mtab->fmode[ftype].sub; j++) {
00808 tctx->dsp.vector_fmul(chunk, tctx->tmp_buf, block_size);
00809 chunk += block_size;
00810 }
00811 }
00812 }
00813
00814 static int twin_decode_frame(AVCodecContext * avctx, void *data,
00815 int *data_size, AVPacket *avpkt)
00816 {
00817 const uint8_t *buf = avpkt->data;
00818 int buf_size = avpkt->size;
00819 TwinContext *tctx = avctx->priv_data;
00820 GetBitContext gb;
00821 const ModeTab *mtab = tctx->mtab;
00822 float *out = data;
00823 enum FrameType ftype;
00824 int window_type;
00825 static const enum FrameType wtype_to_ftype_table[] = {
00826 FT_LONG, FT_LONG, FT_SHORT, FT_LONG,
00827 FT_MEDIUM, FT_LONG, FT_LONG, FT_MEDIUM, FT_MEDIUM
00828 };
00829
00830 if (buf_size*8 < avctx->bit_rate*mtab->size/avctx->sample_rate + 8) {
00831 av_log(avctx, AV_LOG_ERROR,
00832 "Frame too small (%d bytes). Truncated file?\n", buf_size);
00833 *data_size = 0;
00834 return buf_size;
00835 }
00836
00837 init_get_bits(&gb, buf, buf_size * 8);
00838 skip_bits(&gb, get_bits(&gb, 8));
00839 window_type = get_bits(&gb, WINDOW_TYPE_BITS);
00840
00841 if (window_type > 8) {
00842 av_log(avctx, AV_LOG_ERROR, "Invalid window type, broken sample?\n");
00843 return -1;
00844 }
00845
00846 ftype = wtype_to_ftype_table[window_type];
00847
00848 read_and_decode_spectrum(tctx, &gb, tctx->spectrum, ftype);
00849
00850 imdct_output(tctx, ftype, window_type, out);
00851
00852 FFSWAP(float*, tctx->curr_frame, tctx->prev_frame);
00853
00854 if (tctx->avctx->frame_number < 2) {
00855 *data_size=0;
00856 return buf_size;
00857 }
00858
00859 *data_size = mtab->size*avctx->channels*4;
00860
00861 return buf_size;
00862 }
00863
00867 static av_cold void init_mdct_win(TwinContext *tctx)
00868 {
00869 int i,j;
00870 const ModeTab *mtab = tctx->mtab;
00871 int size_s = mtab->size / mtab->fmode[FT_SHORT].sub;
00872 int size_m = mtab->size / mtab->fmode[FT_MEDIUM].sub;
00873 int channels = tctx->avctx->channels;
00874 float norm = channels == 1 ? 2. : 1.;
00875
00876 for (i = 0; i < 3; i++) {
00877 int bsize = tctx->mtab->size/tctx->mtab->fmode[i].sub;
00878 ff_mdct_init(&tctx->mdct_ctx[i], av_log2(bsize) + 1, 1,
00879 -sqrt(norm/bsize) / (1<<15));
00880 }
00881
00882 tctx->tmp_buf = av_malloc(mtab->size * sizeof(*tctx->tmp_buf));
00883
00884 tctx->spectrum = av_malloc(2*mtab->size*channels*sizeof(float));
00885 tctx->curr_frame = av_malloc(2*mtab->size*channels*sizeof(float));
00886 tctx->prev_frame = av_malloc(2*mtab->size*channels*sizeof(float));
00887
00888 for (i = 0; i < 3; i++) {
00889 int m = 4*mtab->size/mtab->fmode[i].sub;
00890 double freq = 2*M_PI/m;
00891 tctx->cos_tabs[i] = av_malloc((m/4)*sizeof(*tctx->cos_tabs));
00892
00893 for (j = 0; j <= m/8; j++)
00894 tctx->cos_tabs[i][j] = cos((2*j + 1)*freq);
00895 for (j = 1; j < m/8; j++)
00896 tctx->cos_tabs[i][m/4-j] = tctx->cos_tabs[i][j];
00897 }
00898
00899
00900 ff_init_ff_sine_windows(av_log2(size_m));
00901 ff_init_ff_sine_windows(av_log2(size_s/2));
00902 ff_init_ff_sine_windows(av_log2(mtab->size));
00903 }
00904
00911 static void permutate_in_line(int16_t *tab, int num_vect, int num_blocks,
00912 int block_size,
00913 const uint8_t line_len[2], int length_div,
00914 enum FrameType ftype)
00915
00916 {
00917 int i,j;
00918
00919 for (i = 0; i < line_len[0]; i++) {
00920 int shift;
00921
00922 if (num_blocks == 1 ||
00923 (ftype == FT_LONG && num_vect % num_blocks) ||
00924 (ftype != FT_LONG && num_vect & 1 ) ||
00925 i == line_len[1]) {
00926 shift = 0;
00927 } else if (ftype == FT_LONG) {
00928 shift = i;
00929 } else
00930 shift = i*i;
00931
00932 for (j = 0; j < num_vect && (j+num_vect*i < block_size*num_blocks); j++)
00933 tab[i*num_vect+j] = i*num_vect + (j + shift) % num_vect;
00934 }
00935 }
00936
00952 static void transpose_perm(int16_t *out, int16_t *in, int num_vect,
00953 const uint8_t line_len[2], int length_div)
00954 {
00955 int i,j;
00956 int cont= 0;
00957 for (i = 0; i < num_vect; i++)
00958 for (j = 0; j < line_len[i >= length_div]; j++)
00959 out[cont++] = in[j*num_vect + i];
00960 }
00961
00962 static void linear_perm(int16_t *out, int16_t *in, int n_blocks, int size)
00963 {
00964 int block_size = size/n_blocks;
00965 int i;
00966
00967 for (i = 0; i < size; i++)
00968 out[i] = block_size * (in[i] % n_blocks) + in[i] / n_blocks;
00969 }
00970
00971 static av_cold void construct_perm_table(TwinContext *tctx,enum FrameType ftype)
00972 {
00973 int block_size;
00974 const ModeTab *mtab = tctx->mtab;
00975 int size = tctx->avctx->channels*mtab->fmode[ftype].sub;
00976 int16_t *tmp_perm = (int16_t *) tctx->tmp_buf;
00977
00978 if (ftype == FT_PPC) {
00979 size = tctx->avctx->channels;
00980 block_size = mtab->ppc_shape_len;
00981 } else
00982 block_size = mtab->size / mtab->fmode[ftype].sub;
00983
00984 permutate_in_line(tmp_perm, tctx->n_div[ftype], size,
00985 block_size, tctx->length[ftype],
00986 tctx->length_change[ftype], ftype);
00987
00988 transpose_perm(tctx->permut[ftype], tmp_perm, tctx->n_div[ftype],
00989 tctx->length[ftype], tctx->length_change[ftype]);
00990
00991 linear_perm(tctx->permut[ftype], tctx->permut[ftype], size,
00992 size*block_size);
00993 }
00994
00995 static av_cold void init_bitstream_params(TwinContext *tctx)
00996 {
00997 const ModeTab *mtab = tctx->mtab;
00998 int n_ch = tctx->avctx->channels;
00999 int total_fr_bits = tctx->avctx->bit_rate*mtab->size/
01000 tctx->avctx->sample_rate;
01001
01002 int lsp_bits_per_block = n_ch*(mtab->lsp_bit0 + mtab->lsp_bit1 +
01003 mtab->lsp_split*mtab->lsp_bit2);
01004
01005 int ppc_bits = n_ch*(mtab->pgain_bit + mtab->ppc_shape_bit +
01006 mtab->ppc_period_bit);
01007
01008 int bsize_no_main_cb[3];
01009 int bse_bits[3];
01010 int i;
01011 enum FrameType frametype;
01012
01013 for (i = 0; i < 3; i++)
01014
01015 bse_bits[i] = n_ch *
01016 (mtab->fmode[i].bark_n_coef * mtab->fmode[i].bark_n_bit + 1);
01017
01018 bsize_no_main_cb[2] = bse_bits[2] + lsp_bits_per_block + ppc_bits +
01019 WINDOW_TYPE_BITS + n_ch*GAIN_BITS;
01020
01021 for (i = 0; i < 2; i++)
01022 bsize_no_main_cb[i] =
01023 lsp_bits_per_block + n_ch*GAIN_BITS + WINDOW_TYPE_BITS +
01024 mtab->fmode[i].sub*(bse_bits[i] + n_ch*SUB_GAIN_BITS);
01025
01026
01027 for (i = 0; i < 4; i++) {
01028 int bit_size;
01029 int vect_size;
01030 int rounded_up, rounded_down, num_rounded_down, num_rounded_up;
01031 if (i == 3) {
01032 bit_size = n_ch * mtab->ppc_shape_bit;
01033 vect_size = n_ch * mtab->ppc_shape_len;
01034 } else {
01035 bit_size = total_fr_bits - bsize_no_main_cb[i];
01036 vect_size = n_ch * mtab->size;
01037 }
01038
01039 tctx->n_div[i] = (bit_size + 13) / 14;
01040
01041 rounded_up = (bit_size + tctx->n_div[i] - 1)/tctx->n_div[i];
01042 rounded_down = (bit_size )/tctx->n_div[i];
01043 num_rounded_down = rounded_up * tctx->n_div[i] - bit_size;
01044 num_rounded_up = tctx->n_div[i] - num_rounded_down;
01045 tctx->bits_main_spec[0][i][0] = (rounded_up + 1)/2;
01046 tctx->bits_main_spec[1][i][0] = (rounded_up )/2;
01047 tctx->bits_main_spec[0][i][1] = (rounded_down + 1)/2;
01048 tctx->bits_main_spec[1][i][1] = (rounded_down )/2;
01049 tctx->bits_main_spec_change[i] = num_rounded_up;
01050
01051 rounded_up = (vect_size + tctx->n_div[i] - 1)/tctx->n_div[i];
01052 rounded_down = (vect_size )/tctx->n_div[i];
01053 num_rounded_down = rounded_up * tctx->n_div[i] - vect_size;
01054 num_rounded_up = tctx->n_div[i] - num_rounded_down;
01055 tctx->length[i][0] = rounded_up;
01056 tctx->length[i][1] = rounded_down;
01057 tctx->length_change[i] = num_rounded_up;
01058 }
01059
01060 for (frametype = FT_SHORT; frametype <= FT_PPC; frametype++)
01061 construct_perm_table(tctx, frametype);
01062 }
01063
01064 static av_cold int twin_decode_init(AVCodecContext *avctx)
01065 {
01066 TwinContext *tctx = avctx->priv_data;
01067 int isampf = avctx->sample_rate/1000;
01068 int ibps = avctx->bit_rate/(1000 * avctx->channels);
01069
01070 tctx->avctx = avctx;
01071 avctx->sample_fmt = AV_SAMPLE_FMT_FLT;
01072
01073 if (avctx->channels > CHANNELS_MAX) {
01074 av_log(avctx, AV_LOG_ERROR, "Unsupported number of channels: %i\n",
01075 avctx->channels);
01076 return -1;
01077 }
01078
01079 switch ((isampf << 8) + ibps) {
01080 case (8 <<8) + 8: tctx->mtab = &mode_08_08; break;
01081 case (11<<8) + 8: tctx->mtab = &mode_11_08; break;
01082 case (11<<8) + 10: tctx->mtab = &mode_11_10; break;
01083 case (16<<8) + 16: tctx->mtab = &mode_16_16; break;
01084 case (22<<8) + 20: tctx->mtab = &mode_22_20; break;
01085 case (22<<8) + 24: tctx->mtab = &mode_22_24; break;
01086 case (22<<8) + 32: tctx->mtab = &mode_22_32; break;
01087 case (44<<8) + 40: tctx->mtab = &mode_44_40; break;
01088 case (44<<8) + 48: tctx->mtab = &mode_44_48; break;
01089 default:
01090 av_log(avctx, AV_LOG_ERROR, "This version does not support %d kHz - %d kbit/s/ch mode.\n", isampf, isampf);
01091 return -1;
01092 }
01093
01094 dsputil_init(&tctx->dsp, avctx);
01095 init_mdct_win(tctx);
01096 init_bitstream_params(tctx);
01097
01098 memset_float(tctx->bark_hist[0][0], 0.1, FF_ARRAY_ELEMS(tctx->bark_hist));
01099
01100 return 0;
01101 }
01102
01103 static av_cold int twin_decode_close(AVCodecContext *avctx)
01104 {
01105 TwinContext *tctx = avctx->priv_data;
01106 int i;
01107
01108 for (i = 0; i < 3; i++) {
01109 ff_mdct_end(&tctx->mdct_ctx[i]);
01110 av_free(tctx->cos_tabs[i]);
01111 }
01112
01113
01114 av_free(tctx->curr_frame);
01115 av_free(tctx->spectrum);
01116 av_free(tctx->prev_frame);
01117 av_free(tctx->tmp_buf);
01118
01119 return 0;
01120 }
01121
01122 AVCodec twinvq_decoder =
01123 {
01124 "twinvq",
01125 AVMEDIA_TYPE_AUDIO,
01126 CODEC_ID_TWINVQ,
01127 sizeof(TwinContext),
01128 twin_decode_init,
01129 NULL,
01130 twin_decode_close,
01131 twin_decode_frame,
01132 .long_name = NULL_IF_CONFIG_SMALL("VQF TwinVQ"),
01133 };