diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-03-22 16:46:36 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-03-22 16:46:36 +0000 |
commit | 04932b0d97f4c87966c74d5989b12f0c8eb1ace3 (patch) | |
tree | 4e64a74e358f60fa6c5a7b20c24217e1d5bf119e /libpostproc | |
parent | a94948d327a1f90c4c24e456131a9a5308de963e (diff) | |
download | ffmpeg-04932b0d97f4c87966c74d5989b12f0c8eb1ace3.tar.gz |
cosmetics: typo fixes
Originally committed as revision 12554 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libpostproc')
-rw-r--r-- | libpostproc/postprocess.c | 5 | ||||
-rw-r--r-- | libpostproc/postprocess_template.c | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c index 7ee3c0e981..3d86da465a 100644 --- a/libpostproc/postprocess.c +++ b/libpostproc/postprocess.c @@ -50,7 +50,7 @@ TempDeNoiser# E e e Ec * I do not have a 3DNow! CPU -> it is untested, but no one said it does not work so it seems to work # more or less selfinvented filters so the exactness is not too meaningful E = Exact implementation -e = allmost exact implementation (slightly different rounding,...) +e = almost exact implementation (slightly different rounding,...) a = alternative / approximate impl c = checked against the other implementations (-vo md5) p = partially optimized, still some work to do @@ -178,7 +178,8 @@ static inline void prefetcht2(void *p) } #endif -// The horizontal Functions exist only in C cuz the MMX code is faster with vertical filters and transposing +/* The horizontal functions exist only in C because the MMX + * code is faster with vertical filters and transposing. */ /** * Check if the given 8x8 Block is mostly "flat" diff --git a/libpostproc/postprocess_template.c b/libpostproc/postprocess_template.c index a796978598..92a053c24b 100644 --- a/libpostproc/postprocess_template.c +++ b/libpostproc/postprocess_template.c @@ -606,7 +606,7 @@ static inline void RENAME(doVertDefFilter)(uint8_t src[], int stride, PPContext src+= stride*4; asm volatile( -#if 0 //sligtly more accurate and slightly slower +#if 0 //slightly more accurate and slightly slower "pxor %%mm7, %%mm7 \n\t" // 0 "lea (%0, %1), %%"REG_a" \n\t" "lea (%%"REG_a", %1, 4), %%"REG_c" \n\t" |