diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-07-14 19:14:25 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-07-14 19:14:25 +0000 |
commit | 8ea543b5805453853d8071c86ce15a70dfd097b1 (patch) | |
tree | 779797e1b568460a9fb21ab201bbe17d75138c4d /libavcodec/flacenc.c | |
parent | c90c39190ee1d522d135ca429df22c8c33c0f2a3 (diff) | |
download | ffmpeg-8ea543b5805453853d8071c86ce15a70dfd097b1.tar.gz |
cleanup
Originally committed as revision 5750 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/flacenc.c')
-rw-r--r-- | libavcodec/flacenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/flacenc.c b/libavcodec/flacenc.c index 3eb4d46f41..b72da9093f 100644 --- a/libavcodec/flacenc.c +++ b/libavcodec/flacenc.c @@ -749,7 +749,7 @@ static int lpc_calc_coefs(const int32_t *samples, int blocksize, int max_order, double var[MAX_LPC_ORDER+1], eval; for(pass=0; pass<use_lpc-1; pass++){ - av_init_lls(&m[pass&1], max_order/*3*/); + av_init_lls(&m[pass&1], max_order); for(i=max_order; i<blocksize; i++){ for(j=0; j<=max_order; j++) @@ -759,7 +759,7 @@ static int lpc_calc_coefs(const int32_t *samples, int blocksize, int max_order, eval= av_evaluate_lls(&m[(pass-1)&1], var+1); eval= (512>>pass) + fabs(eval - var[0]); for(j=0; j<=max_order; j++) - var[j]= samples[i-j] / sqrt(eval); + var[j]/= sqrt(eval); } av_update_lls(&m[pass&1], var, 1.0); |