diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-01-21 00:11:44 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-01-23 19:32:06 +0100 |
commit | 0d8837bdda4cad7e6c280d2648cef8077e54947b (patch) | |
tree | dc589b85ee75d3debf012d8a95f18258dc5ba25f /libavcodec/ra144.h | |
parent | d3058be6eefefe552f3b03820cc949bfa4e4f487 (diff) | |
download | ffmpeg-0d8837bdda4cad7e6c280d2648cef8077e54947b.tar.gz |
Move lpc_compute_autocorr() from DSPContext to a new struct LPCContext.
Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit 56f8952b252f85281317ecd3e0b04c4cae93fd72)
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 |