[FFmpeg-cvslog] lpc: rename ff_lpc_calc_levinsion to ff_lpc_calc_levinson

Rostislav Pehlivanov git at videolan.org
Sat Aug 29 20:33:02 CEST 2015


ffmpeg | branch: master | Rostislav Pehlivanov <atomnuker at gmail.com> | Sat Aug 29 19:29:18 2015 +0100| [141d80ded77957eefababca52bee9dd05e3e1ba6] | committer: Rostislav Pehlivanov

lpc: rename ff_lpc_calc_levinsion to ff_lpc_calc_levinson

Signed-off-by: Rostislav Pehlivanov <atomnuker at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=141d80ded77957eefababca52bee9dd05e3e1ba6
---

 libavcodec/aacenc_tns.c |    4 ++--
 libavcodec/lpc.c        |    6 +++---
 libavcodec/lpc.h        |    6 +++---
 3 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/libavcodec/aacenc_tns.c b/libavcodec/aacenc_tns.c
index a7433a8..cf75b8a 100644
--- a/libavcodec/aacenc_tns.c
+++ b/libavcodec/aacenc_tns.c
@@ -210,8 +210,8 @@ void ff_aac_search_for_tns(AACEncContext *s, SingleChannelElement *sce)
             coef_len = 1024 - coef_start;
 
         /* LPC */
-        order = ff_lpc_calc_levinsion(&s->lpc, &sce->coeffs[coef_start], coef_len,
-                                      coefs, 0, tns_max_order, ORDER_METHOD_LOG);
+        order = ff_lpc_calc_levinson(&s->lpc, &sce->coeffs[coef_start], coef_len,
+                                     coefs, 0, tns_max_order, ORDER_METHOD_LOG);
 
         if (energy > threshold) {
             int direction = 0;
diff --git a/libavcodec/lpc.c b/libavcodec/lpc.c
index 6699eb8..02ab61c 100644
--- a/libavcodec/lpc.c
+++ b/libavcodec/lpc.c
@@ -277,9 +277,9 @@ int ff_lpc_calc_coefs(LPCContext *s,
  * @param lpc_type LPC method for determining coefficients,
  *                 see #FFLPCType for details
  */
-int ff_lpc_calc_levinsion(LPCContext *s, const float *samples, int len,
-                          double lpc[][MAX_LPC_ORDER], int min_order,
-                          int max_order, int omethod)
+int ff_lpc_calc_levinson(LPCContext *s, const float *samples, int len,
+                         double lpc[][MAX_LPC_ORDER], int min_order,
+                         int max_order, int omethod)
 {
     double ref[MAX_LPC_ORDER] = { 0 };
     double autoc[MAX_LPC_ORDER+1];
diff --git a/libavcodec/lpc.h b/libavcodec/lpc.h
index ec59cea..00c8d96 100644
--- a/libavcodec/lpc.h
+++ b/libavcodec/lpc.h
@@ -100,9 +100,9 @@ int ff_lpc_calc_coefs(LPCContext *s,
 int ff_lpc_calc_ref_coefs(LPCContext *s,
                           const int32_t *samples, int order, double *ref);
 
-int ff_lpc_calc_levinsion(LPCContext *s, const float *samples, int len,
-                          double lpc[][MAX_LPC_ORDER], int min_order,
-                          int max_order, int omethod);
+int ff_lpc_calc_levinson(LPCContext *s, const float *samples, int len,
+                         double lpc[][MAX_LPC_ORDER], int min_order,
+                         int max_order, int omethod);
 
 /**
  * Initialize LPCContext.



More information about the ffmpeg-cvslog mailing list