# HG changeset patch # User diego # Date 1206204187 0 # Node ID 404a656698ffbdd65ad64a038fafe22804e8b3f1 # Parent c24dab9bca8097e4a68192909420df8c4c93e0d6 cosmetics: Fix typo in variable name, numSkiped --> numSkipped. diff -r c24dab9bca80 -r 404a656698ff postprocess_template.c --- a/postprocess_template.c Sat Mar 22 15:46:34 2008 +0000 +++ b/postprocess_template.c Sat Mar 22 16:43:07 2008 +0000 @@ -1439,7 +1439,7 @@ // if((max-min)*QP < 500) // if(max-min worstDiff){ worstDiff= absDiff; worstQP= QP; @@ -1458,11 +1458,11 @@ } errorSum+= error; - if(1024LL*1024LL*1024LL % numSkiped == 0){ + if(1024LL*1024LL*1024LL % numSkipped == 0){ av_log(c, AV_LOG_INFO, "sum:%1.3f, skip:%d, wQP:%d, " "wRange:%d, wDiff:%d, relSkip:%1.3f\n", - (float)errorSum/numSkiped, numSkiped, worstQP, worstRange, - worstDiff, (float)numSkiped/numPixels); + (float)errorSum/numSkipped, numSkipped, worstQP, worstRange, + worstDiff, (float)numSkipped/numPixels); } } }