[FFmpeg-cvslog] swr_test: dont test samples that have not been written

Michael Niedermayer git at videolan.org
Thu Sep 29 05:30:14 CEST 2011


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Sep 29 04:52:22 2011 +0200| [da343ff4324b4ceb305aa6359cea1580e758d36c] | committer: Michael Niedermayer

swr_test: dont test samples that have not been written

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=da343ff4324b4ceb305aa6359cea1580e758d36c
---

 libswresample/swresample_test.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/libswresample/swresample_test.c b/libswresample/swresample_test.c
index b634151..e8683cd 100644
--- a/libswresample/swresample_test.c
+++ b/libswresample/swresample_test.c
@@ -123,7 +123,7 @@ int main(int argc, char **argv){
                             double sum_aa= 0;
                             double sum_bb= 0;
                             double sum_ab= 0;
-                            for(i=0; i<SAMPLES; i++){
+                            for(i=0; i<out_count; i++){
                                 double a= get(array_in , ch + i*in_ch_count, in_sample_fmt);
                                 double b= get(array_out, ch + i*in_ch_count, in_sample_fmt);
                                 sum_a += a;
@@ -136,7 +136,7 @@ int main(int argc, char **argv){
                             x = sum_ab/sum_bb;
                             sse= sum_aa + sum_bb*x*x - 2*x*sum_ab;
 
-                            fprintf(stderr, "[%f %f %f] len:%5d\n", sqrt(sse/SAMPLES), x, maxdiff, out_count);
+                            fprintf(stderr, "[%f %f %f] len:%5d\n", sqrt(sse/out_count), x, maxdiff, out_count);
                         }
                         fprintf(stderr, "\n");
                     }



More information about the ffmpeg-cvslog mailing list