comparison internal.h @ 957:e34e8d654ded libavutil

Fix grammar errors in documentation
author mru
date Wed, 30 Jun 2010 15:38:06 +0000
parents da95a329a6b5
children bb7159d1f769
comparison
equal deleted inserted replaced
956:2894d4c208dc 957:e34e8d654ded
46 #endif 46 #endif
47 #endif 47 #endif
48 48
49 49
50 /** 50 /**
51 * Marks a variable as used and prevents the compiler from optimizing it away. 51 * Mark a variable as used and prevent the compiler from optimizing it away.
52 * This is usefull for asm that accesses varibles in ways that the compiler doesnt 52 * This is useful for asm that accesses varibles in ways that the compiler does not
53 * understand 53 * understand
54 */ 54 */
55 #ifndef attribute_used 55 #ifndef attribute_used
56 #if AV_GCC_VERSION_AT_LEAST(3,1) 56 #if AV_GCC_VERSION_AT_LEAST(3,1)
57 # define attribute_used __attribute__((used)) 57 # define attribute_used __attribute__((used))
190 } 190 }
191 191
192 #include "libm.h" 192 #include "libm.h"
193 193
194 /** 194 /**
195 * Returns NULL if CONFIG_SMALL is true, otherwise the argument 195 * Return NULL if CONFIG_SMALL is true, otherwise the argument
196 * without modification. Used to disable the definition of strings 196 * without modification. Used to disable the definition of strings
197 * (for example AVCodec long_names). 197 * (for example AVCodec long_names).
198 */ 198 */
199 #if CONFIG_SMALL 199 #if CONFIG_SMALL
200 # define NULL_IF_CONFIG_SMALL(x) NULL 200 # define NULL_IF_CONFIG_SMALL(x) NULL