diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-10-17 18:23:11 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-10-17 18:23:11 +0000 |
commit | 9b1f04b08bfe47ad33db815cc14d0824705710c1 (patch) | |
tree | 3906fb7964aeea3810fcd1c1cb3a3a6254279549 /libavcodec/imgconvert_template.h | |
parent | e75f899784bbc6cf11e1a3c7f192ed4c278f2f61 (diff) | |
download | ffmpeg-9b1f04b08bfe47ad33db815cc14d0824705710c1.tar.gz |
Clarify comment that explains why this header lacks multiple inclusion guards.
Originally committed as revision 10770 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/imgconvert_template.h')
-rw-r--r-- | libavcodec/imgconvert_template.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/imgconvert_template.h b/libavcodec/imgconvert_template.h index c37fc3baaa..2db985df53 100644 --- a/libavcodec/imgconvert_template.h +++ b/libavcodec/imgconvert_template.h @@ -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) |