changeset 5832:aebcb17098dc libavcodec

Clarify comment that explains why this header lacks multiple inclusion guards.
author diego
date Wed, 17 Oct 2007 18:23:11 +0000
parents a2b978ef3973
children dfd34e7f243f
files imgconvert_template.h
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/imgconvert_template.h	Wed Oct 17 11:19:42 2007 +0000
+++ b/imgconvert_template.h	Wed Oct 17 18:23:11 2007 +0000
@@ -19,8 +19,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
-/* This header has no multiple inclusion guards as it gets
- * included multiple times. */
+/* This header intentionally has no multiple inclusion guards. It is meant to
+ * be included multiple times and generates different code depending on the
+ * value of certain #defines. */
 
 #ifndef RGB_OUT
 #define RGB_OUT(d, r, g, b) RGBA_OUT(d, r, g, b, 0xff)