summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorwm4 <wm4@mplayer2.org>2011-10-23 06:26:49 +0200
committerUoti Urpala <uau@mplayer2.org>2011-10-24 03:08:48 +0300
commit821a313ba183b9eed8b280cbfda84a3f95a2ab2e (patch)
treef43ef2c8d22fb8293ebdc14f257bc3d281c08f3c /configure
parent66c3915621a46a7e302dc234fef2ab75623f04ab (diff)
downloadmpv-821a313ba183b9eed8b280cbfda84a3f95a2ab2e.tar.bz2
mpv-821a313ba183b9eed8b280cbfda84a3f95a2ab2e.tar.xz
vo_gl2, vo_matrixview: remove these VOs
Delete the vo_gl2 and vo_matrixview implementations. vo_gl2 was barely useful anymore. It was a hack based on an old vo_gl.c version, and all it did differently was rendering the video in tiles instead of using a single texture. That made it work with some crappy OpenGL implementations. These days all GPUs support textures of at least 2048x2048 pixels, which is enough for HD playback. On the other hand, gl2 suffered from various bugs and deficiencies, all of which are fixed in gl. Its existence also confused users; many thought that gl2 is the next version of gl and attempted to use it, even though it's much worse than gl and they should have used that instead. Should it turn out that tiling is actually useful, it should be implemented in vo_gl, instead of keeping vo_gl2 alive. vo_matrixview was a toy that couldn't even properly display a video. All it did was display a screensaver-like animation that showed "a Matrix-like running-text effect". (mplayer is not a screensaver.)
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure20
1 files changed, 0 insertions, 20 deletions
diff --git a/configure b/configure
index 0de4c2d89e..f79b8cec08 100755
--- a/configure
+++ b/configure
@@ -381,7 +381,6 @@ Codecs:
Video output:
--enable-gl enable OpenGL video output [autodetect]
- --disable-matrixview disable OpenGL MatrixView video output [autodetect]
--enable-dga2 enable DGA 2 support [autodetect]
--enable-dga1 enable DGA 1 support [autodetect]
--enable-vesa enable VESA video output [autodetect]
@@ -573,7 +572,6 @@ _md5sum=yes
_yuv4mpeg=yes
_gif=auto
_gl=auto
-matrixview=yes
_ggi=auto
_ggiwmh=auto
_aa=auto
@@ -879,8 +877,6 @@ for ac_option do
--disable-gif) _gif=no ;;
--enable-gl) _gl=yes ;;
--disable-gl) _gl=no ;;
- --enable-matrixview) matrixview=yes ;;
- --disable-matrixview) matrixview=no ;;
--enable-ggi) _ggi=yes ;;
--disable-ggi) _ggi=no ;;
--enable-ggiwmh) _ggiwmh=yes ;;
@@ -4572,20 +4568,6 @@ fi
echores "$_gl"
-echocheck "MatrixView"
-if test "$_gl" = no ; then
- matrixview=no
-fi
-if test "$matrixview" = yes ; then
- vomodules="matrixview $vomodules"
- def_matrixview='#define CONFIG_MATRIXVIEW 1'
-else
- novomodules="matrixview $novomodules"
- def_matrixview='#undef CONFIG_MATRIXVIEW'
-fi
-echores "$matrixview"
-
-
if os2 ; then
echocheck "KVA (SNAP/WarpOverlay!/DIVE)"
if test "$_kva" = auto; then
@@ -6717,7 +6699,6 @@ GL = $_gl
GL_WIN32 = $_gl_win32
GL_X11 = $_gl_x11
GL_SDL = $_gl_sdl
-MATRIXVIEW = $matrixview
HAVE_POSIX_SELECT = $_posix_select
HAVE_SYS_MMAN_H = $_mman
IVTV = $_ivtv
@@ -7126,7 +7107,6 @@ $def_gl
$def_gl_win32
$def_gl_x11
$def_gl_sdl
-$def_matrixview
$def_ivtv
$def_jpeg
$def_kva