Browse Source

lpc: rename ff_lpc_calc_levinsion to ff_lpc_calc_levinson

Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
tags/n2.8
Rostislav Pehlivanov 10 years ago
parent
commit
141d80ded7
3 changed files with 8 additions and 8 deletions
  1. +2
    -2
      libavcodec/aacenc_tns.c
  2. +3
    -3
      libavcodec/lpc.c
  3. +3
    -3
      libavcodec/lpc.h

+ 2
- 2
libavcodec/aacenc_tns.c View File

@@ -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;


+ 3
- 3
libavcodec/lpc.c View File

@@ -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];


+ 3
- 3
libavcodec/lpc.h View File

@@ -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.


Loading…
Cancel
Save