diff options
author | Timothy Gu <timothygu99@gmail.com> | 2016-01-28 18:25:13 -0800 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2016-01-31 15:44:11 -0800 |
commit | 180f9a09588d1c68983692bb5245213956fdde11 (patch) | |
tree | acde2f7c3e24f7fab834cfafbeeebfc6b8785b8a /libavcodec/mips | |
parent | def56677e58de9aaa516a738b6469747662ac372 (diff) | |
download | ffmpeg-180f9a09588d1c68983692bb5245213956fdde11.tar.gz |
all: Make header guard names consistent
Diffstat (limited to 'libavcodec/mips')
-rw-r--r-- | libavcodec/mips/aacdec_mips.h | 6 | ||||
-rw-r--r-- | libavcodec/mips/aacsbr_mips.h | 6 | ||||
-rw-r--r-- | libavcodec/mips/amrwbdec_mips.h | 6 | ||||
-rw-r--r-- | libavcodec/mips/h264chroma_mips.h | 6 | ||||
-rw-r--r-- | libavcodec/mips/h264dsp_mips.h | 6 | ||||
-rw-r--r-- | libavcodec/mips/h264pred_mips.h | 6 | ||||
-rw-r--r-- | libavcodec/mips/lsp_mips.h | 6 | ||||
-rw-r--r-- | libavcodec/mips/mpegvideo_mips.h | 6 |
8 files changed, 24 insertions, 24 deletions
diff --git a/libavcodec/mips/aacdec_mips.h b/libavcodec/mips/aacdec_mips.h index 054a9fba62..c4f6438570 100644 --- a/libavcodec/mips/aacdec_mips.h +++ b/libavcodec/mips/aacdec_mips.h @@ -54,8 +54,8 @@ * Reference: libavcodec/aacdec.c */ -#ifndef AVCODEC_MIPS_AACDEC_FLOAT_H -#define AVCODEC_MIPS_AACDEC_FLOAT_H +#ifndef AVCODEC_MIPS_AACDEC_MIPS_H +#define AVCODEC_MIPS_AACDEC_MIPS_H #include "libavcodec/aac.h" #include "libavutil/mips/asmdefs.h" @@ -248,4 +248,4 @@ static inline float *VMUL4S_mips(float *dst, const float *v, unsigned idx, #define VMUL4S VMUL4S_mips #endif /* HAVE_INLINE_ASM && HAVE_MIPSFPU */ -#endif /* AVCODEC_MIPS_AACDEC_FLOAT_H */ +#endif /* AVCODEC_MIPS_AACDEC_MIPS_H */ diff --git a/libavcodec/mips/aacsbr_mips.h b/libavcodec/mips/aacsbr_mips.h index da8389f484..13e55d26ea 100644 --- a/libavcodec/mips/aacsbr_mips.h +++ b/libavcodec/mips/aacsbr_mips.h @@ -51,8 +51,8 @@ * Reference: libavcodec/aacsbr.c */ -#ifndef AVCODEC_MIPS_AACSBR_FLOAT_H -#define AVCODEC_MIPS_AACSBR_FLOAT_H +#ifndef AVCODEC_MIPS_AACSBR_MIPS_H +#define AVCODEC_MIPS_AACSBR_MIPS_H #include "libavcodec/aac.h" #include "libavcodec/sbr.h" @@ -491,4 +491,4 @@ static void sbr_qmf_synthesis_mips(FFTContext *mdct, #endif /* HAVE_MIPSFPU */ #endif /* HAVE_INLINE_ASM */ -#endif /* AVCODEC_MIPS_AACSBR_FLOAT_H */ +#endif /* AVCODEC_MIPS_AACSBR_MIPS_H */ diff --git a/libavcodec/mips/amrwbdec_mips.h b/libavcodec/mips/amrwbdec_mips.h index b3355fb45b..ec46f95224 100644 --- a/libavcodec/mips/amrwbdec_mips.h +++ b/libavcodec/mips/amrwbdec_mips.h @@ -49,8 +49,8 @@ * @file * Reference: libavcodec/amrwbdec.c */ -#ifndef AVCODEC_AMRWBDEC_MIPS_H -#define AVCODEC_AMRWBDEC_MIPS_H +#ifndef AVCODEC_MIPS_AMRWBDEC_MIPS_H +#define AVCODEC_MIPS_AMRWBDEC_MIPS_H #include "config.h" #if HAVE_MIPSFPU && HAVE_INLINE_ASM @@ -59,4 +59,4 @@ void ff_hb_fir_filter_mips(float *out, const float fir_coef[], #define hb_fir_filter ff_hb_fir_filter_mips #endif -#endif /* AVCODEC_AMRWBDEC_MIPS_H */ +#endif /* AVCODEC_MIPS_AMRWBDEC_MIPS_H */ diff --git a/libavcodec/mips/h264chroma_mips.h b/libavcodec/mips/h264chroma_mips.h index 7a373b8395..0ef6c74691 100644 --- a/libavcodec/mips/h264chroma_mips.h +++ b/libavcodec/mips/h264chroma_mips.h @@ -18,8 +18,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef H264_CHROMA_MIPS_H -#define H264_CHROMA_MIPS_H +#ifndef AVCODEC_MIPS_H264CHROMA_MIPS_H +#define AVCODEC_MIPS_H264CHROMA_MIPS_H #include "libavcodec/h264.h" void ff_put_h264_chroma_mc8_msa(uint8_t *dst, uint8_t *src, int stride, @@ -44,4 +44,4 @@ void ff_put_h264_chroma_mc4_mmi(uint8_t *dst, uint8_t *src, int stride, void ff_avg_h264_chroma_mc4_mmi(uint8_t *dst, uint8_t *src, int stride, int h, int x, int y); -#endif /* H264_CHROMA_MIPS_H */ +#endif /* AVCODEC_MIPS_H264CHROMA_MIPS_H */ diff --git a/libavcodec/mips/h264dsp_mips.h b/libavcodec/mips/h264dsp_mips.h index 3fdbf4fb5e..2fdfd11d95 100644 --- a/libavcodec/mips/h264dsp_mips.h +++ b/libavcodec/mips/h264dsp_mips.h @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef H264_DSP_MIPS_H -#define H264_DSP_MIPS_H +#ifndef AVCODEC_MIPS_H264DSP_MIPS_H +#define AVCODEC_MIPS_H264DSP_MIPS_H #include "libavcodec/h264.h" #include "constants.h" @@ -574,4 +574,4 @@ void ff_avg_h264_qpel4_mc23_mmi(uint8_t *dst, const uint8_t *src, void ff_avg_h264_qpel4_mc33_mmi(uint8_t *dst, const uint8_t *src, ptrdiff_t dst_stride); -#endif // #ifndef H264_DSP_MIPS_H +#endif // #ifndef AVCODEC_MIPS_H264DSP_MIPS_H diff --git a/libavcodec/mips/h264pred_mips.h b/libavcodec/mips/h264pred_mips.h index d7d12c5a20..136e291252 100644 --- a/libavcodec/mips/h264pred_mips.h +++ b/libavcodec/mips/h264pred_mips.h @@ -18,8 +18,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef H264_PRED_MIPS_H -#define H264_PRED_MIPS_H +#ifndef AVCODEC_MIPS_H264PRED_MIPS_H +#define AVCODEC_MIPS_H264PRED_MIPS_H #include "constants.h" #include "libavcodec/h264pred.h" @@ -45,4 +45,4 @@ void ff_pred8x8_dc_8_mmi(uint8_t *src, ptrdiff_t stride); void ff_pred8x16_vertical_8_mmi(uint8_t *src, ptrdiff_t stride); void ff_pred8x16_horizontal_8_mmi(uint8_t *src, ptrdiff_t stride); -#endif /* H264_PRED_MIPS_H */ +#endif /* AVCODEC_MIPS_H264PRED_MIPS_H */ diff --git a/libavcodec/mips/lsp_mips.h b/libavcodec/mips/lsp_mips.h index 9d7521865b..1e899bcd7c 100644 --- a/libavcodec/mips/lsp_mips.h +++ b/libavcodec/mips/lsp_mips.h @@ -51,8 +51,8 @@ * @file * Reference: libavcodec/lsp.c */ -#ifndef AVCODEC_LSP_MIPS_H -#define AVCODEC_LSP_MIPS_H +#ifndef AVCODEC_MIPS_LSP_MIPS_H +#define AVCODEC_MIPS_LSP_MIPS_H #if HAVE_MIPSFPU && HAVE_INLINE_ASM #include "libavutil/mips/asmdefs.h" @@ -108,4 +108,4 @@ static av_always_inline void ff_lsp2polyf_mips(const double *lsp, double *f, int } #define ff_lsp2polyf ff_lsp2polyf_mips #endif /* HAVE_MIPSFPU && HAVE_INLINE_ASM */ -#endif /* AVCODEC_LSP_MIPS_H */ +#endif /* AVCODEC_MIPS_LSP_MIPS_H */ diff --git a/libavcodec/mips/mpegvideo_mips.h b/libavcodec/mips/mpegvideo_mips.h index decacd4c62..760d7b3295 100644 --- a/libavcodec/mips/mpegvideo_mips.h +++ b/libavcodec/mips/mpegvideo_mips.h @@ -18,8 +18,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef MPEGVIDEO_MIPS_H -#define MPEGVIDEO_MIPS_H +#ifndef AVCODEC_MIPS_MPEGVIDEO_MIPS_H +#define AVCODEC_MIPS_MPEGVIDEO_MIPS_H #include "libavcodec/mpegvideo.h" @@ -35,4 +35,4 @@ void ff_dct_unquantize_mpeg2_intra_mmi(MpegEncContext *s, int16_t *block, int n, int qscale); void ff_denoise_dct_mmi(MpegEncContext *s, int16_t *block); -#endif /* MPEGVIDEO_MIPS_H */ +#endif /* AVCODEC_MIPS_MPEGVIDEO_MIPS_H */ |