changeset 16699:0cb2e995edd1

Typo fix, patch by Ismail D«Ónmez <ismail AH kde POIS org POIS tr>
author gpoirier
date Thu, 06 Oct 2005 21:37:56 +0000
parents fa2d4903be48
children d032c607cf63
files libmpcodecs/vf_hqdn3d.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libmpcodecs/vf_hqdn3d.c	Thu Oct 06 21:27:58 2005 +0000
+++ b/libmpcodecs/vf_hqdn3d.c	Thu Oct 06 21:37:56 2005 +0000
@@ -111,7 +111,7 @@
     PixelDst = LineAnt[0] = PixelAnt = Frame[0]<<16;
     FrameDest[0]= ((PixelDst+0x10007FFF)/65536);
 
-    /* Fist line has no top neighbor, only left. */
+    /* First line has no top neighbor, only left. */
     for (X = 1; X < W; X++){
         PixelDst = LineAnt[X] = LowPassMul(PixelAnt, Frame[X]<<16, Horizontal);
 	FrameDest[X]= ((PixelDst+0x10007FFF)/65536);
@@ -174,7 +174,7 @@
     FrameAnt[0] = ((PixelDst+0x1000007F)/256);
     FrameDest[0]= ((PixelDst+0x10007FFF)/65536);
 
-    /* Fist line has no top neighbor. Only left one for each pixel and
+    /* First line has no top neighbor. Only left one for each pixel and
      * last frame */
     for (X = 1; X < W; X++){
         LineAnt[X] = PixelAnt = LowPassMul(PixelAnt, Frame[X]<<16, Horizontal);