diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-10-17 09:31:06 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-10-17 09:31:06 +0000 |
commit | 31b2c1446f7cc7c10f217093f695edfc1b1be498 (patch) | |
tree | c7f96030dc8545b85ce5c91d20c698031a5a8d9d /libavcodec/armv4l | |
parent | ca34b9e61551506aab28a0839999d6caa05dcece (diff) | |
download | ffmpeg-31b2c1446f7cc7c10f217093f695edfc1b1be498.tar.gz |
Add missing multiple inclusion guards.
Originally committed as revision 10763 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/armv4l')
-rw-r--r-- | libavcodec/armv4l/dsputil_iwmmxt_rnd.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/armv4l/dsputil_iwmmxt_rnd.h b/libavcodec/armv4l/dsputil_iwmmxt_rnd.h index 51ba61c47a..a753b43533 100644 --- a/libavcodec/armv4l/dsputil_iwmmxt_rnd.h +++ b/libavcodec/armv4l/dsputil_iwmmxt_rnd.h @@ -19,6 +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 + void DEF(put, pixels8)(uint8_t *block, const uint8_t *pixels, const int line_size, int h) { int stride = line_size; @@ -1112,3 +1115,5 @@ 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 */ |