mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-11 18:09:36 +00:00
enable simple-idct by default (needed cuz otherwise files encoded with ffmpeg will show stripes with the reference IDCT during decoding)
Originally committed as revision 495 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
e8f147930b
commit
c02dbee162
5
configure
vendored
5
configure
vendored
@ -53,6 +53,7 @@ mp3lame="no"
|
|||||||
a52bin="no"
|
a52bin="no"
|
||||||
win32="no"
|
win32="no"
|
||||||
extralibs="-lm"
|
extralibs="-lm"
|
||||||
|
simpleidct="yes"
|
||||||
|
|
||||||
# OS specific
|
# OS specific
|
||||||
targetos=`uname -s`
|
targetos=`uname -s`
|
||||||
@ -87,7 +88,7 @@ echo " --cpu=CPU force cpu to CPU [$cpu]"
|
|||||||
echo " --disable-mmx disable mmx usage"
|
echo " --disable-mmx disable mmx usage"
|
||||||
echo " --enable-gprof enable profiling with gprof [$gprof]"
|
echo " --enable-gprof enable profiling with gprof [$gprof]"
|
||||||
echo " --disable-grab disable audio/video grabbing code"
|
echo " --disable-grab disable audio/video grabbing code"
|
||||||
echo " --enable-simple_idct use simple IDCT routines [default=no]"
|
echo " --disable-simple_idct disable simple IDCT routines [default=no]"
|
||||||
echo " --enable-mp3lame enable mp3 encoding via libmp3lame [default=no]"
|
echo " --enable-mp3lame enable mp3 encoding via libmp3lame [default=no]"
|
||||||
echo " --enable-win32 enable win32 cross compile"
|
echo " --enable-win32 enable win32 cross compile"
|
||||||
echo " --enable-a52bin open liba52.so.0 at runtime [default=no]"
|
echo " --enable-a52bin open liba52.so.0 at runtime [default=no]"
|
||||||
@ -114,7 +115,7 @@ for opt do
|
|||||||
;;
|
;;
|
||||||
--enable-mp3lame) mp3lame="yes"
|
--enable-mp3lame) mp3lame="yes"
|
||||||
;;
|
;;
|
||||||
--enable-simple_idct) simpleidct="yes"
|
--disable-simple_idct) simpleidct="no"
|
||||||
;;
|
;;
|
||||||
--enable-win32) win32="yes"
|
--enable-win32) win32="yes"
|
||||||
;;
|
;;
|
||||||
|
Loading…
Reference in New Issue
Block a user