diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-09-21 18:01:33 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-09-24 13:17:29 +0200 |
commit | c75b611a3853acc4cd05c37d1f6f72e67fb7b8eb (patch) | |
tree | 1eb9e1784cfb95248e943c14b0ee1238185786da | |
parent | efa3d5af1e11711ec8aadba34d9eb509e46db35a (diff) | |
download | ffmpeg-c75b611a3853acc4cd05c37d1f6f72e67fb7b8eb.tar.gz |
configure: enable runtime cpu detect by default.
with the exception of libpostproc runtime_cpudetect = no is not
supported thus having no as default really is quite odd, it results in
a libpostproc where HAVE_MMX* have very different meaning from the
rest of ffmpeg and it breaks any x86 cpu that doesnt support mmx2
because mmx2 is hardcoded as a result
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -95,7 +95,7 @@ Configuration options: --disable-static do not build static libraries [no] --enable-shared build shared libraries [no] --enable-small optimize for size instead of speed - --enable-runtime-cpudetect detect cpu capabilities at runtime (bigger binary) + --disable-runtime-cpudetect disable detecting cpu capabilities at runtime (smaller binary) --enable-gray enable full grayscale support (slower color) --disable-swscale-alpha disable alpha channel support in swscale @@ -2060,6 +2060,7 @@ enable debug enable doc enable network enable optimizations +enable runtime_cpudetect enable safe_bitstream_reader enable static enable swscale_alpha |