diff 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
line wrap: on
line diff
--- a/lpc.h	Sat Mar 06 22:36:41 2010 +0000
+++ b/lpc.h	Sat Mar 06 22:36:45 2010 +0000
@@ -45,6 +45,9 @@
                       int32_t coefs[][MAX_LPC_ORDER], int *shift, int use_lpc,
                       int omethod, int max_shift, int zero_shift);
 
+void ff_lpc_compute_autocorr(const int32_t *data, int len, int lag,
+                             double *autoc);
+
 #ifdef LPC_USE_DOUBLE
 #define LPC_TYPE double
 #else