diff options
author | Justin Ruggles | 2011-01-21 00:11:44 +0000 |
---|---|---|
committer | Mans Rullgard | 2011-01-21 19:58:59 +0000 |
commit | 56f8952b252f85281317ecd3e0b04c4cae93fd72 (patch) | |
tree | a6c8fa8727be01daa6c9200b9dee20ba261b2c05 /libavcodec/ra144.h | |
parent | 50196a982bf7c8be9b41053fa0975473c217e709 (diff) |
Move lpc_compute_autocorr() from DSPContext to a new struct LPCContext.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/ra144.h')
-rw-r--r-- | libavcodec/ra144.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ra144.h b/libavcodec/ra144.h index 536b5bbe72..11c66a46e0 100644 --- a/libavcodec/ra144.h +++ b/libavcodec/ra144.h @@ -23,7 +23,7 @@ #define AVCODEC_RA144_H #include <stdint.h> -#include "dsputil.h" +#include "lpc.h" #define NBLOCKS 4 ///< number of subblocks within a block #define BLOCKSIZE 40 ///< subblock size in 16-bit words @@ -34,7 +34,7 @@ typedef struct { AVCodecContext *avctx; - DSPContext dsp; + LPCContext lpc_ctx; unsigned int old_energy; ///< previous frame energy |