Browse Source

Rename acelp_math.[ch] to celp_math.[ch] to prepare for QCELP decoder merge.

patch by Kenan Gillet, kenan.gillet gmail com

Originally committed as revision 15679 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Kenan Gillet Diego Biurrun 17 years ago
parent
commit
60c25a4beb
5 changed files with 7 additions and 7 deletions
  1. +1
    -1
      libavcodec/acelp_pitch_delay.c
  2. +1
    -1
      libavcodec/celp_math.c
  3. +3
    -3
      libavcodec/celp_math.h
  4. +1
    -1
      libavcodec/g729dec.c
  5. +1
    -1
      libavcodec/lsp.c

+ 1
- 1
libavcodec/acelp_pitch_delay.c View File

@@ -22,7 +22,7 @@

#include "avcodec.h"
#include "acelp_pitch_delay.h"
#include "acelp_math.h"
#include "celp_math.h"

int ff_acelp_decode_8bit_to_1st_delay3(int ac_index)
{


libavcodec/acelp_math.c → libavcodec/celp_math.c View File

@@ -25,7 +25,7 @@
#include <assert.h>

#include "avcodec.h"
#include "acelp_math.h"
#include "celp_math.h"

#ifdef G729_BITEXACT
/**

libavcodec/acelp_math.h → libavcodec/celp_math.h View File

@@ -20,8 +20,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#ifndef AVCODEC_ACELP_MATH_H
#define AVCODEC_ACELP_MATH_H
#ifndef AVCODEC_CELP_MATH_H
#define AVCODEC_CELP_MATH_H

#include <stdint.h>

@@ -83,4 +83,4 @@ static inline int bidir_sal(int value, int offset)
else return value << offset;
}

#endif /* AVCODEC_ACELP_MATH_H */
#endif /* AVCODEC_CELP_MATH_H */

+ 1
- 1
libavcodec/g729dec.c View File

@@ -32,7 +32,7 @@

#include "g729.h"
#include "lsp.h"
#include "acelp_math.h"
#include "celp_math.h"
#include "acelp_filters.h"
#include "acelp_pitch_delay.h"
#include "acelp_vectors.h"


+ 1
- 1
libavcodec/lsp.c View File

@@ -26,7 +26,7 @@
#define FRAC_BITS 14
#include "mathops.h"
#include "lsp.h"
#include "acelp_math.h"
#include "celp_math.h"

void ff_acelp_reorder_lsf(int16_t* lsfq, int lsfq_min_distance, int lsfq_min, int lsfq_max, int lp_order)
{


Loading…
Cancel
Save