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/ra144enc.c | |
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/ra144enc.c')
-rw-r--r-- | libavcodec/ra144enc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ra144enc.c b/libavcodec/ra144enc.c index 7886602477..9e2cf36c2d 100644 --- a/libavcodec/ra144enc.c +++ b/libavcodec/ra144enc.c @@ -452,8 +452,8 @@ static int ra144_encode_frame(AVCodecContext *avctx, uint8_t *frame, 32)]; ff_lpc_calc_coefs(&ractx->dsp, lpc_data, NBLOCKS * BLOCKSIZE, LPC_ORDER, - LPC_ORDER, 16, lpc_coefs, shift, 1, ORDER_METHOD_EST, 12, - 0); + LPC_ORDER, 16, lpc_coefs, shift, AV_LPC_TYPE_LEVINSON, + 0, ORDER_METHOD_EST, 12, 0); for (i = 0; i < LPC_ORDER; i++) block_coefs[NBLOCKS - 1][i] = -(lpc_coefs[LPC_ORDER - 1][i] << (12 - shift[LPC_ORDER - 1])); |