|
2.3.1 Video output devices2.3.1.1 Setting up MTRRIt is VERY recommended to check if the MTRR registers are set up properly, because they can give a big performance boost. Do a '
It's right, shows my Matrox G400 with 16MB memory. I did this from XFree 4.x.x , which sets up MTRR registers automatically. If nothing worked, you have to do it manually. First, you have to find the base address. You have 3 ways to find it:
Then let's find the memory size. This is very easy, just convert video ram size to hexadecimal, or use this table:
You know base address and memory size, let's setup MTRR registers! For example, for the Matrox card above (base=0xd8000000) with 32MB ram (size=0x2000000) just execute:
Not all CPUs support MTRRs. For example older K6-2's [around 266MHz,
stepping 0] doesn't support MTRR, but stepping 12's do (' 2.3.1.2 Video outputs for traditional video cards2.3.1.2.1 XvUnder XFree86 4.0.2 or newer, you can use your card's hardware YUV routines using the XVideo extension. This is what the option '-vo xv' uses. Also, this is driver supports adjusting brightness/contrast/hue/etc (unless you use the old, slow DirectShow DivX codec, which supports it everywhere), see the man page. In order to make this work, be sure to check the following:
2.3.1.2.1.1 3dfx cardsOlder 3dfx drivers were known to have problems with XVideo acceleration, it didn't support either YUY2 or YV12, and so. Verify that you have XFree86 version 4.2.0 or greater, it works OK with YV12 and YUY2. Previous versions, including 4.1.0, crash with YV12. If you experience strange effects using -vo xv, try SDL (it has XVideo too) and see if it helps. Check the SDL section for details. OR, try the NEW -vo tdfxfb driver! See the tdfxfb section. 2.3.1.2.1.2 S3 cardsS3 Savage3D's should work fine, but for Savage4, use XFree86 version 4.0.3 or greater (in case of image problems, try 16bpp). As for S3 Virge.. there is xv support, but the card itself is very slow, so you better sell it. NOTE: it's currently unclear which Savage models lack YV12 support, and convert by driver (slow). If you suspect your card, get a newer driver, or ask politely on the mplayer-users mailing list for an MMX/3DNow enabled driver. 2.3.1.2.1.3 nVidia cardsnVidia isn't a very good choice under Linux (according to nVidia, this is not true).. You'll have to use the binary closed-source nVidia driver, available at nVidia's web site. The standard XFree86 driver doesn't support XVideo for these cards, due to nVidia's closed sources/specifications. As far as I know the latest XFree86 driver contains XVideo support for GeForce 2 and 3. Riva128 cards don't have XVideo support even with the nVidia driver :( Complain to nVidia. 2.3.1.2.1.4 ATI cards
2.3.1.2.1.5 NeoMagic cardsThese cards can be found in many laptops. Unfortunately, the driver in X 4.2.0 can't do Xv, but we have a modified, Xv-capable driver for you. Download from here. Driver provided by Stefan Seyfried. To allow playback of DVD sized content change your XF86Config like this: Section "Device" 2.3.1.2.1.6 Trident cardsIf you want to use xv with a trident card, provided that it doesn't work with 4.1.0, install XFree 4.2.0. 4.2.0 adds support for fullscreen xv support with the Cyberblade XP card. 2.3.1.2.2 DGA2.3.1.2.2.1 SummaryThis document tries to explain in some words what DGA is in general and what the DGA video output driver for MPlayer can do (and what it can't). 2.3.1.2.2.2 What is DGADGA is short for Direct Graphics Access and is a means for a program to bypass the X-Server and directly modifying the framebuffer memory. Technically spoken this happens by mapping the framebuffer memory into the memory range of your process. This is allowed by the kernel only if you have superuser privileges. You can get these either by logging in as root or by setting the SUID bit on the MPlayer executable (not recommended). There are two versions of DGA: DGA1 is used by XFree 3.x.x and DGA2 was introduced with XFree 4.0.1. DGA1 provides only direct framebuffer access as described above. For switching the resolution of the video signal you have to rely on the XVidMode extension. DGA2 incorporates the features of XVidMode extension and also allows switching the depth of the display. So you may, although basically running a 32 bit depth X server, switch to a depth of 15 bits and vice versa. However DGA has some drawbacks. It seems it is somewhat dependent on the graphics chip you use and on the implementation of the X server's video driver that controls this chip. So it does not work on every system ... 2.3.1.2.2.3 Installing DGA support for MPlayerFirst make sure X loads the DGA extension, see in /var/log/XFree86.0.log: See, XFree86 4.0.x or greater is VERY RECOMMENDED! MPlayer's DGA driver is autodetected on ./configure, or you can force it with --enable-dga. If the driver couldn't switch to a smaller resolution, experiment with switches -vm (only with X 3.3.x), -fs, -bpp, -zoom to find a video mode that the movie fits in. There is no converter right now :( Become root. DGA needs root access to be able to write directly to video memory. If you want to run it as user, then install MPlayer SUID root:
Now it works as a simple user, too. Warning: security risk Now use the 2.3.1.2.2.4 Resolution switchingThe DGA driver allows for switching the resolution of the output signal.
This avoids the need for doing (slow) software scaling and at the same time
provides a fullscreen image. Ideally it would switch to the exact resolution
(except for honoring aspect ratio) of the video data, but the X server only
allows switching to resolutions predefined in
See appendix A for some sample modeline definitions. 2.3.1.2.2.5 DGA & MPlayerDGA is used in two places with MPlayer: The SDL driver can be made to make use of it (-vo sdl:dga) and within the DGA driver (-vo dga). The above said is true for both; in the following sections I'll explain how the DGA driver for MPlayer works. 2.3.1.2.2.6 Features of the DGA driverThe DGA driver is invoked by specifying -vo dga at the command line. The default behavior is to switch to a resolution matching the original resolution of the video as close as possible. It deliberately ignores the -vm and -fs switches (enabling of video mode switching and fullscreen) - it always tries to cover as much area of your screen as possible by switching the video mode, thus refraining to use a single additional cycle of your CPU to scale the image. If you don't like the mode it chooses you may force it to choose the mode matching closest the resolution you specify by -x and -y. By providing the -v option, the DGA driver will print, among a lot of other things, a list of all resolutions supported by your current XF86-Config file. Having DGA2 you may also force it to use a certain depth by using the -bpp option. Valid depths are 15, 16, 24 and 32. It depends on your hardware whether these depths are natively supported or if a (possibly slow) conversion has to be done. If you should be lucky enough to have enough offscreen memory left to put a whole image there, the DGA driver will use doublebuffering, which results in much smoother movie replaying. It will tell you whether double- buffering is enabled or not. Doublebuffering means that the next frame of your video is being drawn in some offscreen memory while the current frame is being displayed. When the next frame is ready, the graphics chip is just told the location in memory of the new frame and simply fetches the data to be displayed from there. In the meantime the other buffer in memory will be filled again with new video data. Doublebuffering may be switched on by using the option -double and may be disabled with -nodouble. Current default option is to disable doublebuffering. When using the DGA driver, onscreen display (OSD) only works with doublebuffering enabled. However, enabling doublebuffering may result in a big speed penalty (on my K6-II+ 525 it used an additional 20% of CPU time!) depending on the implementation of DGA for your hardware. 2.3.1.2.2.7 Speed issuesGenerally spoken, DGA framebuffer access should be at least as fast as using the X11 driver with the additional benefit of getting a fullscreen image. The percentage speed values printed by MPlayer have to be interpreted with some care, as for example, with the X11 driver they do not include the time used by the X-Server needed for the actual drawing. Hook a terminal to a serial line of your box and start top to see what is really going on in your box... Generally spoken, the speedup done by using DGA against 'normal' use of X11 highly depends on your graphics card and how well the X-Server module for it is optimized. If you have a slow system, better use 15 or 16bit depth since they require only half the memory bandwidth of a 32 bit display. Using a depth of 24bit is even a good idea if your card natively just supports 32 bit depth since it transfers 25% less data compared to the 32/32 mode. I've seen some AVI files already be replayed on a Pentium MMX 266. AMD K6-2 CPUs might work at 400 MHZ and above. 2.3.1.2.2.8 Known bugsWell, according to some developers of XFree, DGA is quite a beast. They tell you better not to use it. Its implementation is not always flawless with every chipset driver for XFree out there.
2.3.1.2.2.9 Future work
2.3.1.2.2.A Some modelinesSection "Modes" Identifier "Modes[0]" Modeline "800x600" 40 800 840 968 1056 600 601 605 628 Modeline "712x600" 35.0 712 740 850 900 400 410 412 425 Modeline "640x480" 25.175 640 664 760 800 480 491 493 525 Modeline "400x300" 20 400 416 480 528 300 301 303 314 Doublescan Modeline "352x288" 25.10 352 368 416 432 288 296 290 310 Modeline "352x240" 15.750 352 368 416 432 240 244 246 262 Doublescan Modeline "320x240" 12.588 320 336 384 400 240 245 246 262 Doublescan EndSection These entries work fine with my Riva128 chip, using nv.o X server driver module. 2.3.1.2.2.B Bug ReportsIf you experience troubles with the DGA driver please feel free to file a bug report to me (e-mail address below). Please start MPlayer with the -v option and include all lines in the bug report that start with vo_dga: Please do also include the version of X11 you are using, the graphics card and your CPU type. The X11 driver module (defined in XF86-Config) might also help. Thanks! Acki (acki@acki-netz.de, www.acki-netz.de) 2.3.1.2.3 SDLSDL (Simple Directmedia Layer) is basically a unified video/audio interface. Programs that use it know only about SDL, and not about what video or audio driver does SDL actually use. For example a Doom port using SDL can run on svgalib, aalib, X, fbdev, and others, you only have to specify the (for example) video driver to use with the SDL_VIDEODRIVER environment variable. Well, in theory. With MPlayer, we used its X11 driver's software scaler ability for cards/drivers that doesn't support XVideo, until we made our own (faster, nicer) software scaler. Also we used its aalib output, but now we have ours which is more comfortable. Its DGA mode was better than ours, until recently. Get it now? :) It also helps with some buggy drivers/cards if the video is jerky (not slow system problem), or audio is lagging. SDL video output supports displaying subtitles under the movie, on the (if present) black bar. There are several command line switches for SDL:
Known bugs:
2.3.1.2.4 SVGAlibInstallationYou'll have to install svgalib and its development package in order for MPlayer build its SVGAlib driver (autodetected, but can be forced), and don't forget to edit /etc/vga/libvga.config to suit your card & monitor. NotesBe sure not to use the -fs switch, since it toggles the usage of the software
scaler, and it's slow. If you really need it, use the EGA (4bpp) supportSVGAlib incorporates EGAlib, and MPlayer has the possibility to display any movie in 16 colors, thus usable in the following sets:
The bpp (bits per pixel) value must be set to 4 by hand: 2.3.1.2.5 Framebuffer output (FBdev)Whether to build the FBdev target is autodetected during ./configure . Read the framebuffer documentation in the kernel sources (Documentation/fb/*) for more information. If your card doesn't support VBE 2.0 standard (older ISA/PCI cards, such as S3 Trio64), only VBE 1.2 (or older?): Well, VESAfb is still available, but you'll have to load SciTech Display Doctor (formerly UniVBE) before booting Linux. Use a DOS boot disk or whatever. And don't forget to register your UniVBE ;)) The FBdev output takes some additional parameters above the others:
If you want to change to a specific mode, then use
NOTE: FBdev video mode changing _does not work_ with the VESA framebuffer, and don't ask for it, since it's not an MPlayer limitation. 2.3.1.2.6 Matrox framebuffer (mga_vid)This section is about the Matrox G200/G400/G450/G550 BES (Back-End Scaler) support, the mga_vid kernel driver. It's active developed by me (A'rpi), and it has hardware VSYNC support with triple buffering. It works on both framebuffer console and under X. WARNING: on non-Linux systems, use VIDIX for mga_vid! Installation:
The mga_vid driver cooperates with Xv. The 2.3.1.2.7 3dfx YUV support (tdfxfb)This driver uses the kernel's tdfx framebuffer driver to play movies with
YUV acceleration. You'll need a kernel with tdfxfb support, and recompile
with 2.3.1.2.8 OpenGL outputMPlayer supports displaying movies using OpenGL, but if your platform/driver supports xv as should be the case on a PC with Linux, use xv instead, OpenGL performance is considerably worse. If you have an X11 implementation without xv support, OpenGL is a viable alternative. Unfortunately not all drivers support this feature. The Utah-GLX drivers (for XFree86 3.3.6) support it for all cards. See http://utah-glx.sourceforge.net for details about how to install it. XFree86(DRI) 4.0.3 or later supports OpenGL with Matrox and Radeon cards, 4.2.0 or later supports Rage128. See http://dri.sourceforge.net for download and installation instructions. 2.3.1.2.9 AAlib - text mode displayingAAlib is a library for displaying graphics in text mode, using powerful ASCII renderer. There are LOTS of programs already supporting it, like Doom, Quake, etc. MPlayer contains a very usable driver for it. If ./configure detects aalib installed, the aalib libvo driver will be built.
The following command line options can be used:
AAlib itself provides a large sum of options. Here are some important:
NOTE: the rendering is very CPU intensive, especially when using AA-on-X (using aalib on X), and it's least CPU intensive on standard, non-framebuffer console. Use SVGATextMode to set up a big textmode, then enjoy! (secondary head Hercules cards rock :)) (anyone can enhance fbdev to do conversion/dithering to hgafb? Would be neat :) Use the Playing on terminal you'll get better speed and quality using the Linux
driver, not curses ( 2.3.1.2.10 VESA - output to VESA BIOSThis driver was designed and introduced as a generic driver for any
video card which has VESA VBE 2.0+ compatible BIOS. Another advantage of this
driver is that it tries to force TV output on. Dual-Controller Designs So you have chances to get working TV-out by using this driver. Advantages:
Disadvantages:
Don't use this driver with GCC 2.96! It won't work! Command line options available for VESA:
Known problems and workaround:
2.3.1.2.11 X11Avoid if possible. Outputs to X11 (uses shared memory extension), with no
hardware acceleration at all. Supports (MMX/3DNow/SSE accelerated, but still
slow) software scaling, use the options The problem is that most cards' driver doesn't support hardware acceleration on the second head/TV. In those cases, you see green/blue colored window instead of the movie. This is where this driver comes in handy, but you need powerful CPU to use software scaling. Don't use the SDL driver's software output+scaler, it has worse image quality! Software scaling is very slow, you better try changing video modes instead. It's very simple. See the DGA section's modelines, and insert them into your XF86Config.
If you can't find the modes you inserted, browse XFree86's output. Some drivers can't use low pixelclocks that are needed for low resolution video modes. 2.3.1.2.12 VIDIXVIDIX is the abbreviation for VIDeo Interface for
*niX. This interface was designed as an attempt to fit existing video acceleration interfaces (known as mga_vid, rage128_vid, radeon_vid, pm3_vid) into a fixed scheme. It provides highlevel interface to chips which are known as BES (BackEnd scalers) or OV (Video Overlays). It doesn't provide lowlevel interface to things which are known as graphics servers. (I don't want to compete with X11 team in graphics mode switching). I.e. main goal of this interface is to maximize the speed of video playback. USAGE
REQUIREMENTS
USAGE METHODSWhen VIDIX is used as subdevice ( Also you can specify VIDIX's driver directly as third subargument in command
line: VIDIX is very new technology and it's extremely possible that on your system (OS=abc CPU=xyz) it won't work. In this case the only solution for you is porting (mainly libdha) it. But there is a hope, that it will work on those systems where X11 does. Warning: security risk 2.3.1.2.13 DirectFB"DirectFB is a graphics library which was designed with embedded systems in mind. It offers maximum hardware accelerated performance at a minimum of resource usage and overhead." - quoted from http://www.directfb.org. I'll exclude DirectFB features from this section. Though MPlayer is not supported as a "video provider" in DirectFB, this output driver will enable video playback through DirectFB. It will - of course - be accelerated, on my Matrox G400 DirectFB's speed was the same as XVideo. Always try to use the newest version of DirectFB. You can use DirectFB
options on the command line, using the 2.3.1.2.14 DirectFB/Matrox (dfbmga)Please read the main DirectFB section for general informations. This video output driver will enable CRTC2 (on the second head) on the Matrox G400 card, displaying video independently of the first head. Instructions on how to make it work can be found in the tech section or directly on Ville Syrjala's home page. Note: we haven't been able to make this work, but others did. Anyway, porting of the CRTC2 code to mga_vid is underway. 2.3.1.3 MPEG decoders2.3.1.3.1 DVBMPlayer supports cards with the Siemens DVB chipset from vendors like Siemens, Technotrend, Galaxis or Hauppauge. The latest DVB drivers are available from the Linux TV site. If you want to do software transcoding you should have at least a 1GHz CPU. Configure should detect your DVB card. If it did not, force detection with ./configure --enable-dvb If you have ost headers at a non-standard path, set the path with ./configure --with-extraincdir=<DVB source directory>/ost/include Then compile and install as usual. USAGEHardware decoding (playing standard MPEG1/2 files) can be done with this command: mplayer -ao mpegpes -vo mpegpes file.mpg|vob Software decoding or transcoding different formats to MPEG1 can be achieved using a command like this: mplayer -ao mpegpes -vo mpegpes -vop lavc yourfile.ext mplayer -ao mpegpes -vo mpegpes -vop fame,expand yourfile.ext Note that DVB cards only support heights 288 and 576 for PAL or 240 and 480
for NTSC. You must rescale for other heights by adding
mplayer -ao mpegpes -vo mpegpes -vop lavc,scale=512:576 If you have a widescreen movie and you do not want to scale it to full height,
you can use the mplayer -ao mpegpes -vo mpegpes -vop lavc,expand=640:576 file.avi If your CPU is too slow for a full size 720x576 DivX, try downscaling: mplayer -ao mpegpes -vo mpegpes -vop lavc,scale=352:576 file.avi If speed does not improve, try vertical downscaling, too: mplayer -ao mpegpes -vo mpegpes -vop lavc,scale=352:288 file.avi For OSD and subtitles use the OSD feature of the expand filter. So, instead
of In order to play non-25fps movies on a PAL TV or with a slow CPU, add the
To keep the aspect ratio of DivX files and get the optimal scaling parameters (hardware horizontal scaling and software vertical scaling while keeping the right aspect ratio), use the new dvbscale filter: for 3:4 TV: -vop lavc,expand=-1:576:-1:-1:1,scale=-1:0,dvbscale for 16:9 TV: -vop lavc,expand=-1:576:-1:-1:1,scale=-1:0,dvbscale=1024 FUTUREIf you have questions or want to hear feature announcements and take part in discussions on this subject, join our MPlayer-DVB mailing list. Please remember that the list language is English. In the future you may expect the ability to display OSD and subtitles using the native OSD feature of DVB cards, as well as more fluent playback of non-25fps movies and realtime transcoding between MPEG2 and MPEG4 (partial decompression). 2.3.1.3.2 DXR2TODO: somebody please fill this section with information. 2.3.1.3.3 DXR3/Hollywood+MPlayer supports hardware accelerated playback with the Creative DXR3 and Sigma Designs Hollywood Plus cards. These cards both use the em8300 MPEG decoder chip from Sigma Designs. First of all you will need properly installed DXR3/H+ drivers, version 0.12.0 or later. You can find the drivers and installation instructions at the DXR3 & Hollywood Plus for Linux site. Configure should detect your card automatically, compilation should go without problems. Usage:
2.3.1.4 Other visualization hardware2.3.1.4.1 ZrThis is a display-driver ( This driver talks to the kernel driver available at http://mjpeg.sourceforge.net, so you must get it working first. The presence of an MJPEG card is autodetected by the configure script, if autodetection fails, force detection with ./configure --enable-zr The output can be controlled by several options, a long description of the options can be found in the man page, a short list of options can be viewed by running mplayer -zrhelp Things like scaling and the OSD (on screen display) are not handled by
this driver but can be done using the video filters. For example,
suppose that you have a movie with a resolution of mplayer -vo zr -sws 0 -vop scale=384:204 movie.avi Cropping can be done by the mplayer -vo zr -zrcrop 720x320+80+0 benhur.aviif you want to use the crop filter, you would do
mplayer -vo zr -vop crop=720:320:80:0 benhur.avi Extra occurances of mplayer -vo zr -zrdev /dev/video0 -zrcrop 352x288+352+0 -zrxdoff 0 -zrbw \ -zrcrop 352x288+0+0 -zrdev /dev/video1 -zrquality 10 movie.avi You see that the options appearing before the second Finally an important remark: Do not start or stop XawTV on the playback device during playback, it will crash your computer. It is, however, fine to FIRST start XawTV, THEN start MPlayer, wait for MPlayer to finish and THEN stop XawTV. 2.3.1.4.2 BlinkenlightsThis driver is capable of playback using the Blinkenlights UPD protocol. If you don't know what Blinkenlights is, you don't need this driver. 2.3.1.5 TV-out support2.3.1.5.1 Matrox G400 cardsUnder Linux you have 2 methods to get G400 TV out working: IMPORTANT: for Matrox G450/G550 TV-out instructions, please see the next section!
Building a Matrox TV-out cableThis information was contributed by Rácz Balázs. Of course no one takes any responsibility, nor guarantee for any damage caused by this documentation. The CRTC2 connector's fourth pin is the composite video signal. The ground are the sixth, seventh and eighth pins. 2.3.1.5.2 Matrox G450/G550 cardsTV output support for these cards has only been recently introduced, and is not yet in the mainstream kernel. Currently the mga_vid module can't be used AFAIK, because the G450/G550 driver works only in one configuration: the first CRTC chip (with much more features) on the first display (on monitor), and the second CRTC (no BES - for explanation on BES, please see the G400 section above) on TV. So you can only use MPlayer's fbdev output driver at the present. The first CRTC can't be routed to the second head currently. The author of the kernel matroxfb driver - Petr Vandrovec - will maybe make support for this, by displaying the first CRTC's output onto both of the heads at once, as currently recommended for G400, see the section above. The necessary kernel patch and the detailed howto is downloadable from http://www3.sympatico.ca/dan.eriksen/matrox_tvout/ 2.3.1.5.3 ATI cardsPREAMBLECurrently ATI doesn't want to support any of its TV-out chips under Linux, because of their licensed Macrovision technology. ATI CARDS TV-OUT STATUS ON LINUX
On other cards, just use the VESA driver, without VIDIX. Powerful CPU is needed, though. Only thing you need to do - have TV connector plugged in before booting your PC since video BIOS initializes itself only once during POST procedure. 2.3.1.5.4 Voodoo 3Check this URL. 2.3.1.5.5 nVidiaFirst, you MUST download the closed-source drivers from http://nvidia.com. I will not describe the installation and configuration process because it does not cover the scope of this documentation. After XFree86, XVideo, and 3D acceleration is properly working,
edit your card's Device section in the Section "Device" Identifier "GeForce" VendorName "ASUS" BoardName "nVidia GeForce2/MX 400" Driver "nvidia" #Option "NvAGP" "1" Option "NoLogo" Option "CursorShadow" "on" Option "TwinView" Option "TwinViewOrientation" "Clone" Option "MetaModes" "1024x768,640x480" Option "ConnectedMonitor" "CRT, TV" Option "TVStandard" "PAL-B" Option "TVOutFormat" "Composite" EndSection Of course the important thing is the TwinView part. |