From da9cea77e314dad2fbc615a76085a0c330741f92 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Wed, 5 Oct 2011 14:12:42 +0200 Subject: Fix a bunch of common typos. --- libpostproc/postprocess.c | 2 +- libpostproc/postprocess_internal.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'libpostproc') diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c index f87721711c..c363fa7965 100644 --- a/libpostproc/postprocess.c +++ b/libpostproc/postprocess.c @@ -909,7 +909,7 @@ static void reallocBuffers(PPContext *c, int width, int height, int stride, int c->yHistogram[i]= width*height/64*15/256; for(i=0; i<3; i++){ - //Note: The +17*1024 is just there so i do not have to worry about r/w over the end. + //Note: The +17*1024 is just there so I do not have to worry about r/w over the end. reallocAlign((void **)&c->tempBlurred[i], 8, stride*mbHeight*16 + 17*1024); reallocAlign((void **)&c->tempBlurredPast[i], 8, 256*((height+7)&(~7))/2 + 17*1024);//FIXME size } diff --git a/libpostproc/postprocess_internal.h b/libpostproc/postprocess_internal.h index 331a96b2dd..d2c6708d76 100644 --- a/libpostproc/postprocess_internal.h +++ b/libpostproc/postprocess_internal.h @@ -100,7 +100,7 @@ typedef struct PPMode{ int minAllowedY; ///< for brigtness correction int maxAllowedY; ///< for brihtness correction - float maxClippedThreshold; ///< amount of "black" u r willing to loose to get a brightness corrected picture + float maxClippedThreshold; ///< amount of "black" you are willing to lose to get a brightness-corrected picture int maxTmpNoise[3]; ///< for Temporal Noise Reducing filter (Maximal sum of abs differences) -- cgit v1.2.3