diff options
author | Diego Biurrun | 2007-10-17 09:37:46 +0000 |
---|---|---|
committer | Diego Biurrun | 2007-10-17 09:37:46 +0000 |
commit | 5b21bdabe43611385d1d55a21d5b1f607b133d29 (patch) | |
tree | f2365284f51cf77d62573fa8a2d7f15c50baf8be /libavcodec/i386 | |
parent | 6a03549e8a25c2223c117201424899339c0e7be7 (diff) |
Add FFMPEG_ prefix to all multiple inclusion guards.
Originally committed as revision 10765 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/i386')
-rw-r--r-- | libavcodec/i386/mathops.h | 6 | ||||
-rw-r--r-- | libavcodec/i386/mmx.h | 6 | ||||
-rw-r--r-- | libavcodec/i386/vp3dsp_mmx.h | 6 | ||||
-rw-r--r-- | libavcodec/i386/vp3dsp_sse2.h | 6 |
4 files changed, 12 insertions, 12 deletions
diff --git a/libavcodec/i386/mathops.h b/libavcodec/i386/mathops.h index 3d8c002d97..51d59396e1 100644 --- a/libavcodec/i386/mathops.h +++ b/libavcodec/i386/mathops.h @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef AVCODEC_X86_MATHOPS_H -#define AVCODEC_X86_MATHOPS_H +#ifndef FFMPEG_I386_MATHOPS_H +#define FFMPEG_I386_MATHOPS_H #ifdef FRAC_BITS # define MULL(ra, rb) \ @@ -42,4 +42,4 @@ asm ("imull %2\n\t" : "=A"(rt) : "a" (ra), "g" (rb));\ rt; }) -#endif // AVCODEC_X86_MATHOPS_H +#endif /* FFMPEG_I386_MATHOPS_H */ diff --git a/libavcodec/i386/mmx.h b/libavcodec/i386/mmx.h index 41aae6c21b..102abd2312 100644 --- a/libavcodec/i386/mmx.h +++ b/libavcodec/i386/mmx.h @@ -18,8 +18,8 @@ * License along with FFmpeg; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef AVCODEC_I386MMX_H -#define AVCODEC_I386MMX_H +#ifndef FFMPEG_MMX_H +#define FFMPEG_MMX_H /* * The type of an value that fits in an MMX register (note that long @@ -280,4 +280,4 @@ typedef union { #define punpckhqdq_r2r(regs,regd) mmx_r2r (punpckhqdq, regs, regd) -#endif /* AVCODEC_I386MMX_H */ +#endif /* FFMPEG_MMX_H */ diff --git a/libavcodec/i386/vp3dsp_mmx.h b/libavcodec/i386/vp3dsp_mmx.h index b1339434ab..7c2bc601be 100644 --- a/libavcodec/i386/vp3dsp_mmx.h +++ b/libavcodec/i386/vp3dsp_mmx.h @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef VP3DSP_MMX_H -#define VP3DSP_MMX_H +#ifndef FFMPEG_VP3DSP_MMX_H +#define FFMPEG_VP3DSP_MMX_H #include "dsputil.h" @@ -29,4 +29,4 @@ void ff_vp3_idct_put_mmx(uint8_t *dest, int line_size, DCTELEM *block); void ff_vp3_idct_add_mmx(uint8_t *dest, int line_size, DCTELEM *block); void ff_vp3_dsp_init_mmx(void); -#endif /* VP3DSP_MMX_H */ +#endif /* FFMPEG_VP3DSP_MMX_H */ diff --git a/libavcodec/i386/vp3dsp_sse2.h b/libavcodec/i386/vp3dsp_sse2.h index 743c20fdb1..d02918f459 100644 --- a/libavcodec/i386/vp3dsp_sse2.h +++ b/libavcodec/i386/vp3dsp_sse2.h @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef VP3DSP_SSE2_H -#define VP3DSP_SSE2_H +#ifndef FFMPEG_VP3DSP_SSE2_H +#define FFMPEG_VP3DSP_SSE2_H #include "dsputil.h" @@ -28,4 +28,4 @@ void ff_vp3_idct_sse2(int16_t *input_data); void ff_vp3_idct_put_sse2(uint8_t *dest, int line_size, DCTELEM *block); void ff_vp3_idct_add_sse2(uint8_t *dest, int line_size, DCTELEM *block); -#endif /* VP3DSP_SSE2_H */ +#endif /* FFMPEG_VP3DSP_SSE2_H */ |