diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-12-28 01:42:58 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-12-28 01:42:58 +0000 |
commit | 22170ec0b270b2fd5eef6921c5389940b5941caf (patch) | |
tree | 2ec47112765b8418ffde4f84687e6ac96fec0c01 /libavcodec/armv4l | |
parent | 35562dc962c0adb2ae48bb9e0680f87aab170d1c (diff) | |
download | ffmpeg-22170ec0b270b2fd5eef6921c5389940b5941caf.tar.gz |
Remove mistakenly added multiple inclusion guards.
Originally committed as revision 11332 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/armv4l')
-rw-r--r-- | libavcodec/armv4l/dsputil_iwmmxt_rnd.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libavcodec/armv4l/dsputil_iwmmxt_rnd.h b/libavcodec/armv4l/dsputil_iwmmxt_rnd.h index a753b43533..f7151c7c60 100644 --- a/libavcodec/armv4l/dsputil_iwmmxt_rnd.h +++ b/libavcodec/armv4l/dsputil_iwmmxt_rnd.h @@ -19,8 +19,9 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef FFMPEG_DSPUTIL_IWMMXT_RND_H -#define FFMPEG_DSPUTIL_IWMMXT_RND_H +/* 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. */ void DEF(put, pixels8)(uint8_t *block, const uint8_t *pixels, const int line_size, int h) { @@ -1115,5 +1116,3 @@ void DEF(avg, pixels16_xy2)(uint8_t *block, const uint8_t *pixels, const int lin : [line_size]"r"(line_size) : "r12", "memory"); } - -#endif /* FFMPEG_DSPUTIL_IWMMXT_RND_H */ |