diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-02-28 01:48:31 -0500 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-03-21 12:49:36 -0400 |
commit | 330d9d1b50d59e0faabaedfe9fbf1f066e5744c9 (patch) | |
tree | 200198734e614413fbd013c077918cfced3a8688 /libavcodec/ra144.h | |
parent | f0904282340c9d54029787abf2c81e69c9067526 (diff) | |
download | ffmpeg-330d9d1b50d59e0faabaedfe9fbf1f066e5744c9.tar.gz |
ra144enc: use AVCodec.encode2()
Diffstat (limited to 'libavcodec/ra144.h')
-rw-r--r-- | libavcodec/ra144.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/ra144.h b/libavcodec/ra144.h index 189c73a716..967afe02ee 100644 --- a/libavcodec/ra144.h +++ b/libavcodec/ra144.h @@ -24,6 +24,7 @@ #include <stdint.h> #include "lpc.h" +#include "audio_frame_queue.h" #define NBLOCKS 4 ///< number of subblocks within a block #define BLOCKSIZE 40 ///< subblock size in 16-bit words @@ -36,6 +37,7 @@ typedef struct { AVCodecContext *avctx; AVFrame frame; LPCContext lpc_ctx; + AudioFrameQueue afq; int last_frame; unsigned int old_energy; ///< previous frame energy |