Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRostislav Pehlivanov <atomnuker@gmail.com>2015-08-29 21:29:18 +0300
committerRostislav Pehlivanov <atomnuker@gmail.com>2015-08-29 21:29:18 +0300
commit141d80ded77957eefababca52bee9dd05e3e1ba6 (patch)
treee4817720d17f5cd5b04d4fadd4e97fb1ef736cdd /libavcodec/lpc.h
parente924967fd5ec240cf97022f054cb02a0bc7101d9 (diff)
lpc: rename ff_lpc_calc_levinsion to ff_lpc_calc_levinson
Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
Diffstat (limited to 'libavcodec/lpc.h')
-rw-r--r--libavcodec/lpc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/lpc.h b/libavcodec/lpc.h
index ec59cea635..00c8d96514 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.