summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2007-10-17 09:34:48 +0000
committerDiego Biurrun <diego@biurrun.de>2007-10-17 09:34:48 +0000
commit6a03549e8a25c2223c117201424899339c0e7be7 (patch)
tree0c47186102af85e662b7315ac626e61d0092bb5c
parent31b2c1446f7cc7c10f217093f695edfc1b1be498 (diff)
Add a comment that explains why this header lacks multiple inclusion guards.
Originally committed as revision 10764 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/imgconvert_template.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/imgconvert_template.h b/libavcodec/imgconvert_template.h
index b5f5cbe77a..c37fc3baaa 100644
--- a/libavcodec/imgconvert_template.h
+++ b/libavcodec/imgconvert_template.h
@@ -19,6 +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. */
+
#ifndef RGB_OUT
#define RGB_OUT(d, r, g, b) RGBA_OUT(d, r, g, b, 0xff)
#endif