mirror of
https://github.com/mpv-player/mpv
synced 2024-12-20 05:42:19 +00:00
Add ARM pld instruction test for FFmpeg ARM optimizations.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27813 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
4722fa0b82
commit
e2362bfa55
11
configure
vendored
11
configure
vendored
@ -2440,6 +2440,14 @@ EOF
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if arm ; then
|
if arm ; then
|
||||||
|
echocheck "ARM pld instruction"
|
||||||
|
cat > $TMPC << EOF
|
||||||
|
int main(void) { __asm__ volatile ("pld [r0]"); return 0; }
|
||||||
|
EOF
|
||||||
|
pld=no
|
||||||
|
cc_check && pld=yes
|
||||||
|
echores "$pld"
|
||||||
|
|
||||||
echocheck "ARMv5TE (Enhanced DSP Extensions)"
|
echocheck "ARMv5TE (Enhanced DSP Extensions)"
|
||||||
if test $_armv5te = "auto" ; then
|
if test $_armv5te = "auto" ; then
|
||||||
cat > $TMPC << EOF
|
cat > $TMPC << EOF
|
||||||
@ -2481,7 +2489,7 @@ EOF
|
|||||||
echores "$_iwmmxt"
|
echores "$_iwmmxt"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
_cpuexts_all='ALTIVEC MMX MMX2 3DNOW 3DNOWEX SSE SSE2 SSSE3 FAST_CMOV CMOV ARMV5TE ARMV6 ARMVFP IWMMXT MLIB MMI SH4 VIS MVI'
|
_cpuexts_all='ALTIVEC MMX MMX2 3DNOW 3DNOWEX SSE SSE2 SSSE3 FAST_CMOV CMOV PLD ARMV5TE ARMV6 ARMVFP IWMMXT MLIB MMI SH4 VIS MVI'
|
||||||
test "$_altivec" = yes && _cpuexts="ALTIVEC $_cpuexts"
|
test "$_altivec" = yes && _cpuexts="ALTIVEC $_cpuexts"
|
||||||
test "$_mmx" = yes && _cpuexts="MMX $_cpuexts"
|
test "$_mmx" = yes && _cpuexts="MMX $_cpuexts"
|
||||||
test "$_mmxext" = yes && _cpuexts="MMX2 $_cpuexts"
|
test "$_mmxext" = yes && _cpuexts="MMX2 $_cpuexts"
|
||||||
@ -2492,6 +2500,7 @@ test "$_sse2" = yes && _cpuexts="SSE2 $_cpuexts"
|
|||||||
test "$_ssse3" = yes && _cpuexts="SSSE3 $_cpuexts"
|
test "$_ssse3" = yes && _cpuexts="SSSE3 $_cpuexts"
|
||||||
test "$_cmov" = yes && _cpuexts="CMOV $_cpuexts"
|
test "$_cmov" = yes && _cpuexts="CMOV $_cpuexts"
|
||||||
test "$_fast_cmov" = yes && _cpuexts="FAST_CMOV $_cpuexts"
|
test "$_fast_cmov" = yes && _cpuexts="FAST_CMOV $_cpuexts"
|
||||||
|
test "$pld" = yes && _cpuexts="PLD $_cpuexts"
|
||||||
test "$_armv5te" = yes && _cpuexts="ARMV5TE $_cpuexts"
|
test "$_armv5te" = yes && _cpuexts="ARMV5TE $_cpuexts"
|
||||||
test "$_armv6" = yes && _cpuexts="ARMV6 $_cpuexts"
|
test "$_armv6" = yes && _cpuexts="ARMV6 $_cpuexts"
|
||||||
test "$_armvfp" = yes && _cpuexts="ARMVFP $_cpuexts"
|
test "$_armvfp" = yes && _cpuexts="ARMVFP $_cpuexts"
|
||||||
|
Loading…
Reference in New Issue
Block a user