Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2014-02-18 17:30:04 +0400
committerReinhard Tartler <siretart@tauware.de>2014-03-02 20:42:37 +0400
commit39dc4a6bb34baf833ce1e5eabad7d0dbf933237d (patch)
treedec21221659b8dea8673c5926d45ababda2e0bdc /libavcodec/x86
parent33e1bca6517d60a3113e60ed40b9bd50dbf90f4b (diff)
x86: dca: Add missing multiple inclusion guards
(cherry picked from commit b23bc95920e2f10b9621857e829c45b064f356c0)
Diffstat (limited to 'libavcodec/x86')
-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 ab175b3afa..11d45ae61c 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 */