diff options
author | James Zern <jzern@google.com> | 2013-12-15 18:40:23 -0800 |
---|---|---|
committer | James Zern <jzern@google.com> | 2013-12-16 19:41:13 -0800 |
commit | 0f512788c8cc2af914538acc31a9ae9bb03f5741 (patch) | |
tree | 241b97dbd4d57b5601f1d486ff722e317218d4cf /vpx_scale | |
parent | d2f49407830de9dbc466f03fcdc90d379a3c0269 (diff) | |
download | libvpx-0f512788c8cc2af914538acc31a9ae9bb03f5741.tar.gz libvpx-0f512788c8cc2af914538acc31a9ae9bb03f5741.tar.bz2 libvpx-0f512788c8cc2af914538acc31a9ae9bb03f5741.zip |
{,vpx_scale}: normalize include guards
Change-Id: Ib8aafeee30d59521ee256dc1801e0db6b4b8a371
Diffstat (limited to 'vpx_scale')
-rw-r--r-- | vpx_scale/vpx_scale.h | 6 | ||||
-rw-r--r-- | vpx_scale/yv12config.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/vpx_scale/vpx_scale.h b/vpx_scale/vpx_scale.h index 9ddf62efd..43fcf9d66 100644 --- a/vpx_scale/vpx_scale.h +++ b/vpx_scale/vpx_scale.h @@ -9,8 +9,8 @@ */ -#ifndef VPXSCALE_H -#define VPXSCALE_H +#ifndef VPX_SCALE_VPX_SCALE_H_ +#define VPX_SCALE_VPX_SCALE_H_ #include "vpx_scale/yv12config.h" @@ -24,4 +24,4 @@ extern void vpx_scale_frame(YV12_BUFFER_CONFIG *src, unsigned int vratio, unsigned int interlaced); -#endif +#endif // VPX_SCALE_VPX_SCALE_H_ diff --git a/vpx_scale/yv12config.h b/vpx_scale/yv12config.h index f23e1163c..bf5fc0779 100644 --- a/vpx_scale/yv12config.h +++ b/vpx_scale/yv12config.h @@ -8,8 +8,8 @@ * be found in the AUTHORS file in the root of the source tree. */ -#ifndef YV12_CONFIG_H -#define YV12_CONFIG_H +#ifndef VPX_SCALE_YV12CONFIG_H_ +#define VPX_SCALE_YV12CONFIG_H_ #ifdef __cplusplus extern "C" { @@ -85,4 +85,4 @@ extern "C" { } #endif -#endif // YV12_CONFIG_H +#endif // VPX_SCALE_YV12CONFIG_H_ |