[FFmpeg-cvslog] r15679 - in trunk/libavcodec: acelp_math.c acelp_math.h acelp_pitch_delay.c celp_math.c celp_math.h g729dec.c lsp.c
diego
subversion
Fri Oct 24 23:20:30 CEST 2008
Author: diego
Date: Fri Oct 24 23:20:29 2008
New Revision: 15679
Log:
Rename acelp_math.[ch] to celp_math.[ch] to prepare for QCELP decoder merge.
patch by Kenan Gillet, kenan.gillet gmail com
Added:
trunk/libavcodec/celp_math.c (contents, props changed)
- copied, changed from r15678, /trunk/libavcodec/acelp_math.c
trunk/libavcodec/celp_math.h (contents, props changed)
- copied, changed from r15678, /trunk/libavcodec/acelp_math.h
Removed:
trunk/libavcodec/acelp_math.c
trunk/libavcodec/acelp_math.h
Modified:
trunk/libavcodec/acelp_pitch_delay.c
trunk/libavcodec/g729dec.c
trunk/libavcodec/lsp.c
Modified: trunk/libavcodec/acelp_pitch_delay.c
==============================================================================
--- trunk/libavcodec/acelp_pitch_delay.c (original)
+++ trunk/libavcodec/acelp_pitch_delay.c Fri Oct 24 23:20:29 2008
@@ -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)
{
Copied: trunk/libavcodec/celp_math.c (from r15678, /trunk/libavcodec/acelp_math.c)
==============================================================================
--- /trunk/libavcodec/acelp_math.c (original)
+++ trunk/libavcodec/celp_math.c Fri Oct 24 23:20:29 2008
@@ -25,7 +25,7 @@
#include <assert.h>
#include "avcodec.h"
-#include "acelp_math.h"
+#include "celp_math.h"
#ifdef G729_BITEXACT
/**
Copied: trunk/libavcodec/celp_math.h (from r15678, /trunk/libavcodec/acelp_math.h)
==============================================================================
--- /trunk/libavcodec/acelp_math.h (original)
+++ trunk/libavcodec/celp_math.h Fri Oct 24 23:20:29 2008
@@ -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, i
else return value << offset;
}
-#endif /* AVCODEC_ACELP_MATH_H */
+#endif /* AVCODEC_CELP_MATH_H */
Modified: trunk/libavcodec/g729dec.c
==============================================================================
--- trunk/libavcodec/g729dec.c (original)
+++ trunk/libavcodec/g729dec.c Fri Oct 24 23:20:29 2008
@@ -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"
Modified: trunk/libavcodec/lsp.c
==============================================================================
--- trunk/libavcodec/lsp.c (original)
+++ trunk/libavcodec/lsp.c Fri Oct 24 23:20:29 2008
@@ -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)
{
More information about the ffmpeg-cvslog
mailing list