# HG changeset patch # User diego # Date 1183029496 0 # Node ID 88b417d972abfbb2f8f39ecdc692d884c26f9c18 # Parent f19f1221499125847c7408dad814f470f2f57d14 comment grammar fixes diff -r f19f12214991 -r 88b417d972ab libswscale/swscale_template.c --- a/libswscale/swscale_template.c Wed Jun 27 23:11:21 2007 +0000 +++ b/libswscale/swscale_template.c Thu Jun 28 11:18:16 2007 +0000 @@ -1513,7 +1513,7 @@ } #ifdef HAVE_MMX - if ( uvalpha < 2048 ) // note this is not correct (shifts chrominance by 0.5 pixels) but its a bit faster + if ( uvalpha < 2048 ) // note this is not correct (shifts chrominance by 0.5 pixels) but it is a bit faster { switch(dstFormat) { @@ -2543,7 +2543,7 @@ } #ifdef HAVE_MMX - // use the new MMX scaler if the mmx2 can't be used (its faster than the x86asm one) + // use the new MMX scaler if the mmx2 can't be used (it is faster than the x86 ASM one) if (!(flags&SWS_FAST_BILINEAR) || (!canMMX2BeUsed)) #else if (!(flags&SWS_FAST_BILINEAR)) @@ -2760,7 +2760,7 @@ } #ifdef HAVE_MMX - // use the new MMX scaler if the mmx2 can't be used (its faster than the x86asm one) + // use the new MMX scaler if the mmx2 can't be used (it is faster than the x86 ASM one) if (!(flags&SWS_FAST_BILINEAR) || (!canMMX2BeUsed)) #else if (!(flags&SWS_FAST_BILINEAR))