summaryrefslogtreecommitdiff
path: root/libavutil/ppc/cpu.h
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-08-20 16:36:47 +0200
committerDiego Biurrun <diego@biurrun.de>2013-08-28 23:54:15 +0200
commitf61bece684d9685b07895508e6c1c733b5564ccf (patch)
tree3375c204994cab80d06115a141fc3068d26efefa /libavutil/ppc/cpu.h
parent8410d6e93c2e074881f1c7b7e4cdefd2e497d52e (diff)
ppc: Add and use convenience macro to check for AltiVec availability
Diffstat (limited to 'libavutil/ppc/cpu.h')
-rw-r--r--libavutil/ppc/cpu.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/libavutil/ppc/cpu.h b/libavutil/ppc/cpu.h
new file mode 100644
index 0000000000..f8fae58698
--- /dev/null
+++ b/libavutil/ppc/cpu.h
@@ -0,0 +1,28 @@
+/*
+ * This file is part of Libav.
+ *
+ * Libav is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * Libav is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with Libav; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef AVUTIL_PPC_CPU_H
+#define AVUTIL_PPC_CPU_H
+
+#include "config.h"
+#include "libavutil/cpu.h"
+#include "libavutil/cpu_internal.h"
+
+#define PPC_ALTIVEC(flags) CPUEXT(flags, ALTIVEC)
+
+#endif /* AVUTIL_PPC_CPU_H */