summaryrefslogtreecommitdiff
path: root/libpostproc
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-03-22 16:43:07 +0000
committerDiego Biurrun <diego@biurrun.de>2008-03-22 16:43:07 +0000
commita94948d327a1f90c4c24e456131a9a5308de963e (patch)
tree2b194879557bbe67a5faf7a16818325538680445 /libpostproc
parent16e0bf7349853d36b604bbc51c8b7f203dafa4e2 (diff)
cosmetics: Fix typo in variable name, numSkiped --> numSkipped.
Originally committed as revision 12553 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libpostproc')
-rw-r--r--libpostproc/postprocess_template.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libpostproc/postprocess_template.c b/libpostproc/postprocess_template.c
index dffdf45eec..a796978598 100644
--- a/libpostproc/postprocess_template.c
+++ b/libpostproc/postprocess_template.c
@@ -1439,7 +1439,7 @@ DERING_CORE((%0, %1, 8) ,(%%REGd, %1, 4),%%mm2,%%mm4,%%mm0,%%mm3,%%mm5,%%mm1,
// 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 @@ DERING_CORE((%0, %1, 8) ,(%%REGd, %1, 4),%%mm2,%%mm4,%%mm0,%%mm3,%%mm5,%%mm1,
if(x==1 || x==8 || y==1 || y==8) continue;
- numSkiped++;
+ numSkipped++;
if(absDiff > worstDiff){
worstDiff= absDiff;
worstQP= QP;
@@ -1458,11 +1458,11 @@ DERING_CORE((%0, %1, 8) ,(%%REGd, %1, 4),%%mm2,%%mm4,%%mm0,%%mm3,%%mm5,%%mm1,
}
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);
}
}
}