comparison internal.h @ 636:c04808220c83 libavutil

spelling/grammar/consistency review part II
author diego
date Wed, 28 Jan 2009 23:03:17 +0000
parents 8c48a1b999a3
children 683a6dbdd2b2
comparison
equal deleted inserted replaced
635:0a51400a64c9 636:c04808220c83
317 return (x > 0) ? floor(x) : ceil(x); 317 return (x > 0) ? floor(x) : ceil(x);
318 } 318 }
319 #endif /* HAVE_TRUNCF */ 319 #endif /* HAVE_TRUNCF */
320 320
321 /** 321 /**
322 * Returns NULL if CONFIG_SMALL is true otherwise the argument 322 * Returns NULL if CONFIG_SMALL is true, otherwise the argument
323 * without modifications, used to disable the definition of strings 323 * without modification. Used to disable the definition of strings
324 * (for example AVCodec long_names). 324 * (for example AVCodec long_names).
325 */ 325 */
326 #if CONFIG_SMALL 326 #if CONFIG_SMALL
327 # define NULL_IF_CONFIG_SMALL(x) NULL 327 # define NULL_IF_CONFIG_SMALL(x) NULL
328 #else 328 #else