Mercurial > libpostproc.hg
changeset 90:8e738e0a16f5 libpostproc
typo fixes
author | diego |
---|---|
date | Sat, 15 Mar 2008 16:15:47 +0000 |
parents | 261d086649c5 |
children | 8879eafb9431 |
files | postprocess.c postprocess_template.c |
diffstat | 2 files changed, 8 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/postprocess.c Fri Mar 14 21:50:23 2008 +0000 +++ b/postprocess.c Sat Mar 15 16:15:47 2008 +0000 @@ -392,7 +392,7 @@ /** * Experimental Filter 1 (Horizontal) * will not damage linear gradients - * Flat blocks should look like they where passed through the (1,1,2,2,4,2,2,1,1) 9-Tap filter + * Flat blocks should look like they were passed through the (1,1,2,2,4,2,2,1,1) 9-Tap filter * can only smooth blocks at the expected locations (it cannot smooth them if they did move) * MMX2 version does correct clipping C version does not * not identical with the vertical one
--- a/postprocess_template.c Fri Mar 14 21:50:23 2008 +0000 +++ b/postprocess_template.c Sat Mar 15 16:15:47 2008 +0000 @@ -478,7 +478,7 @@ /** * Experimental Filter 1 * will not damage linear gradients - * Flat blocks should look like they where passed through the (1,1,2,2,4,2,2,1,1) 9-Tap filter + * Flat blocks should look like they were passed through the (1,1,2,2,4,2,2,1,1) 9-Tap filter * can only smooth blocks at the expected locations (it cannot smooth them if they did move) * MMX2 version does correct clipping C version does not */ @@ -1546,7 +1546,7 @@ /** * Deinterlaces the given block by linearly interpolating every second line. * will be called for every 8x8 block and can read & write from line 4-15 - * lines 0-3 have been passed through the deblock / dering filters allready, but can be read too + * lines 0-3 have been passed through the deblock / dering filters already, but can be read, too. * lines 4-12 will be read into the deblocking filter and should be deinterlaced */ static inline void RENAME(deInterlaceInterpolateLinear)(uint8_t src[], int stride) @@ -1598,7 +1598,7 @@ /** * Deinterlaces the given block by cubic interpolating every second line. * will be called for every 8x8 block and can read & write from line 4-15 - * lines 0-3 have been passed through the deblock / dering filters allready, but can be read too + * lines 0-3 have been passed through the deblock / dering filters already, but can be read, too. * lines 4-12 will be read into the deblocking filter and should be deinterlaced * this filter will read lines 3-15 and write 7-13 */ @@ -1663,7 +1663,7 @@ /** * Deinterlaces the given block by filtering every second line with a (-1 4 2 4 -1) filter. * will be called for every 8x8 block and can read & write from line 4-15 - * lines 0-3 have been passed through the deblock / dering filters allready, but can be read too + * lines 0-3 have been passed through the deblock / dering filters already, but can be read, too. * lines 4-12 will be read into the deblocking filter and should be deinterlaced * this filter will read lines 4-13 and write 5-11 */ @@ -1743,7 +1743,7 @@ /** * Deinterlaces the given block by filtering every line with a (-1 2 6 2 -1) filter. * will be called for every 8x8 block and can read & write from line 4-15 - * lines 0-3 have been passed through the deblock / dering filters allready, but can be read too + * lines 0-3 have been passed through the deblock / dering filters already, but can be read, too. * lines 4-12 will be read into the deblocking filter and should be deinterlaced * this filter will read lines 4-13 and write 4-11 */ @@ -1845,7 +1845,7 @@ /** * Deinterlaces the given block by filtering all lines with a (1 2 1) filter. * will be called for every 8x8 block and can read & write from line 4-15 - * lines 0-3 have been passed through the deblock / dering filters allready, but can be read too + * lines 0-3 have been passed through the deblock / dering filters already, but can be read, too. * lines 4-12 will be read into the deblocking filter and should be deinterlaced * this filter will read lines 4-13 and write 4-11 */ @@ -1947,7 +1947,7 @@ /** * Deinterlaces the given block by applying a median filter to every second line. * will be called for every 8x8 block and can read & write from line 4-15, - * lines 0-3 have been passed through the deblock / dering filters allready, but can be read too + * lines 0-3 have been passed through the deblock / dering filters already, but can be read, too. * lines 4-12 will be read into the deblocking filter and should be deinterlaced */ static inline void RENAME(deInterlaceMedian)(uint8_t src[], int stride)