From 821a313ba183b9eed8b280cbfda84a3f95a2ab2e Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 23 Oct 2011 06:26:49 +0200 Subject: 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.) --- configure | 20 -------------------- 1 file changed, 20 deletions(-) (limited to 'configure') 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 -- cgit v1.2.3