diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-01-21 00:12:18 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-01-23 19:32:06 +0100 |
commit | 384dbd617f7c28950e902634d400189f22033202 (patch) | |
tree | 502fa3363ae01c7006f40ff8486da2442dd2ec9b /libavcodec/lpc.c | |
parent | 7101b1850822c2490cfaf2c5f4addf2ccbf7eab1 (diff) | |
download | ffmpeg-384dbd617f7c28950e902634d400189f22033202.tar.gz |
cosmetics related to LPC changes.
Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit 1c189fc5334d4a687b15861d81d22c8ba2c9cd5e)
Diffstat (limited to 'libavcodec/lpc.c')
-rw-r--r-- | libavcodec/lpc.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/libavcodec/lpc.c b/libavcodec/lpc.c index fd51491716..6d7671c81f 100644 --- a/libavcodec/lpc.c +++ b/libavcodec/lpc.c @@ -28,7 +28,8 @@ /** * Apply Welch window function to audio block */ -static void apply_welch_window_c(const int32_t *data, int len, double *w_data) +static void lpc_apply_welch_window_c(const int32_t *data, int len, + double *w_data) { int i, n2; double w; @@ -55,7 +56,7 @@ static void apply_welch_window_c(const int32_t *data, int len, double *w_data) * A Welch window function is applied before calculation. */ static void lpc_compute_autocorr_c(const double *data, int len, int lag, - double *autoc) + double *autoc) { int i, j; @@ -255,8 +256,8 @@ av_cold int ff_lpc_init(LPCContext *s, int blocksize, int max_order, s->windowed_samples = NULL; } - s->lpc_apply_welch_window = apply_welch_window_c; - s->lpc_compute_autocorr = lpc_compute_autocorr_c; + s->lpc_apply_welch_window = lpc_apply_welch_window_c; + s->lpc_compute_autocorr = lpc_compute_autocorr_c; if (HAVE_MMX) ff_lpc_init_x86(s); |