Commit 3186de40 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remove the MGA video output

Those cards are normally accessed with the standard FrameBuffer,
through X11 or svgalib instead. The mga_vid driver is not even in the
kernel (or not anymore).
parent f79cbd2d
...@@ -102,6 +102,7 @@ Removed modules: ...@@ -102,6 +102,7 @@ Removed modules:
* opie, qte and qte_main * opie, qte and qte_main
* linear_resampler and trivial_resampler are removed. Use the ugly one. * linear_resampler and trivial_resampler are removed. Use the ugly one.
* XvMC accelerated modules. Use VAAPI instead. * XvMC accelerated modules. Use VAAPI instead.
* MGA (Matroska) for Linux. Use Linux Framebuffer (or X) instead.
* opengllayer * opengllayer
* cddax. Use cdda instead * cddax. Use cdda instead
* cmml and tarkin codecs are removed because they are dead codecs. * cmml and tarkin codecs are removed because they are dead codecs.
......
...@@ -3902,16 +3902,6 @@ AC_ARG_ENABLE(fb, ...@@ -3902,16 +3902,6 @@ AC_ARG_ENABLE(fb,
]) ])
fi fi
dnl
dnl Linux MGA module
dnl
AC_ARG_ENABLE(mga,
[ --enable-mga Linux kernel Matrox support (default disabled)],
[ if test "${enable_mga}" = "yes"
then
VLC_ADD_PLUGIN([mga])
fi ])
dnl dnl
dnl OMAP Framebuffer module dnl OMAP Framebuffer module
dnl dnl
......
...@@ -185,7 +185,6 @@ $Id$ ...@@ -185,7 +185,6 @@ $Id$
* memcpyaltivec: Altivec accelerated version of memcpy * memcpyaltivec: Altivec accelerated version of memcpy
* memcpymmx: MMX accelerated version of memcpy * memcpymmx: MMX accelerated version of memcpy
* memcpymmxext: MMX EXT accelerated version of memcpy * memcpymmxext: MMX EXT accelerated version of memcpy
* mga: video output module for Matrox cards using the Linux mga kernel driver
* minimal_macosx: a minimal Mac OS X GUI, using the FrameWork * minimal_macosx: a minimal Mac OS X GUI, using the FrameWork
* mirror: mirror video filter * mirror: mirror video filter
* mjpeg: a demuxer for multipart and concatenated JPEG data * mjpeg: a demuxer for multipart and concatenated JPEG data
......
...@@ -11,7 +11,6 @@ SOURCES_omapfb = omapfb.c ...@@ -11,7 +11,6 @@ SOURCES_omapfb = omapfb.c
SOURCES_ggi = ggi.c SOURCES_ggi = ggi.c
SOURCES_vout_sdl = sdl.c SOURCES_vout_sdl = sdl.c
SOURCES_svgalib = svgalib.c SOURCES_svgalib = svgalib.c
SOURCES_mga = mga.c
SOURCES_hd1000v = hd1000v.cpp SOURCES_hd1000v = hd1000v.cpp
SOURCES_snapshot = snapshot.c SOURCES_snapshot = snapshot.c
SOURCES_opengl = opengl.c opengl.h SOURCES_opengl = opengl.c opengl.h
......
This diff is collapsed.
...@@ -1172,7 +1172,6 @@ modules/video_output/drawable.c ...@@ -1172,7 +1172,6 @@ modules/video_output/drawable.c
modules/video_output/fb.c modules/video_output/fb.c
modules/video_output/ggi.c modules/video_output/ggi.c
modules/video_output/hd1000v.cpp modules/video_output/hd1000v.cpp
modules/video_output/mga.c
modules/video_output/msw/direct3d.c modules/video_output/msw/direct3d.c
modules/video_output/msw/directx.c modules/video_output/msw/directx.c
modules/video_output/msw/events.c modules/video_output/msw/events.c
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment