ref: af1fce93b1111ea6d5ba75817e9031ee46a585b8
parent: e34c85a0ccd9712f63c48751c44d34db1d4c4941
author: Jean-Marc Valin <[email protected]>
date: Fri Jul 16 07:05:06 EDT 2010
Pre-emphasis coefficients now part of the mode and has a numerator as well as a denominator
--- a/libcelt/celt.c
+++ b/libcelt/celt.c
@@ -53,8 +53,6 @@
#include <stdarg.h>
#include "plc.h"
-static const celt_word16 preemph = QCONST16(0.8f,15);
-
#ifdef FIXED_POINT
static const celt_word16 transientWindow[16] = {
279, 1106, 2454, 4276, 6510, 9081, 11900, 14872,
@@ -98,8 +96,8 @@
celt_int32 vbr_count;
celt_int32 vbr_rate_norm; /* Target number of 16th bits per frame */
- celt_word16 * restrict preemph_memE;
- celt_sig * restrict preemph_memD;
+ celt_word32 * restrict preemph_memE;
+ celt_word32 * restrict preemph_memD;
celt_sig *in_mem;
celt_sig *out_mem;
@@ -177,8 +175,8 @@
st->oldBandE = (celt_word16*)celt_alloc(C*mode->nbEBands*sizeof(celt_word16));
- st->preemph_memE = (celt_word16*)celt_alloc(C*sizeof(celt_word16));
- st->preemph_memD = (celt_sig*)celt_alloc(C*sizeof(celt_sig));
+ st->preemph_memE = (celt_word32*)celt_alloc(C*sizeof(celt_word32));
+ st->preemph_memD = (celt_word32*)celt_alloc(C*sizeof(celt_word32));
if ((st->in_mem!=NULL) && (st->out_mem!=NULL) && (st->oldBandE!=NULL)
&& (st->preemph_memE!=NULL) && (st->preemph_memD!=NULL))
@@ -493,7 +491,7 @@
/*printf ("dec %d: %d %d %d %d\n", flag_bits, *intra_ener, *has_pitch, *shortBlocks, *has_fold);*/
}
-void deemphasis(celt_sig *in, celt_word16 *pcm, int N, int _C, celt_word16 coef, celt_sig *mem)
+void deemphasis(celt_sig *in, celt_word16 *pcm, int N, int _C, const celt_word16 *coef, celt_sig *mem)
{
const int C = CHANNELS(_C);
int c;
@@ -507,8 +505,10 @@
y = pcm+c;
for (j=0;j<N;j++)
{
- celt_sig tmp = MAC16_32_Q15(*x, coef,m);
- m = tmp;
+ celt_sig tmp = *x + m;
+ m = MULT16_32_Q15(coef[0], tmp)
+ - MULT16_32_Q15(coef[1], *x);
+ tmp = SHL32(MULT16_32_Q15(coef[3], tmp), 1);
*y = SCALEOUT(SIG2WORD16(tmp));
x+=C;
y+=C;
@@ -764,9 +764,10 @@
for (i=0;i<N;i++)
{
/* Apply pre-emphasis */
- celt_sig tmp = SCALEIN(SHL32(EXTEND32(*pcmp), SIG_SHIFT));
- *inp = SUB32(tmp, SHR32(MULT16_16(preemph,st->preemph_memE[c]),3));
- st->preemph_memE[c] = SCALEIN(*pcmp);
+ celt_sig tmp = MULT16_16(st->mode->preemph[2], SCALEIN(*pcmp));
+ *inp = tmp + st->preemph_memE[c];
+ st->preemph_memE[c] = MULT16_32_Q15(st->mode->preemph[1], *inp)
+ - MULT16_32_Q15(st->mode->preemph[0], tmp);
inp += C;
pcmp += C;
}
@@ -1068,7 +1069,7 @@
/* De-emphasis and put everything back at the right place
in the synthesis history */
if (optional_resynthesis != NULL) {
- deemphasis(st->out_mem, optional_resynthesis, N, C, preemph, st->preemph_memD);
+ deemphasis(st->out_mem, optional_resynthesis, N, C, st->mode->preemph, st->preemph_memD);
}
}
@@ -1346,7 +1347,7 @@
celt_sig * restrict preemph_memD;
celt_sig *out_mem;
- celt_sig *decode_mem;
+ celt_word32 *decode_mem;
celt_word16 *oldBandE;
@@ -1410,12 +1411,12 @@
st->start = 0;
st->end = st->mode->nbEBands;
- st->decode_mem = celt_alloc((DECODE_BUFFER_SIZE+st->overlap)*C*sizeof(celt_sig));
+ st->decode_mem = (celt_sig*)celt_alloc((DECODE_BUFFER_SIZE+st->overlap)*C*sizeof(celt_sig));
st->out_mem = st->decode_mem+DECODE_BUFFER_SIZE-MAX_PERIOD;
st->oldBandE = (celt_word16*)celt_alloc(C*mode->nbEBands*sizeof(celt_word16));
- st->preemph_memD = (celt_sig*)celt_alloc(C*sizeof(celt_sig));
+ st->preemph_memD = (celt_word32*)celt_alloc(C*sizeof(celt_word32));
st->lpc = (celt_word16*)celt_alloc(C*LPC_ORDER*sizeof(celt_word16));
@@ -1626,7 +1627,7 @@
st->out_mem[C*(MAX_PERIOD-N+overlap+i)+c] = MULT16_32_Q15(fade, e[overlap+i]);
}
- deemphasis(st->out_mem, pcm, N, C, preemph, st->preemph_memD);
+ deemphasis(st->out_mem, pcm, N, C, st->mode->preemph, st->preemph_memD);
st->loss_count++;
@@ -1818,7 +1819,7 @@
/* Compute inverse MDCTs */
compute_inv_mdcts(st->mode, shortBlocks, freq, transient_time, transient_shift, st->out_mem, C, LM);
- deemphasis(st->out_mem, pcm, N, C, preemph, st->preemph_memD);
+ deemphasis(st->out_mem, pcm, N, C, st->mode->preemph, st->preemph_memD);
st->loss_count = 0;
RESTORE_STACK;
return 0;
--- a/libcelt/modes.c
+++ b/libcelt/modes.c
@@ -336,6 +336,10 @@
mode->Fs = Fs;
mode->ePredCoef = QCONST16(.8f,15);
+ mode->preemph[0] = QCONST16(.8, 15);
+ mode->preemph[1] = QCONST16(.0, 15);
+ mode->preemph[2] = QCONST16(1., SIG_SHIFT);
+ mode->preemph[3] = QCONST16(1., 14);
if (frame_size >= 640 && (frame_size%16)==0)
{
LM = 3;
--- a/libcelt/modes.h
+++ b/libcelt/modes.h
@@ -86,7 +86,7 @@
int nbEBands;
int pitchEnd;
-
+ celt_word16 preemph[4];
const celt_int16 *eBands; /**< Definition for each "pseudo-critical band" */
celt_word16 ePredCoef;/**< Prediction coefficient for the energy encoding */