diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-05-17 16:58:04 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-05-21 13:48:10 +0200 |
commit | 153382e1b6b428a1dcb8dc3f06f64a6959d722c5 (patch) | |
tree | 1ff13033a808528d90b44a288dbf9bcc7c19b34e /libavcodec/arm | |
parent | d49051e0742c09345495ae0486c3601a15222ac4 (diff) | |
download | ffmpeg-153382e1b6b428a1dcb8dc3f06f64a6959d722c5.tar.gz |
multiple inclusion guard cleanup
Add missing multiple inclusion guards; clean up #endif comments;
add missing library prefixes; keep guard names consistent.
Diffstat (limited to 'libavcodec/arm')
-rw-r--r-- | libavcodec/arm/asm-offsets.h | 2 | ||||
-rw-r--r-- | libavcodec/arm/dsputil_arm.h | 2 | ||||
-rw-r--r-- | libavcodec/arm/mpegvideo_arm.h | 2 | ||||
-rw-r--r-- | libavcodec/arm/vp56_arith.h | 2 | ||||
-rw-r--r-- | libavcodec/arm/vp8.h | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/libavcodec/arm/asm-offsets.h b/libavcodec/arm/asm-offsets.h index 43c16301c0..110d33dbb5 100644 --- a/libavcodec/arm/asm-offsets.h +++ b/libavcodec/arm/asm-offsets.h @@ -36,4 +36,4 @@ #define H263_AIC 0xf0 #define INTER_SCANTAB_RASTER_END 0x138 -#endif +#endif /* AVCODEC_ARM_ASM_OFFSETS_H */ diff --git a/libavcodec/arm/dsputil_arm.h b/libavcodec/arm/dsputil_arm.h index 14d9836114..6d7e6a6d16 100644 --- a/libavcodec/arm/dsputil_arm.h +++ b/libavcodec/arm/dsputil_arm.h @@ -30,4 +30,4 @@ void ff_dsputil_init_vfp(DSPContext* c, AVCodecContext *avctx); void ff_dsputil_init_neon(DSPContext *c, AVCodecContext *avctx); void ff_dsputil_init_iwmmxt(DSPContext* c, AVCodecContext *avctx); -#endif +#endif /* AVCODEC_ARM_DSPUTIL_H */ diff --git a/libavcodec/arm/mpegvideo_arm.h b/libavcodec/arm/mpegvideo_arm.h index 0812ca1657..a36da6112b 100644 --- a/libavcodec/arm/mpegvideo_arm.h +++ b/libavcodec/arm/mpegvideo_arm.h @@ -24,4 +24,4 @@ void MPV_common_init_iwmmxt(MpegEncContext *s); void MPV_common_init_armv5te(MpegEncContext *s); -#endif +#endif /* AVCODEC_ARM_MPEGVIDEO_H */ diff --git a/libavcodec/arm/vp56_arith.h b/libavcodec/arm/vp56_arith.h index f5dbd1d4c7..0591d614a9 100644 --- a/libavcodec/arm/vp56_arith.h +++ b/libavcodec/arm/vp56_arith.h @@ -89,4 +89,4 @@ static inline int vp56_rac_get_prob_branchy_armv6(VP56RangeCoder *c, int pr) #endif -#endif +#endif /* AVCODEC_ARM_VP56_ARITH_H */ diff --git a/libavcodec/arm/vp8.h b/libavcodec/arm/vp8.h index 35cdd8b2bf..76a0397a8d 100644 --- a/libavcodec/arm/vp8.h +++ b/libavcodec/arm/vp8.h @@ -26,4 +26,4 @@ int ff_decode_block_coeffs_armv6(VP56RangeCoder *rc, DCTELEM block[16], int i, uint8_t *token_prob, int16_t qmul[2]); #endif -#endif +#endif /* AVCODEC_ARM_VP8_H */ |