rename files

This commit is contained in:
Volker Fischer 2013-02-13 18:48:36 +00:00
parent 14f1b04119
commit 0bd2171b0e
23 changed files with 101 additions and 101 deletions

View file

@ -23,9 +23,9 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
#include "cc6__kiss_fft_guts.h"
#include "cc6_arch.h"
#include "os_support.h"
#include "mathops.h"
#include "stack_alloc.h"
#include "cc6_os_support.h"
#include "cc6_mathops.h"
#include "cc6_stack_alloc.h"
/* The guts header contains all the multiplication and addition macros that are defined for
complex numbers. It also delares the kf_ internal functions.

View file

@ -18,11 +18,11 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
#define MIN(a,b) ((a)<(b) ? (a):(b))
#define MAX(a,b) ((a)>(b) ? (a):(b))
/* kiss_fft.h
/* cc6_kiss_fft.h
defines kiss_fft_scalar as either short or a float type
and defines
typedef struct { kiss_fft_scalar r; kiss_fft_scalar i; }kiss_fft_cpx; */
#include "kiss_fft.h"
#include "cc6_kiss_fft.h"
#define MAXFACTORS 32
/* e.g. an fft of length 128 has 4 factors

View file

@ -22,9 +22,9 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# endif
#endif
#include "os_support.h"
#include "mathops.h"
#include "kiss_fftr.h"
#include "cc6_os_support.h"
#include "cc6_mathops.h"
#include "cc6_kiss_fftr.h"
#include "cc6__kiss_fft_guts.h"

View file

@ -35,13 +35,13 @@
#include <math.h>
#include "cc6_bands.h"
#include "modes.h"
#include "vq.h"
#include "cc6_modes.h"
#include "cc6_vq.h"
#include "cc6_cwrs.h"
#include "stack_alloc.h"
#include "os_support.h"
#include "mathops.h"
#include "rate.h"
#include "cc6_stack_alloc.h"
#include "cc6_os_support.h"
#include "cc6_mathops.h"
#include "cc6_rate.h"
const celt_word16_t sqrtC_1[2] = {QCONST16(1.f, 14), QCONST16(1.414214f, 14)};

View file

@ -33,10 +33,10 @@
#define BANDS_H
#include "cc6_arch.h"
#include "modes.h"
#include "cc6_modes.h"
#include "cc6_entenc.h"
#include "cc6_entdec.h"
#include "rate.h"
#include "cc6_rate.h"
/** Compute the amplitude (sqrt energy) in each of the bands
* @param m Mode data

View file

@ -35,20 +35,20 @@
#define CELT_C
#include "os_support.h"
#include "mdct.h"
#include "cc6_os_support.h"
#include "cc6_mdct.h"
#include <math.h>
#include "cc6_celt.h"
#include "pitch.h"
#include "kiss_fftr.h"
#include "cc6_pitch.h"
#include "cc6_kiss_fftr.h"
#include "cc6_bands.h"
#include "modes.h"
#include "cc6_modes.h"
#include "cc6_entcode.h"
#include "quant_bands.h"
#include "psy.h"
#include "rate.h"
#include "stack_alloc.h"
#include "mathops.h"
#include "cc6_quant_bands.h"
#include "cc6_psy.h"
#include "cc6_rate.h"
#include "cc6_stack_alloc.h"
#include "cc6_mathops.h"
#include "cc6_float_cast.h"
#include <stdarg.h>

View file

@ -33,11 +33,11 @@
#include "config.h"
#endif
#include "os_support.h"
#include "cc6_os_support.h"
#include <stdlib.h>
#include <string.h>
#include "cc6_cwrs.h"
#include "mathops.h"
#include "cc6_mathops.h"
#include "cc6_arch.h"
/*Guaranteed to return a conservatively large estimate of the binary logarithm

View file

@ -32,7 +32,7 @@
#define CWRS_H
#include "cc6_arch.h"
#include "stack_alloc.h"
#include "cc6_stack_alloc.h"
#include "cc6_entenc.h"
#include "cc6_entdec.h"

View file

@ -35,7 +35,7 @@
#include <stddef.h>
#include "cc6_entdec.h"
#include "os_support.h"
#include "cc6_os_support.h"
#include "cc6_arch.h"

View file

@ -33,7 +33,7 @@
#include "config.h"
#endif
#include "os_support.h"
#include "cc6_os_support.h"
#include "cc6_entenc.h"
#include "cc6_arch.h"

View file

@ -34,8 +34,8 @@
#endif
#include "cc6_celt_header.h"
#include "os_support.h"
#include "modes.h"
#include "cc6_os_support.h"
#include "cc6_modes.h"
/*typedef struct {
char codec_id[8];

View file

@ -55,7 +55,7 @@
#else /* ENABLE_TI_DSPLIB */
#include "kiss_fft.h"
#include "cc6_kiss_fft.h"
#include "cc6__kiss_fft_guts.h"
#define cpx32_fft_alloc(length) kiss_fft_alloc(length, 0, 0);

View file

@ -69,8 +69,8 @@
#endif /* FIXED_POINT */
#include "kiss_fft.h"
#include "kiss_fftr.h"
#include "cc6_kiss_fft.h"
#include "cc6_kiss_fftr.h"
#include "cc6__kiss_fft_guts.h"
#define real16_fft_alloc(length) kiss_fftr_alloc_celt_single(length, 0, 0);

View file

@ -37,7 +37,7 @@
#include "cc6_arch.h"
#include "cc6_entcode.h"
#include "os_support.h"
#include "cc6_os_support.h"
#ifndef OVERRIDE_CELT_ILOG2
/** Integer log in base2. Undefined for zero and negative numbers */
@ -163,7 +163,7 @@ static inline float celt_exp2(float x)
#ifdef FIXED_POINT
#include "os_support.h"
#include "cc6_os_support.h"
#ifndef OVERRIDE_CELT_MAXABS16
static inline celt_word16_t celt_maxabs16(celt_word16_t *x, int len)

View file

@ -49,9 +49,9 @@
#include "mdct.h"
#include "cc6_kfft_double.h"
#include <math.h>
#include "os_support.h"
#include "cc6_os_support.h"
#include "mathops.h"
#include "stack_alloc.h"
#include "cc6_stack_alloc.h"
#ifndef M_PI
#define M_PI 3.141592653

View file

@ -47,8 +47,8 @@
#include "psy.h"
#include "os_support.h"
#include "mathops.h"
#include "modes.h"
#include "stack_alloc.h"
#include "cc6_modes.h"
#include "cc6_stack_alloc.h"
kiss_fftr_cfg pitch_state_alloc(int max_lag)
{

View file

@ -40,7 +40,7 @@
#include "kiss_fftr.h"
#include "psy.h"
#include "modes.h"
#include "cc6_modes.h"
kiss_fftr_cfg pitch_state_alloc(int max_lag);
void pitch_state_free(kiss_fftr_cfg st);

View file

@ -37,7 +37,7 @@
#include <math.h>
#include "os_support.h"
#include "cc6_arch.h"
#include "stack_alloc.h"
#include "cc6_stack_alloc.h"
#include "mathops.h"
/* The Vorbis freq<->Bark mapping */

View file

@ -39,7 +39,7 @@
#include "os_support.h"
#include "cc6_arch.h"
#include "mathops.h"
#include "stack_alloc.h"
#include "cc6_stack_alloc.h"
#ifdef FIXED_POINT
const celt_word16_t eMeans[24] = {1920, -341, -512, -107, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};

View file

@ -33,7 +33,7 @@
#define QUANT_BANDS
#include "cc6_arch.h"
#include "modes.h"
#include "cc6_modes.h"
#include "cc6_entenc.h"
#include "cc6_entdec.h"
#include "mathops.h"

View file

@ -35,7 +35,7 @@
#include "cc6_arch.h"
#include "cc6_entdec.h"
#include "mfrngcod.h"
#include "cc6_mfrngcod.h"

View file

@ -35,7 +35,7 @@
#include "cc6_arch.h"
#include "cc6_entenc.h"
#include "mfrngcod.h"
#include "cc6_mfrngcod.h"

View file

@ -34,7 +34,7 @@
#endif
#include <math.h>
#include "modes.h"
#include "cc6_modes.h"
#include "cc6_cwrs.h"
#include "cc6_arch.h"
#include "os_support.h"