summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-02-19 15:44:36 +0100
committerMichael Niedermayer <michaelni@gmx.at>2014-02-19 15:44:48 +0100
commit130c33af35c5d8798f70c62586ab228d4f8cd2a2 (patch)
tree5b300c61adb7c908441e76fcd2c50cc16fc566b7 /libavcodec
parentd808dce4a98f86be210d334185cacb662fbb20c2 (diff)
parentb23bc95920e2f10b9621857e829c45b064f356c0 (diff)
Merge commit 'b23bc95920e2f10b9621857e829c45b064f356c0'
* commit 'b23bc95920e2f10b9621857e829c45b064f356c0': x86: dca: Add missing multiple inclusion guards Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/x86/dca.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/x86/dca.h b/libavcodec/x86/dca.h
index 6415129b50..c9be50d065 100644
--- a/libavcodec/x86/dca.h
+++ b/libavcodec/x86/dca.h
@@ -18,6 +18,9 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#ifndef AVCODEC_X86_DCA_H
+#define AVCODEC_X86_DCA_H
+
#include "config.h"
#if ARCH_X86_64 && HAVE_SSE2_INLINE
@@ -53,3 +56,5 @@ static inline void int8x8_fmul_int32(av_unused DCADSPContext *dsp,
}
#endif /* ARCH_X86_64 && HAVE_SSE2_INLINE */
+
+#endif /* AVCODEC_X86_DCA_H */