comparison postprocess.c @ 97:2653d9f33b8a libpostproc

cosmetics: typo fixes
author diego
date Sat, 22 Mar 2008 16:46:36 +0000
parents c24dab9bca80
children e565483b1193
comparison
equal deleted inserted replaced
96:404a656698ff 97:2653d9f33b8a
48 TempDeNoiser# E e e Ec 48 TempDeNoiser# E e e Ec
49 49
50 * I do not have a 3DNow! CPU -> it is untested, but no one said it does not work so it seems to work 50 * I do not have a 3DNow! CPU -> it is untested, but no one said it does not work so it seems to work
51 # more or less selfinvented filters so the exactness is not too meaningful 51 # more or less selfinvented filters so the exactness is not too meaningful
52 E = Exact implementation 52 E = Exact implementation
53 e = allmost exact implementation (slightly different rounding,...) 53 e = almost exact implementation (slightly different rounding,...)
54 a = alternative / approximate impl 54 a = alternative / approximate impl
55 c = checked against the other implementations (-vo md5) 55 c = checked against the other implementations (-vo md5)
56 p = partially optimized, still some work to do 56 p = partially optimized, still some work to do
57 */ 57 */
58 58
176 : : "r" (p) 176 : : "r" (p)
177 ); 177 );
178 } 178 }
179 #endif 179 #endif
180 180
181 // The horizontal Functions exist only in C cuz the MMX code is faster with vertical filters and transposing 181 /* The horizontal functions exist only in C because the MMX
182 * code is faster with vertical filters and transposing. */
182 183
183 /** 184 /**
184 * Check if the given 8x8 Block is mostly "flat" 185 * Check if the given 8x8 Block is mostly "flat"
185 */ 186 */
186 static inline int isHorizDC_C(uint8_t src[], int stride, PPContext *c) 187 static inline int isHorizDC_C(uint8_t src[], int stride, PPContext *c)