From 2a5805e2cbeb706d000f47da6feda7619b2959ba Mon Sep 17 00:00:00 2001 From: James Zern Date: Wed, 22 Aug 2018 14:03:54 -0700 Subject: cosmetics: normalize include guards use the recommended format [1] of: ___H_ [1] https://google.github.io/styleguide/cppguide.html#The__define_Guard "All header files should have #define guards to prevent multiple inclusion. The format of the symbol name should be ___H_." Change-Id: I2e8ab0b32fb23c30fa43cff5fec12d043c0d2037 --- vpx_scale/vpx_scale.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'vpx_scale/vpx_scale.h') diff --git a/vpx_scale/vpx_scale.h b/vpx_scale/vpx_scale.h index 478a48346..fd5ba7ccd 100644 --- a/vpx_scale/vpx_scale.h +++ b/vpx_scale/vpx_scale.h @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#ifndef VPX_SCALE_VPX_SCALE_H_ -#define VPX_SCALE_VPX_SCALE_H_ +#ifndef VPX_VPX_SCALE_VPX_SCALE_H_ +#define VPX_VPX_SCALE_VPX_SCALE_H_ #include "vpx_scale/yv12config.h" @@ -19,4 +19,4 @@ extern void vpx_scale_frame(YV12_BUFFER_CONFIG *src, YV12_BUFFER_CONFIG *dst, unsigned int vscale, unsigned int vratio, unsigned int interlaced); -#endif // VPX_SCALE_VPX_SCALE_H_ +#endif // VPX_VPX_SCALE_VPX_SCALE_H_ -- cgit v1.2.3