diff options
author | Matthieu Castet <castet.matthieu@free.fr> | 2008-03-24 11:49:59 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-03-24 11:49:59 +0000 |
commit | b4e806b2b9696443954de88e54ea583d705bcd24 (patch) | |
tree | f004ba0421f44ab63110c1509d114bf19de615e8 /configure | |
parent | 0e58bf670dd3f690d809e74b11c5db8201fbf15e (diff) | |
download | ffmpeg-streaming-b4e806b2b9696443954de88e54ea583d705bcd24.zip ffmpeg-streaming-b4e806b2b9696443954de88e54ea583d705bcd24.tar.gz |
pld instruction are used in libavcodec/armv4l/dsputil_arm_s.S which can be used
on armv4 that doesn't support this instruction. Futhermore pld is a nop on some
armv5 processor like arm926. Detect if pld is supported and have the
preprocessor remove it when it's not supported.
Fixes issue 393.
patch by matthieu castet, castet.matthieu free fr
Originally committed as revision 12569 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -748,6 +748,7 @@ HAVE_LIST=" memalign mkstemp mlib + pld ppc64 round roundf @@ -1561,6 +1562,8 @@ int main(void) { EOF fi +# We have to check if pld is a nop and disable it. +enabled armv4l && check_asm pld '"pld [r0]"' enabled armv5te && check_asm armv5te '"qadd r0, r0, r0"' enabled armv6 && check_asm armv6 '"sadd16 r0, r0, r0"' enabled iwmmxt && check_asm iwmmxt '"wunpckelub wr6, wr4"' |