diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-06-28 11:18:16 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-06-28 11:18:16 +0000 |
commit | ddda6fcddc22301cba9f88f63d3e677552a44459 (patch) | |
tree | c39441ac34d899a6ccc53fd73177fb8464324b22 /libswscale | |
parent | a8ff69ce2bad1c4bb043e88ea35f5ab5691d4f3c (diff) | |
download | ffmpeg-ddda6fcddc22301cba9f88f63d3e677552a44459.tar.gz |
comment grammar fixes
Originally committed as revision 23685 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/swscale_template.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libswscale/swscale_template.c b/libswscale/swscale_template.c index 8cd51e94d2..b4451f2f90 100644 --- a/libswscale/swscale_template.c +++ b/libswscale/swscale_template.c @@ -1513,7 +1513,7 @@ static inline void RENAME(yuv2packed1)(SwsContext *c, uint16_t *buf0, uint16_t * } #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 @@ static inline void RENAME(hyscale)(uint16_t *dst, long dstWidth, uint8_t *src, i } #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 @@ inline static void RENAME(hcscale)(uint16_t *dst, long dstWidth, uint8_t *src1, } #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)) |