diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-01-21 00:11:44 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-01-21 19:58:59 +0000 |
commit | 56f8952b252f85281317ecd3e0b04c4cae93fd72 (patch) | |
tree | a6c8fa8727be01daa6c9200b9dee20ba261b2c05 /libavcodec/dsputil.h | |
parent | 50196a982bf7c8be9b41053fa0975473c217e709 (diff) | |
download | ffmpeg-56f8952b252f85281317ecd3e0b04c4cae93fd72.tar.gz |
Move lpc_compute_autocorr() from DSPContext to a new struct LPCContext.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/dsputil.h')
-rw-r--r-- | libavcodec/dsputil.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavcodec/dsputil.h b/libavcodec/dsputil.h index 0efbad918a..c619b78529 100644 --- a/libavcodec/dsputil.h +++ b/libavcodec/dsputil.h @@ -374,8 +374,6 @@ typedef struct DSPContext { /* assume len is a multiple of 4, and arrays are 16-byte aligned */ void (*vorbis_inverse_coupling)(float *mag, float *ang, int blocksize); void (*ac3_downmix)(float (*samples)[256], float (*matrix)[2], int out_ch, int in_ch, int len); - /* no alignment needed */ - void (*lpc_compute_autocorr)(const int32_t *data, int len, int lag, double *autoc); /* assume len is a multiple of 8, and arrays are 16-byte aligned */ void (*vector_fmul)(float *dst, const float *src, int len); void (*vector_fmul_reverse)(float *dst, const float *src0, const float *src1, int len); |