Move some prototypes from dsputil.c to reasonable header files

Originally committed as revision 22260 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård
2010-03-06 22:36:45 +00:00
parent da0ac0ee64
commit 3da1180409
5 changed files with 13 additions and 12 deletions

View File

@ -45,6 +45,9 @@ int ff_lpc_calc_coefs(DSPContext *s,
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