]> git.sesse.net Git - ffmpeg/blob - libavutil/cpu.c
fix building of cpu-test by including required header
[ffmpeg] / libavutil / cpu.c
1 /*
2  * This file is part of FFmpeg.
3  *
4  * FFmpeg is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * FFmpeg is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with FFmpeg; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18
19 #include <stdio.h>
20
21 #include "cpu.h"
22 #include "config.h"
23
24 int av_get_cpu_flags(void)
25 {
26     static int flags, checked;
27
28     if (checked)
29         return flags;
30
31     if (ARCH_ARM) flags = ff_get_cpu_flags_arm();
32     if (ARCH_PPC) flags = ff_get_cpu_flags_ppc();
33     if (ARCH_X86) flags = ff_get_cpu_flags_x86();
34
35     checked = 1;
36     return flags;
37 }
38
39 #ifdef TEST
40
41 #undef printf
42
43 int main(void)
44 {
45     int cpu_flags = av_get_cpu_flags();
46
47     printf("cpu_flags = 0x%08X\n", cpu_flags);
48     printf("cpu_flags = %s%s%s%s%s%s%s%s%s%s%s%s\n",
49 #if   ARCH_ARM
50            cpu_flags & AV_CPU_FLAG_IWMMXT   ? "IWMMXT "     : "",
51 #elif ARCH_PPC
52            cpu_flags & AV_CPU_FLAG_ALTIVEC  ? "ALTIVEC "    : "",
53 #elif ARCH_X86
54            cpu_flags & AV_CPU_FLAG_MMX      ? "MMX "        : "",
55            cpu_flags & AV_CPU_FLAG_MMX2     ? "MMX2 "       : "",
56            cpu_flags & AV_CPU_FLAG_SSE      ? "SSE "        : "",
57            cpu_flags & AV_CPU_FLAG_SSE2     ? "SSE2 "       : "",
58            cpu_flags & AV_CPU_FLAG_SSE2SLOW ? "SSE2(slow) " : "",
59            cpu_flags & AV_CPU_FLAG_SSE3     ? "SSE3 "       : "",
60            cpu_flags & AV_CPU_FLAG_SSE3SLOW ? "SSE3(slow) " : "",
61            cpu_flags & AV_CPU_FLAG_SSSE3    ? "SSSE3 "      : "",
62            cpu_flags & AV_CPU_FLAG_SSE4     ? "SSE4.1 "     : "",
63            cpu_flags & AV_CPU_FLAG_SSE42    ? "SSE4.2 "     : "",
64            cpu_flags & AV_CPU_FLAG_3DNOW    ? "3DNow "      : "",
65            cpu_flags & AV_CPU_FLAG_3DNOWEXT ? "3DNowExt "   : "");
66 #endif
67     return 0;
68 }
69
70 #endif