diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-10-17 09:34:48 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-10-17 09:34:48 +0000 |
commit | 6a03549e8a25c2223c117201424899339c0e7be7 (patch) | |
tree | 0c47186102af85e662b7315ac626e61d0092bb5c | |
parent | 31b2c1446f7cc7c10f217093f695edfc1b1be498 (diff) | |
download | ffmpeg-streaming-6a03549e8a25c2223c117201424899339c0e7be7.zip ffmpeg-streaming-6a03549e8a25c2223c117201424899339c0e7be7.tar.gz |
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.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/imgconvert_template.h b/libavcodec/imgconvert_template.h index b5f5cbe..c37fc3b 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 |