diff libswscale/cs_test.c @ 23140:4d3870361b73

cosmetics attack, part I: Remove all tabs and prettyprint/reindent the code.
author diego
date Sat, 28 Apr 2007 11:44:49 +0000
parents 9528d1ebe68f
children 5159b5f8784e
line wrap: on
line diff
--- a/libswscale/cs_test.c	Sat Apr 28 11:41:11 2007 +0000
+++ b/libswscale/cs_test.c	Sat Apr 28 11:44:49 2007 +0000
@@ -142,7 +142,7 @@
                     for(i=0; i<SIZE; i++){
                         if(srcBuffer[i]!=srcByte){
                             av_log(NULL, AV_LOG_INFO, "src damaged at %d w:%d src:%d dst:%d %s\n",
-                                i, width, srcOffset, dstOffset, name);
+                                   i, width, srcOffset, dstOffset, name);
                             failed=1;
                             break;
                         }
@@ -150,7 +150,7 @@
                     for(i=0; i<dstOffset; i++){
                         if(dstBuffer[i]!=dstByte){
                             av_log(NULL, AV_LOG_INFO, "dst damaged at %d w:%d src:%d dst:%d %s\n",
-                                i, width, srcOffset, dstOffset, name);
+                                   i, width, srcOffset, dstOffset, name);
                             failed=1;
                             break;
                         }
@@ -158,7 +158,7 @@
                     for(i=dstOffset + width*dstBpp; i<SIZE; i++){
                         if(dstBuffer[i]!=dstByte){
                             av_log(NULL, AV_LOG_INFO, "dst damaged at %d w:%d src:%d dst:%d %s\n",
-                                i, width, srcOffset, dstOffset, name);
+                                   i, width, srcOffset, dstOffset, name);
                             failed=1;
                             break;
                         }