diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-12-23 16:39:36 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-02-20 04:16:15 -0800 |
commit | 017a06a9ee86b047079166c2694c9c655ff03356 (patch) | |
tree | 69da851a51e42d7009f2ed22be7cf122f547f973 | |
parent | ba42c852477e87f6e47a5587e8f7829c46c52032 (diff) | |
download | ffmpeg-017a06a9ee86b047079166c2694c9c655ff03356.tar.gz |
x86: dsputil: Use correct file name as multiple inclusion guard
-rw-r--r-- | libavcodec/x86/dsputil_x86.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/x86/dsputil_x86.h b/libavcodec/x86/dsputil_x86.h index c8615b2472..c003cee027 100644 --- a/libavcodec/x86/dsputil_x86.h +++ b/libavcodec/x86/dsputil_x86.h @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef AVCODEC_X86_DSPUTIL_MMX_H -#define AVCODEC_X86_DSPUTIL_MMX_H +#ifndef AVCODEC_X86_DSPUTIL_X86_H +#define AVCODEC_X86_DSPUTIL_X86_H #include <stddef.h> #include <stdint.h> @@ -186,4 +186,4 @@ STATIC void PFX1 ## _pixels16 ## TYPE ## CPUEXT(uint8_t *block, \ line_size, h); \ } -#endif /* AVCODEC_X86_DSPUTIL_MMX_H */ +#endif /* AVCODEC_X86_DSPUTIL_X86_H */ |