Mercurial > libpostproc.hg
changeset 96:404a656698ff libpostproc
cosmetics: Fix typo in variable name, numSkiped --> numSkipped.
author | diego |
---|---|
date | Sat, 22 Mar 2008 16:43:07 +0000 |
parents | c24dab9bca80 |
children | 2653d9f33b8a |
files | postprocess_template.c |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- 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<QP/2) if(max-min < 20){ - static int numSkiped=0; + static int numSkipped=0; static int errorSum=0; static int worstQP=0; static int worstRange=0; @@ -1450,7 +1450,7 @@ if(x==1 || x==8 || y==1 || y==8) continue; - numSkiped++; + numSkipped++; if(absDiff > 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); } } }