[MPlayer-cvslog] CVS: main/libmpcodecs vf_denoise3d.c, 1.7, 1.8 vf_hqdn3d.c, 1.3, 1.4

Diego Biurrun CVS syncmail at mplayerhq.hu
Thu Oct 6 10:12:52 CEST 2005


CVS change done by Diego Biurrun CVS

Update of /cvsroot/mplayer/main/libmpcodecs
In directory mail:/var2/tmp/cvs-serv14436

Modified Files:
	vf_denoise3d.c vf_hqdn3d.c 
Log Message:
neightbour --> neighbor typo fix


Index: vf_denoise3d.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vf_denoise3d.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- vf_denoise3d.c	31 Jul 2005 20:58:52 -0000	1.7
+++ vf_denoise3d.c	6 Oct 2005 08:12:49 -0000	1.8
@@ -81,11 +81,11 @@
     int sLineOffs = 0, pLineOffs = 0, dLineOffs = 0;
     unsigned char PixelAnt;
 
-    /* First pixel has no left nor top neightbour. Only previous frame */
+    /* First pixel has no left nor top neighbor. Only previous frame */
     LineAnt[0] = PixelAnt = Frame[0];
     FrameDest[0] = LowPass(FramePrev[0], LineAnt[0], Temporal);
 
-    /* Fist line has no top neightbour. Only left one for each pixel and
+    /* Fist line has no top neighbor. Only left one for each pixel and
      * last frame */
     for (X = 1; X < W; X++)
     {

Index: vf_hqdn3d.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/vf_hqdn3d.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- vf_hqdn3d.c	6 Oct 2005 06:05:38 -0000	1.3
+++ vf_hqdn3d.c	6 Oct 2005 08:12:49 -0000	1.4
@@ -107,11 +107,11 @@
     unsigned int PixelAnt;
     int PixelDst;
     
-    /* First pixel has no left nor top neightbour. */
+    /* First pixel has no left nor top neighbor. */
     PixelDst = LineAnt[0] = PixelAnt = Frame[0]<<16;
     FrameDest[0]= ((PixelDst+0x10007FFF)/65536);
 
-    /* Fist line has no top neightbour, only left. */
+    /* Fist 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);
@@ -168,13 +168,13 @@
         return;
     }
 
-    /* First pixel has no left nor top neightbour. Only previous frame */
+    /* First pixel has no left nor top neighbor. Only previous frame */
     LineAnt[0] = PixelAnt = Frame[0]<<16;
     PixelDst = LowPassMul(FrameAnt[0]<<8, PixelAnt, Temporal);
     FrameAnt[0] = ((PixelDst+0x1000007F)/256);
     FrameDest[0]= ((PixelDst+0x10007FFF)/65536);
 
-    /* Fist line has no top neightbour. Only left one for each pixel and
+    /* Fist 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);




More information about the MPlayer-cvslog mailing list