summaryrefslogtreecommitdiffstats
path: root/libmpcodecs/vf_hqdn3d.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-10-06 08:12:49 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-10-06 08:12:49 +0000
commit16fd40e4ea1b80be5f9b5fbf15f1aceb3b86390c (patch)
tree7e818383420f5aa601a75bf830e5686c44179b6f /libmpcodecs/vf_hqdn3d.c
parent18456a4b529c2cd0c74b6393a9b5b2dcc6467e8b (diff)
downloadmpv-16fd40e4ea1b80be5f9b5fbf15f1aceb3b86390c.tar.bz2
mpv-16fd40e4ea1b80be5f9b5fbf15f1aceb3b86390c.tar.xz
neightbour --> neighbor typo fix
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16685 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs/vf_hqdn3d.c')
-rw-r--r--libmpcodecs/vf_hqdn3d.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libmpcodecs/vf_hqdn3d.c b/libmpcodecs/vf_hqdn3d.c
index 4a3168f132..f34ff3db9c 100644
--- a/libmpcodecs/vf_hqdn3d.c
+++ b/libmpcodecs/vf_hqdn3d.c
@@ -107,11 +107,11 @@ static void deNoiseSpacial(
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 @@ static void deNoise(unsigned char *Frame, // mpi->planes[x]
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);