mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
4fa0e24736
* newdev/master: (33 commits) Fix an infinite loop when RoQ encoded generated a frame with a size greater than the maximum valid size. Add kbdwin.o to AC3 decoder Detect byte-swapped AC-3 and support decoding it directly. cosmetics: indentation Always copy input data for AC3 decoder. ac3enc: make sym_quant() branch-free cosmetics: indentation Add a CPU flag for the Atom processor. id3v2: skip broken tags with invalid size id3v2: don't explicitly skip padding Make sure kbhit() is in conio.h fate: update wmv8-drm reference vc1: make P-frame deblock filter bit-exact. configure: Add the -D parameter to the dlltool command amr: Set the AVFMT_GENERIC_INDEX flag amr: Set the pkt->pos field properly to the start of the packet amr: Set the codec->bit_rate field based on the last packet rtsp: Specify unicast for TCP interleaved streams, too Set the correct target for mingw64 dlltool applehttp: Change the variable for stream position in seconds into int64_t ... Conflicts: ffmpeg.c ffplay.c libavcodec/ac3dec.c libavformat/avio.h libavformat/id3v2.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
72 lines
2.4 KiB
C
72 lines
2.4 KiB
C
/*
|
|
* This file is part of FFmpeg.
|
|
*
|
|
* FFmpeg 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.
|
|
*
|
|
* FFmpeg 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 FFmpeg; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#include "cpu.h"
|
|
#include "config.h"
|
|
|
|
int av_get_cpu_flags(void)
|
|
{
|
|
static int flags, checked;
|
|
|
|
if (checked)
|
|
return flags;
|
|
|
|
if (ARCH_ARM) flags = ff_get_cpu_flags_arm();
|
|
if (ARCH_PPC) flags = ff_get_cpu_flags_ppc();
|
|
if (ARCH_X86) flags = ff_get_cpu_flags_x86();
|
|
|
|
checked = 1;
|
|
return flags;
|
|
}
|
|
|
|
#ifdef TEST
|
|
|
|
#undef printf
|
|
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
int cpu_flags = av_get_cpu_flags();
|
|
|
|
printf("cpu_flags = 0x%08X\n", cpu_flags);
|
|
printf("cpu_flags = %s%s%s%s%s%s%s%s%s%s%s%s%s\n",
|
|
#if ARCH_ARM
|
|
cpu_flags & AV_CPU_FLAG_IWMMXT ? "IWMMXT " : "",
|
|
#elif ARCH_PPC
|
|
cpu_flags & AV_CPU_FLAG_ALTIVEC ? "ALTIVEC " : "",
|
|
#elif ARCH_X86
|
|
cpu_flags & AV_CPU_FLAG_MMX ? "MMX " : "",
|
|
cpu_flags & AV_CPU_FLAG_MMX2 ? "MMX2 " : "",
|
|
cpu_flags & AV_CPU_FLAG_SSE ? "SSE " : "",
|
|
cpu_flags & AV_CPU_FLAG_SSE2 ? "SSE2 " : "",
|
|
cpu_flags & AV_CPU_FLAG_SSE2SLOW ? "SSE2(slow) " : "",
|
|
cpu_flags & AV_CPU_FLAG_SSE3 ? "SSE3 " : "",
|
|
cpu_flags & AV_CPU_FLAG_SSE3SLOW ? "SSE3(slow) " : "",
|
|
cpu_flags & AV_CPU_FLAG_SSSE3 ? "SSSE3 " : "",
|
|
cpu_flags & AV_CPU_FLAG_ATOM ? "Atom " : "",
|
|
cpu_flags & AV_CPU_FLAG_SSE4 ? "SSE4.1 " : "",
|
|
cpu_flags & AV_CPU_FLAG_SSE42 ? "SSE4.2 " : "",
|
|
cpu_flags & AV_CPU_FLAG_AVX ? "AVX " : "",
|
|
cpu_flags & AV_CPU_FLAG_3DNOW ? "3DNow " : "",
|
|
cpu_flags & AV_CPU_FLAG_3DNOWEXT ? "3DNowExt " : "");
|
|
#endif
|
|
return 0;
|
|
}
|
|
|
|
#endif
|