[Ffmpeg-cvslog] r5750 - trunk/libavcodec/flacenc.c

michael subversion
Fri Jul 14 21:14:25 CEST 2006


Author: michael
Date: Fri Jul 14 21:14:25 2006
New Revision: 5750

Modified:
   trunk/libavcodec/flacenc.c

Log:
cleanup


Modified: trunk/libavcodec/flacenc.c
==============================================================================
--- trunk/libavcodec/flacenc.c	(original)
+++ trunk/libavcodec/flacenc.c	Fri Jul 14 21:14:25 2006
@@ -749,7 +749,7 @@
         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 @@
                     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);




More information about the ffmpeg-cvslog mailing list