comparison lpc.h @ 11375:84963c795459 libavcodec

Move some prototypes from dsputil.c to reasonable header files
author mru
date Sat, 06 Mar 2010 22:36:45 +0000
parents da7996a575f3
children fdafbcef52f5
comparison
equal deleted inserted replaced
11374:1cd8731bbe7f 11375:84963c795459
42 int ff_lpc_calc_coefs(DSPContext *s, 42 int ff_lpc_calc_coefs(DSPContext *s,
43 const int32_t *samples, int blocksize, int min_order, 43 const int32_t *samples, int blocksize, int min_order,
44 int max_order, int precision, 44 int max_order, int precision,
45 int32_t coefs[][MAX_LPC_ORDER], int *shift, int use_lpc, 45 int32_t coefs[][MAX_LPC_ORDER], int *shift, int use_lpc,
46 int omethod, int max_shift, int zero_shift); 46 int omethod, int max_shift, int zero_shift);
47
48 void ff_lpc_compute_autocorr(const int32_t *data, int len, int lag,
49 double *autoc);
47 50
48 #ifdef LPC_USE_DOUBLE 51 #ifdef LPC_USE_DOUBLE
49 #define LPC_TYPE double 52 #define LPC_TYPE double
50 #else 53 #else
51 #define LPC_TYPE float 54 #define LPC_TYPE float