diff --git a/vp8/common/alloccommon.h b/vp8/common/alloccommon.h index ea93c252280b305bcdee0799181c7d6947541c57..38f89a0f1243cd7c708d5e1123fa5334f24e3ee0 100644 --- a/vp8/common/alloccommon.h +++ b/vp8/common/alloccommon.h @@ -9,8 +9,8 @@ */ -#ifndef __INC_ALLOCCOMMON_H -#define __INC_ALLOCCOMMON_H +#ifndef VP8_COMMON_ALLOCCOMMON_H_ +#define VP8_COMMON_ALLOCCOMMON_H_ #include "onyxc_int.h" @@ -20,4 +20,4 @@ void vp8_de_alloc_frame_buffers(VP8_COMMON *oci); int vp8_alloc_frame_buffers(VP8_COMMON *oci, int width, int height); void vp8_setup_version(VP8_COMMON *oci); -#endif +#endif // VP8_COMMON_ALLOCCOMMON_H_ diff --git a/vp8/common/arm/bilinearfilter_arm.h b/vp8/common/arm/bilinearfilter_arm.h index b7155d3f0a5c6413b89786055a9669e08442293f..dd3ff14fbde9f8890d0b1787911b959a937f96f5 100644 --- a/vp8/common/arm/bilinearfilter_arm.h +++ b/vp8/common/arm/bilinearfilter_arm.h @@ -9,8 +9,8 @@ */ -#ifndef BILINEARFILTER_ARM_H -#define BILINEARFILTER_ARM_H +#ifndef VP8_COMMON_ARM_BILINEARFILTER_ARM_H_ +#define VP8_COMMON_ARM_BILINEARFILTER_ARM_H_ extern void vp8_filter_block2d_bil_first_pass_armv6 ( @@ -32,4 +32,4 @@ extern void vp8_filter_block2d_bil_second_pass_armv6 const short *vp8_filter ); -#endif /* BILINEARFILTER_ARM_H */ +#endif // VP8_COMMON_ARM_BILINEARFILTER_ARM_H_ diff --git a/vp8/common/blockd.h b/vp8/common/blockd.h index f7ff57763526c104238fb97ee23aaca740d6e7b6..c3caee10e2abee76afead9c4253d9dc13cf23c62 100644 --- a/vp8/common/blockd.h +++ b/vp8/common/blockd.h @@ -9,8 +9,8 @@ */ -#ifndef __INC_BLOCKD_H -#define __INC_BLOCKD_H +#ifndef VP8_COMMON_BLOCKD_H_ +#define VP8_COMMON_BLOCKD_H_ void vpx_log(const char *format, ...); @@ -297,4 +297,4 @@ typedef struct macroblockd extern void vp8_build_block_doffsets(MACROBLOCKD *x); extern void vp8_setup_block_dptrs(MACROBLOCKD *x); -#endif /* __INC_BLOCKD_H */ +#endif // VP8_COMMON_BLOCKD_H_ diff --git a/vp8/common/coefupdateprobs.h b/vp8/common/coefupdateprobs.h index 9e194dc9a4dc829fa4564e7b9cda1c2c024df200..90d290d6e7c3e6474f68a736cb4fbd0d279ffcc3 100644 --- a/vp8/common/coefupdateprobs.h +++ b/vp8/common/coefupdateprobs.h @@ -8,6 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ +#ifndef VP8_COMMON_COEFUPDATEPROBS_H_ +#define VP8_COMMON_COEFUPDATEPROBS_H_ /* Update probabilities for the nodes in the token entropy tree. Generated file included by entropy.c */ @@ -183,3 +185,5 @@ const vp8_prob vp8_coef_update_probs [BLOCK_TYPES] [COEF_BANDS] [PREV_COEF_CONTE }, }, }; + +#endif // VP8_COMMON_COEFUPDATEPROBS_H_ diff --git a/vp8/common/common.h b/vp8/common/common.h index 2cc1c544cdfe681a6c42234b4d3bedda2a400e61..9671da00f17c59338f40fa7d035ad621020984aa 100644 --- a/vp8/common/common.h +++ b/vp8/common/common.h @@ -9,8 +9,8 @@ */ -#ifndef common_h -#define common_h 1 +#ifndef VP8_COMMON_COMMON_H_ +#define VP8_COMMON_COMMON_H_ #include <assert.h> @@ -37,4 +37,4 @@ #define vp8_zero_array( Dest, N) vpx_memset( Dest, 0, N * sizeof( *Dest)); -#endif /* common_h */ +#endif // VP8_COMMON_COMMON_H_ diff --git a/vp8/common/default_coef_probs.h b/vp8/common/default_coef_probs.h index 0d195636bcb70b8b2f372ffa91cf5c35b7b9ecca..8368545943d22006b7167f57aa0e1af73653b374 100644 --- a/vp8/common/default_coef_probs.h +++ b/vp8/common/default_coef_probs.h @@ -8,6 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ +#ifndef VP8_COMMON_DEFAULT_COEF_PROBS_H_ +#define VP8_COMMON_DEFAULT_COEF_PROBS_H_ /*Generated file, included by entropy.c*/ @@ -186,3 +188,5 @@ static const vp8_prob default_coef_probs [BLOCK_TYPES] } } }; + +#endif // VP8_COMMON_DEFAULT_COEF_PROBS_H_ diff --git a/vp8/common/entropy.h b/vp8/common/entropy.h index 5389bc1de4e58f884289d690f36e5028a6ac2ffb..175fa9f61d315e726ca48fbd0e07a5eead140480 100644 --- a/vp8/common/entropy.h +++ b/vp8/common/entropy.h @@ -9,8 +9,8 @@ */ -#ifndef __INC_ENTROPY_H -#define __INC_ENTROPY_H +#ifndef VP8_COMMON_ENTROPY_H_ +#define VP8_COMMON_ENTROPY_H_ #include "treecoder.h" #include "blockd.h" @@ -98,4 +98,4 @@ extern DECLARE_ALIGNED(16, const short, vp8_default_zig_zag_mask[16]); extern const int vp8_mb_feature_data_bits[MB_LVL_MAX]; void vp8_coef_tree_initialize(void); -#endif +#endif // VP8_COMMON_ENTROPY_H_ diff --git a/vp8/common/entropymode.h b/vp8/common/entropymode.h index 1df0f641e496987bf4ccfa34178a66c4881af187..18af8c0b88b466ff576fcafe4fb2ba5e26ab0384 100644 --- a/vp8/common/entropymode.h +++ b/vp8/common/entropymode.h @@ -9,8 +9,8 @@ */ -#ifndef __INC_ENTROPYMODE_H -#define __INC_ENTROPYMODE_H +#ifndef VP8_COMMON_ENTROPYMODE_H_ +#define VP8_COMMON_ENTROPYMODE_H_ #include "onyxc_int.h" #include "treecoder.h" @@ -77,4 +77,4 @@ void vp8_init_mbmode_probs(VP8_COMMON *x); void vp8_default_bmode_probs(vp8_prob dest [VP8_BINTRAMODES-1]); void vp8_kf_default_bmode_probs(vp8_prob dest [VP8_BINTRAMODES] [VP8_BINTRAMODES] [VP8_BINTRAMODES-1]); -#endif +#endif // VP8_COMMON_ENTROPYMODE_H_ diff --git a/vp8/common/entropymv.h b/vp8/common/entropymv.h index 2db1e385baeaf64ed0a49ba7f7e505cd38b4589d..7d16b988f6ffdb036339ad1b93728adaf516d2f2 100644 --- a/vp8/common/entropymv.h +++ b/vp8/common/entropymv.h @@ -9,8 +9,8 @@ */ -#ifndef __INC_ENTROPYMV_H -#define __INC_ENTROPYMV_H +#ifndef VP8_COMMON_ENTROPYMV_H_ +#define VP8_COMMON_ENTROPYMV_H_ #include "treecoder.h" @@ -41,4 +41,4 @@ typedef struct mv_context extern const MV_CONTEXT vp8_mv_update_probs[2], vp8_default_mv_context[2]; -#endif +#endif // VP8_COMMON_ENTROPYMV_H_ diff --git a/vp8/common/extend.h b/vp8/common/extend.h index 74a0b177d94d211d7889ce684720a282b5d4ec56..b7e70407992a867c59482763668e9c86323b7836 100644 --- a/vp8/common/extend.h +++ b/vp8/common/extend.h @@ -9,8 +9,8 @@ */ -#ifndef __INC_EXTEND_H -#define __INC_EXTEND_H +#ifndef VP8_COMMON_EXTEND_H_ +#define VP8_COMMON_EXTEND_H_ #include "vpx_scale/yv12config.h" @@ -22,4 +22,4 @@ void vp8_copy_and_extend_frame_with_rect(YV12_BUFFER_CONFIG *src, int srcy, int srcx, int srch, int srcw); -#endif +#endif // VP8_COMMON_EXTEND_H_ diff --git a/vp8/common/filter.h b/vp8/common/filter.h index ccda7c8d0202bb2c3c3ef4364b4de7ca58e7eacb..c2048ee135f1be71c848cea2fe29453823a61a08 100644 --- a/vp8/common/filter.h +++ b/vp8/common/filter.h @@ -9,8 +9,8 @@ */ -#ifndef FILTER_H -#define FILTER_H +#ifndef VP8_COMMON_FILTER_H_ +#define VP8_COMMON_FILTER_H_ #include "vpx_ports/mem.h" @@ -21,4 +21,4 @@ extern DECLARE_ALIGNED(16, const short, vp8_bilinear_filters[8][2]); extern DECLARE_ALIGNED(16, const short, vp8_sub_pel_filters[8][6]); -#endif +#endif // VP8_COMMON_FILTER_H_ diff --git a/vp8/common/findnearmv.h b/vp8/common/findnearmv.h index c60e463614bc754edea8b2791ef4216068822cbd..1525db24fd122fe835c88f0a051979b9f23255a5 100644 --- a/vp8/common/findnearmv.h +++ b/vp8/common/findnearmv.h @@ -9,8 +9,8 @@ */ -#ifndef __INC_FINDNEARMV_H -#define __INC_FINDNEARMV_H +#ifndef VP8_COMMON_FINDNEARMV_H_ +#define VP8_COMMON_FINDNEARMV_H_ #include "mv.h" #include "blockd.h" @@ -179,4 +179,4 @@ static B_PREDICTION_MODE above_block_mode(const MODE_INFO *cur_mb, int b, int mi return (cur_mb->bmi + b - 4)->as_mode; } -#endif +#endif // VP8_COMMON_FINDNEARMV_H_ diff --git a/vp8/common/header.h b/vp8/common/header.h index 3e98eeb3c344e78f46f9f31ceda6781232170dd2..61a8f49bcf0cbcda82c0af3ae9de49968255a0a7 100644 --- a/vp8/common/header.h +++ b/vp8/common/header.h @@ -9,8 +9,8 @@ */ -#ifndef __INC_HEADER_H -#define __INC_HEADER_H +#ifndef VP8_COMMON_HEADER_H_ +#define VP8_COMMON_HEADER_H_ /* 24 bits total */ typedef struct @@ -40,4 +40,4 @@ typedef struct #endif -#endif +#endif // VP8_COMMON_HEADER_H_ diff --git a/vp8/common/invtrans.h b/vp8/common/invtrans.h index 9262640d5707924ccfdcad68fb39cadfd46fbf40..0186e6b3b56f4f55321603eab7901ab128d7f207 100644 --- a/vp8/common/invtrans.h +++ b/vp8/common/invtrans.h @@ -9,8 +9,8 @@ */ -#ifndef __INC_INVTRANS_H -#define __INC_INVTRANS_H +#ifndef VP8_COMMON_INVTRANS_H_ +#define VP8_COMMON_INVTRANS_H_ #include "vpx_config.h" #include "vp8_rtcd.h" @@ -59,4 +59,4 @@ static void vp8_inverse_transform_mby(MACROBLOCKD *xd) xd->dst.y_buffer, xd->dst.y_stride, xd->eobs); } -#endif +#endif // VP8_COMMON_INVTRANS_H_ diff --git a/vp8/common/loopfilter.h b/vp8/common/loopfilter.h index 1e47f3490733cb8ae38eb81976593846b6ba5770..51825efc195059bafc5b3b26fcc911921e1ac034 100644 --- a/vp8/common/loopfilter.h +++ b/vp8/common/loopfilter.h @@ -9,8 +9,8 @@ */ -#ifndef loopfilter_h -#define loopfilter_h +#ifndef VP8_COMMON_LOOPFILTER_H_ +#define VP8_COMMON_LOOPFILTER_H_ #include "vpx_ports/mem.h" #include "vpx_config.h" @@ -102,4 +102,4 @@ void vp8_loop_filter_row_simple(struct VP8Common *cm, int mb_row, int post_ystride, int post_uvstride, unsigned char *y_ptr, unsigned char *u_ptr, unsigned char *v_ptr); -#endif +#endif // VP8_COMMON_LOOPFILTER_H_ diff --git a/vp8/common/modecont.h b/vp8/common/modecont.h index 24db88295f92aaa052d3303198101aac8725c848..875bc2754a8bd16a1f0296fcee5355a159dcf021 100644 --- a/vp8/common/modecont.h +++ b/vp8/common/modecont.h @@ -9,9 +9,9 @@ */ -#ifndef __INC_MODECONT_H -#define __INC_MODECONT_H +#ifndef VP8_COMMON_MODECONT_H_ +#define VP8_COMMON_MODECONT_H_ extern const int vp8_mode_contexts[6][4]; -#endif +#endif // VP8_COMMON_MODECONT_H_ diff --git a/vp8/common/mv.h b/vp8/common/mv.h index b3f919db2bd6d62611c49a89a8159d3a9e724dd4..1e4b206a2a037d4cc437e6798267be187276824c 100644 --- a/vp8/common/mv.h +++ b/vp8/common/mv.h @@ -9,8 +9,8 @@ */ -#ifndef __INC_MV_H -#define __INC_MV_H +#ifndef VP8_COMMON_MV_H_ +#define VP8_COMMON_MV_H_ #include "vpx/vpx_integer.h" typedef struct @@ -25,4 +25,4 @@ typedef union int_mv MV as_mv; } int_mv; /* facilitates faster equality tests and copies */ -#endif +#endif // VP8_COMMON_MV_H_ diff --git a/vp8/common/onyx.h b/vp8/common/onyx.h index 30c4cbbca63ae2daeaa7035fd8d4ba751d4621cc..209a25d82b32526284b17856078dcfe16bec4682 100644 --- a/vp8/common/onyx.h +++ b/vp8/common/onyx.h @@ -9,8 +9,8 @@ */ -#ifndef __INC_VP8_H -#define __INC_VP8_H +#ifndef VP8_COMMON_ONYX_H_ +#define VP8_COMMON_ONYX_H_ #ifdef __cplusplus extern "C" @@ -267,4 +267,4 @@ extern "C" } #endif -#endif +#endif // VP8_COMMON_ONYX_H_ diff --git a/vp8/common/onyxc_int.h b/vp8/common/onyxc_int.h index e9bb7af26b1673cedfcd5d4966ccd5e42a629496..92eb7f99a50fb615ae49eb55a7dd1e913d861ed2 100644 --- a/vp8/common/onyxc_int.h +++ b/vp8/common/onyxc_int.h @@ -9,8 +9,8 @@ */ -#ifndef __INC_VP8C_INT_H -#define __INC_VP8C_INT_H +#ifndef VP8_COMMON_ONYXC_INT_H_ +#define VP8_COMMON_ONYXC_INT_H_ #include "vpx_config.h" #include "vp8_rtcd.h" @@ -174,4 +174,4 @@ typedef struct VP8Common int cpu_caps; } VP8_COMMON; -#endif +#endif // VP8_COMMON_ONYXC_INT_H_ diff --git a/vp8/common/onyxd.h b/vp8/common/onyxd.h index 97c81c130a0adc3443ec945a32fc38a36d9e9d4b..e37b29f32cff50786c088def3c05250395ae7ae8 100644 --- a/vp8/common/onyxd.h +++ b/vp8/common/onyxd.h @@ -9,8 +9,8 @@ */ -#ifndef __INC_VP8D_H -#define __INC_VP8D_H +#ifndef VP8_COMMON_ONYXD_H_ +#define VP8_COMMON_ONYXD_H_ /* Create/destroy static data structures. */ @@ -60,4 +60,4 @@ extern "C" #endif -#endif +#endif // VP8_COMMON_ONYXD_H_ diff --git a/vp8/common/postproc.h b/vp8/common/postproc.h index 495a2c906f624e7edec5121e7f20e9a90d0cddfc..10baf6ccfb6d202c9eb97c1a511151f1d7b1323b 100644 --- a/vp8/common/postproc.h +++ b/vp8/common/postproc.h @@ -9,8 +9,8 @@ */ -#ifndef POSTPROC_H -#define POSTPROC_H +#ifndef VP8_COMMON_POSTPROC_H_ +#define VP8_COMMON_POSTPROC_H_ #include "vpx_ports/mem.h" struct postproc_state @@ -47,4 +47,4 @@ void vp8_deblock(struct VP8Common *oci, #define MFQE_PRECISION 4 void vp8_multiframe_quality_enhance(struct VP8Common *cm); -#endif +#endif // VP8_COMMON_POSTPROC_H_ diff --git a/vp8/common/ppflags.h b/vp8/common/ppflags.h index 665e21fd9654567ba9f77541ac42b74c5fb3211f..1fb37e17a3d62da58f2b49ad5fecd8cd8722505d 100644 --- a/vp8/common/ppflags.h +++ b/vp8/common/ppflags.h @@ -9,8 +9,8 @@ */ -#ifndef __INC_PPFLAGS_H -#define __INC_PPFLAGS_H +#ifndef VP8_COMMON_PPFLAGS_H_ +#define VP8_COMMON_PPFLAGS_H_ enum { VP8D_NOFILTERING = 0, @@ -38,4 +38,4 @@ typedef struct int display_mv_flag; } vp8_ppflags_t; -#endif +#endif // VP8_COMMON_PPFLAGS_H_ diff --git a/vp8/common/pragmas.h b/vp8/common/pragmas.h index 99fee5ae23278eeedc243cab5520c3588f2b5bf8..be10452d241fad14fbdf1d08b175e8758292152e 100644 --- a/vp8/common/pragmas.h +++ b/vp8/common/pragmas.h @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ - - +#ifndef VP8_COMMON_PRAGMAS_H_ +#define VP8_COMMON_PRAGMAS_H_ #ifdef __INTEL_COMPILER #pragma warning(disable:997 1011 170) @@ -17,3 +17,5 @@ #ifdef _MSC_VER #pragma warning(disable:4799) #endif + +#endif // VP8_COMMON_PRAGMAS_H_ diff --git a/vp8/common/quant_common.h b/vp8/common/quant_common.h index cb64d8eb8d878cc20025fe185add3668544422f8..4c7457f8dc3276ad4ba1b73d6a3315a35554b62e 100644 --- a/vp8/common/quant_common.h +++ b/vp8/common/quant_common.h @@ -8,6 +8,9 @@ * be found in the AUTHORS file in the root of the source tree. */ +#ifndef VP8_COMMON_QUANT_COMMON_H_ +#define VP8_COMMON_QUANT_COMMON_H_ + #include "string.h" #include "blockd.h" @@ -19,3 +22,5 @@ extern int vp8_dc2quant(int QIndex, int Delta); extern int vp8_ac2quant(int QIndex, int Delta); extern int vp8_dc_uv_quant(int QIndex, int Delta); extern int vp8_ac_uv_quant(int QIndex, int Delta); + +#endif // VP8_COMMON_QUANT_COMMON_H_ diff --git a/vp8/common/reconinter.h b/vp8/common/reconinter.h index 233c02e5ba5f6dba80460918d9fc82ea6334ae09..50ebedc0094341f00028473f0710b150beee81b9 100644 --- a/vp8/common/reconinter.h +++ b/vp8/common/reconinter.h @@ -9,8 +9,8 @@ */ -#ifndef __INC_RECONINTER_H -#define __INC_RECONINTER_H +#ifndef VP8_COMMON_RECONINTER_H_ +#define VP8_COMMON_RECONINTER_H_ extern void vp8_build_inter_predictors_mb(MACROBLOCKD *x); extern void vp8_build_inter16x16_predictors_mb(MACROBLOCKD *x, @@ -32,4 +32,4 @@ extern void vp8_build_inter_predictors_b(BLOCKD *d, int pitch, extern void vp8_build_inter16x16_predictors_mbuv(MACROBLOCKD *x); extern void vp8_build_inter4x4_predictors_mbuv(MACROBLOCKD *x); -#endif +#endif // VP8_COMMON_RECONINTER_H_ diff --git a/vp8/common/reconintra4x4.h b/vp8/common/reconintra4x4.h index d2b0d43461ebe24adc0197960a75347212940c00..cbb06ce789b11ef72ed88d58ef12a46b53b34a53 100644 --- a/vp8/common/reconintra4x4.h +++ b/vp8/common/reconintra4x4.h @@ -9,8 +9,8 @@ */ -#ifndef __INC_RECONINTRA4x4_H -#define __INC_RECONINTRA4x4_H +#ifndef VP8_COMMON_RECONINTRA4X4_H_ +#define VP8_COMMON_RECONINTRA4X4_H_ #include "vp8/common/blockd.h" static void intra_prediction_down_copy(MACROBLOCKD *xd, @@ -29,4 +29,4 @@ static void intra_prediction_down_copy(MACROBLOCKD *xd, *dst_ptr2 = *src_ptr; } -#endif +#endif // VP8_COMMON_RECONINTRA4X4_H_ diff --git a/vp8/common/setupintrarecon.h b/vp8/common/setupintrarecon.h index 8b6c50bd3c7838e16e135eeaaa5b10ffc8fac209..3db507b88ecc7a0f06cffc9a22a5cc7c433fd35a 100644 --- a/vp8/common/setupintrarecon.h +++ b/vp8/common/setupintrarecon.h @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#ifndef SETUPINTRARECON_H -#define SETUPINTRARECON_H +#ifndef VP8_COMMON_SETUPINTRARECON_H_ +#define VP8_COMMON_SETUPINTRARECON_H_ #include "vpx_scale/yv12config.h" extern void vp8_setup_intra_recon(YV12_BUFFER_CONFIG *ybf); @@ -34,4 +34,4 @@ void setup_intra_recon_left(unsigned char *y_buffer, v_buffer[uv_stride *i] = (unsigned char) 129; } -#endif +#endif // VP8_COMMON_SETUPINTRARECON_H_ diff --git a/vp8/common/swapyv12buffer.h b/vp8/common/swapyv12buffer.h index a6473ed92be751ad94dda4aed266099b42768385..ea8977b10013b4096f97c43e1554a16b27337640 100644 --- a/vp8/common/swapyv12buffer.h +++ b/vp8/common/swapyv12buffer.h @@ -9,11 +9,11 @@ */ -#ifndef SWAPYV12_BUFFER_H -#define SWAPYV12_BUFFER_H +#ifndef VP8_COMMON_SWAPYV12BUFFER_H_ +#define VP8_COMMON_SWAPYV12BUFFER_H_ #include "vpx_scale/yv12config.h" void vp8_swap_yv12_buffer(YV12_BUFFER_CONFIG *new_frame, YV12_BUFFER_CONFIG *last_frame); -#endif +#endif // VP8_COMMON_SWAPYV12BUFFER_H_ diff --git a/vp8/common/systemdependent.h b/vp8/common/systemdependent.h index e6b0456f75bc88413981cef0096ac149d3f8f99a..966cc5d8b9a6c5a981e326498212ebbbc45ca052 100644 --- a/vp8/common/systemdependent.h +++ b/vp8/common/systemdependent.h @@ -8,8 +8,12 @@ * be found in the AUTHORS file in the root of the source tree. */ +#ifndef VP8_COMMON_SYSTEMDEPENDENT_H_ +#define VP8_COMMON_SYSTEMDEPENDENT_H_ #include "vpx_config.h" struct VP8Common; void vp8_machine_specific_config(struct VP8Common *); + +#endif // VP8_COMMON_SYSTEMDEPENDENT_H_ diff --git a/vp8/common/threading.h b/vp8/common/threading.h index ed9e3e60dcb86671b53f1456bb80b4dd4697d5ed..8cf6d26bc46f742a89378199e91a65fffd039ebd 100644 --- a/vp8/common/threading.h +++ b/vp8/common/threading.h @@ -9,8 +9,8 @@ */ -#ifndef _PTHREAD_EMULATION -#define _PTHREAD_EMULATION +#ifndef VP8_COMMON_THREADING_H_ +#define VP8_COMMON_THREADING_H_ #if CONFIG_OS_SUPPORT && CONFIG_MULTITHREAD @@ -183,4 +183,4 @@ static inline int sem_destroy(sem_t * sem) #endif /* CONFIG_OS_SUPPORT && CONFIG_MULTITHREAD */ -#endif +#endif // VP8_COMMON_THREADING_H_ diff --git a/vp8/common/treecoder.h b/vp8/common/treecoder.h index ebf51c5ed657d364f33754600301d57b194789ea..edb4b57754934a5a754bbca5fc7c11eeb59a4f3d 100644 --- a/vp8/common/treecoder.h +++ b/vp8/common/treecoder.h @@ -9,8 +9,8 @@ */ -#ifndef __INC_TREECODER_H -#define __INC_TREECODER_H +#ifndef VP8_COMMON_TREECODER_H_ +#define VP8_COMMON_TREECODER_H_ typedef unsigned char vp8bc_index_t; /* probability index */ @@ -87,4 +87,4 @@ void vp8bc_tree_probs_from_distribution( ); -#endif +#endif // VP8_COMMON_TREECODER_H_ diff --git a/vp8/common/variance.h b/vp8/common/variance.h index 01193b8d724318749f381998305eaaeb474af36f..12a03d0fb0ae173ff552843721f1e3b2278943b4 100644 --- a/vp8/common/variance.h +++ b/vp8/common/variance.h @@ -9,8 +9,8 @@ */ -#ifndef VARIANCE_H -#define VARIANCE_H +#ifndef VP8_COMMON_VARIANCE_H_ +#define VP8_COMMON_VARIANCE_H_ #include "vpx_config.h" @@ -112,4 +112,4 @@ typedef struct variance_vtable #endif } vp8_variance_fn_ptr_t; -#endif +#endif // VP8_COMMON_VARIANCE_H_ diff --git a/vp8/common/vp8_entropymodedata.h b/vp8/common/vp8_entropymodedata.h index 13e9a92fc106a0d3dd14954ddb5dce4b6a4bcbe1..988114804f579b58de839f6cfb94dcd2f496f217 100644 --- a/vp8/common/vp8_entropymodedata.h +++ b/vp8/common/vp8_entropymodedata.h @@ -8,6 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ +#ifndef VP8_COMMON_VP8_ENTROPYMODEDATA_H_ +#define VP8_COMMON_VP8_ENTROPYMODEDATA_H_ /*Generated file, included by entropymode.c*/ @@ -240,3 +242,5 @@ const vp8_prob vp8_kf_bmode_prob { 112, 19, 12, 61, 195, 128, 48, 4, 24 } } }; + +#endif // VP8_COMMON_VP8_ENTROPYMODEDATA_H_ diff --git a/vp8/common/x86/filter_x86.h b/vp8/common/x86/filter_x86.h index cfadaeecbc12c34f36d449a632cfb7157a817054..0d537d9df445a46d82013e3e63864ffd82df6647 100644 --- a/vp8/common/x86/filter_x86.h +++ b/vp8/common/x86/filter_x86.h @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#ifndef FILTER_X86_H -#define FILTER_X86_H +#ifndef VP8_COMMON_X86_FILTER_X86_H_ +#define VP8_COMMON_X86_FILTER_X86_H_ #include "vpx_ports/mem.h" @@ -22,4 +22,4 @@ extern DECLARE_ALIGNED(16, const short, vp8_bilinear_filters_x86_4[8][8]); /* duplicated 8x */ extern DECLARE_ALIGNED(16, const short, vp8_bilinear_filters_x86_8[8][16]); -#endif /* FILTER_X86_H */ +#endif // VP8_COMMON_X86_FILTER_X86_H_