diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2010-07-11 16:56:20 +0000 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2010-07-11 16:56:20 +0000 |
commit | 23940f1405d4c19df69b1fa77c319e9f114c8ef7 (patch) | |
tree | 1f98802573d8e6c7ff8f0467bca1a05171d5fe7d /libavcodec/lpc.h | |
parent | 31769dad7d182983e2943d519201c24e9cea6f3e (diff) | |
download | ffmpeg-23940f1405d4c19df69b1fa77c319e9f114c8ef7.tar.gz |
Add AVCodecContext.lpc_type and Add AVCodecContext.lpc_passes fields.
Add AVLPCType enum.
Deprecate AVCodecContext.use_lpc.
Originally committed as revision 24199 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/lpc.h')
-rw-r--r-- | libavcodec/lpc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/lpc.h b/libavcodec/lpc.h index a5b6f2ebb1..1c595f6b9a 100644 --- a/libavcodec/lpc.h +++ b/libavcodec/lpc.h @@ -42,7 +42,8 @@ int ff_lpc_calc_coefs(DSPContext *s, const int32_t *samples, int blocksize, int min_order, int max_order, int precision, - int32_t coefs[][MAX_LPC_ORDER], int *shift, int use_lpc, + int32_t coefs[][MAX_LPC_ORDER], int *shift, + enum AVLPCType lpc_type, int lpc_passes, int omethod, int max_shift, int zero_shift); void ff_lpc_compute_autocorr(const int32_t *data, int len, int lag, |