diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-01-03 10:29:19 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-01-04 16:39:37 +0100 |
commit | 3d72a6f19e656afc52007b8ef9810aedabf41c29 (patch) | |
tree | d09f0a98dc1036088dc7ac1b9ad16108460ac339 /libswscale | |
parent | 00a1cdd2645992c084a6c71746b04babb7cae364 (diff) | |
download | ffmpeg-3d72a6f19e656afc52007b8ef9810aedabf41c29.tar.gz |
swscale: Use standard multiple inclusion guards in ppc/ header files.
Diffstat (limited to 'libswscale')
-rw-r--r-- | libswscale/ppc/yuv2rgb_altivec.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libswscale/ppc/yuv2rgb_altivec.h b/libswscale/ppc/yuv2rgb_altivec.h index b809fe13fe..ab5fcde513 100644 --- a/libswscale/ppc/yuv2rgb_altivec.h +++ b/libswscale/ppc/yuv2rgb_altivec.h @@ -21,8 +21,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PPC_YUV2RGB_ALTIVEC_H -#define PPC_YUV2RGB_ALTIVEC_H 1 +#ifndef SWSCALE_PPC_YUV2RGB_ALTIVEC_H +#define SWSCALE_PPC_YUV2RGB_ALTIVEC_H #define YUV2PACKEDX_HEADER(suffix) \ void ff_yuv2 ## suffix ## _X_altivec(SwsContext *c, const int16_t *lumFilter, \ @@ -39,4 +39,4 @@ YUV2PACKEDX_HEADER(rgba); YUV2PACKEDX_HEADER(rgb24); YUV2PACKEDX_HEADER(bgr24); -#endif /* PPC_YUV2RGB_ALTIVEC_H */ +#endif /* SWSCALE_PPC_YUV2RGB_ALTIVEC_H */ |