summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohann <johannkoenig@google.com>2017-02-16 12:43:33 -0800
committerJohann <johannkoenig@google.com>2017-02-16 12:43:33 -0800
commit6c2d732bf484386603cdc772c050b4290c05cee6 (patch)
treeed789ec499affcfb6e05d1e8c82d264bd4a96c39
parentcc430126747d07cc8010aab29309601fa6357ee1 (diff)
downloadlibvpx-6c2d732bf484386603cdc772c050b4290c05cee6.tar
libvpx-6c2d732bf484386603cdc772c050b4290c05cee6.tar.gz
libvpx-6c2d732bf484386603cdc772c050b4290c05cee6.tar.bz2
libvpx-6c2d732bf484386603cdc772c050b4290c05cee6.zip
correct bitdepth_conversion_sse2.h header guard
Change-Id: Ic4ffd861608e67fe59bcb3a86010ce3ef11a5519
-rw-r--r--vpx_dsp/x86/bitdepth_conversion_sse2.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/vpx_dsp/x86/bitdepth_conversion_sse2.h b/vpx_dsp/x86/bitdepth_conversion_sse2.h
index c5a29efbe..5d1d77957 100644
--- a/vpx_dsp/x86/bitdepth_conversion_sse2.h
+++ b/vpx_dsp/x86/bitdepth_conversion_sse2.h
@@ -7,8 +7,8 @@
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
-#ifndef VPX_DSP_X86_FDCT_H_
-#define VPX_DSP_X86_FDCT_H_
+#ifndef VPX_DSP_X86_BITDEPTH_CONVERSION_SSE2_H_
+#define VPX_DSP_X86_BITDEPTH_CONVERSION_SSE2_H_
#include <xmmintrin.h>
@@ -53,4 +53,4 @@ static INLINE void store_zero_tran_low(tran_low_t *a) {
_mm_store_si128((__m128i *)(a), zero);
#endif
}
-#endif // VPX_DSP_X86_FDCT_H_
+#endif // VPX_DSP_X86_BITDEPTH_CONVERSION_SSE2_H_