Mercurial > mplayer.hg
changeset 22914:29827d88d2da
typo
author | diego |
---|---|
date | Sat, 07 Apr 2007 14:07:51 +0000 |
parents | 07ecf1d8922e |
children | 1cbc0d439cf3 |
files | libswscale/swscale.c libswscale/swscale_internal.h libswscale/swscale_template.c |
diffstat | 3 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/libswscale/swscale.c Sat Apr 07 13:32:51 2007 +0000 +++ b/libswscale/swscale.c Sat Apr 07 14:07:51 2007 +0000 @@ -2050,7 +2050,7 @@ c->chrIntHSubSample= c->chrDstHSubSample; c->chrIntVSubSample= c->chrSrcVSubSample; - // note the -((-x)>>y) is so that we allways round toward +inf + // Note the -((-x)>>y) is so that we always round toward +inf. c->chrSrcW= -((-srcW) >> c->chrSrcHSubSample); c->chrSrcH= -((-srcH) >> c->chrSrcVSubSample); c->chrDstW= -((-dstW) >> c->chrDstHSubSample);
--- a/libswscale/swscale_internal.h Sat Apr 07 13:32:51 2007 +0000 +++ b/libswscale/swscale_internal.h Sat Apr 07 14:07:51 2007 +0000 @@ -54,7 +54,7 @@ int chrSrcW, chrSrcH, chrDstW, chrDstH; int lumXInc, chrXInc; int lumYInc, chrYInc; - int dstFormat, srcFormat; ///< format 4:2:0 type is allways YV12 + int dstFormat, srcFormat; ///< format 4:2:0 type is always YV12 int origDstFormat, origSrcFormat; ///< format int chrSrcHSubSample, chrSrcVSubSample; int chrIntHSubSample, chrIntVSubSample;
--- a/libswscale/swscale_template.c Sat Apr 07 13:32:51 2007 +0000 +++ b/libswscale/swscale_template.c Sat Apr 07 14:07:51 2007 +0000 @@ -2317,7 +2317,7 @@ { #ifdef HAVE_MMX assert(filterSize % 4 == 0 && filterSize>0); - if(filterSize==4) // allways true for upscaling, sometimes for down too + if(filterSize==4) // Always true for upscaling, sometimes for down, too. { long counter= -2*dstW; filter-= counter*2;