Mercurial > mplayer.hg
annotate DOCS/video.html @ 5035:16f28fb341a1
libjpeg detection cleanup
author | arpi |
---|---|
date | Mon, 11 Mar 2002 00:13:05 +0000 |
parents | 6cb9d9a1716d |
children | 20bf56a828d1 |
rev | line source |
---|---|
1612 | 1 <HTML> |
4982
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
2 |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
3 <HEAD> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
4 <STYLE> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
5 .text |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
6 {font-family : Verdana, Arial, Helvetica, sans-serif; |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
7 font-size : 14px;} |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
8 </STYLE> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
9 </HEAD> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
10 |
1704 | 11 <BODY BGCOLOR=white> |
12 | |
4982
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
13 <FONT CLASS="text"> |
1612 | 14 |
2745 | 15 <P><B><A NAME=2.3.1>2.3.1. Video output devices</A></B></P> |
1612 | 16 |
17 | |
2745 | 18 <P><B><A NAME=2.3.1.1>2.3.1.1. Setting up MTRR</A></B></P> |
1612 | 19 |
1946 | 20 <P>It is VERY recommended to check if the MTRR registers are set up properly, |
21 because they can give a big performance boost.</P> | |
22 | |
23 <P>Do a '<CODE>cat /proc/mtrr</CODE>' :</P> | |
24 | |
25 <P><CODE> | |
26 --($:~)-- cat /proc/mtrr<BR> | |
27 reg00: base=0xe4000000 (3648MB), size= 16MB: write-combining, count=9<BR> | |
28 reg01: base=0xd8000000 (3456MB), size= 128MB: write-combining, count=1<BR> | |
29 </CODE></P> | |
30 | |
31 <P>It's right, shows my Matrox G400 with 16Mb memory. I did this from | |
32 XFree 4.x.x , which sets up MTRR registers automatically.</P> | |
33 | |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
34 <P>If nothing worked, you have to do it manually. First, you have to find the base |
1946 | 35 address. |
1682 | 36 You have 3 ways to find it:</P> |
1612 | 37 |
1682 | 38 <P><UL> |
39 <LI>from X11 startup messages, for example: | |
40 <P><CODE>(--) SVGA: PCI: Matrox MGA G400 AGP rev 4, Memory @ 0xd8000000, 0xd4000000<BR> | |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
41 (--) SVGA: Linear framebuffer at 0xD8000000</CODE></P></LI> |
1682 | 42 <LI>from /proc/pci (use lspci -v command): |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
43 <P> |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
44 <CODE>01:00.0 VGA compatible controller: Matrox Graphics, Inc.: Unknown device 0525</CODE> |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
45 <CODE>Memory at d8000000 (32-bit, prefetchable)</CODE> |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
46 </P> |
1682 | 47 <LI>from mga_vid kernel driver messages (use dmesg): |
48 <P><CODE>mga_mem_base = d8000000</CODE></P> | |
49 </UL></P> | |
1612 | 50 |
1682 | 51 <P>Then let's find the memory size. This is very easy, just convert video ram |
52 size to hexadecimal, or use this table:</P> | |
1612 | 53 |
1682 | 54 <TABLE BORDER=0> |
55 <TD> </TD><TD>1 MB</TD><TD WIDTH=10%></TD><TD>0x100000</TD><TR> | |
56 <TD></TD><TD>2 MB</TD><TD></TD><TD>0x200000</TD><TR> | |
57 <TD></TD><TD>4 MB</TD><TD></TD><TD>0x400000</TD><TR> | |
58 <TD></TD><TD>8 MB</TD><TD></TD><TD>0x800000</TD><TR> | |
59 <TD></TD><TD>16 MB</TD><TD></TD><TD>0x1000000</TD><TR> | |
60 <TD></TD><TD>32 MB</TD><TD></TD><TD>0x2000000</TD><TR> | |
61 </TABLE> | |
1612 | 62 |
63 | |
1682 | 64 <P>You know base address and memory size, let's setup mtrr registers! |
65 For example, for the Matrox card above (base=0xd8000000) with 32MB | |
66 ram (size=0x2000000) just execute:</P> | |
1612 | 67 |
68 | |
1682 | 69 <P><CODE> echo "base=0xd8000000 size=0x2000000 type=write-combining" >| /proc/mtrr</CODE></P> |
1612 | 70 |
71 | |
1682 | 72 <P>Not all CPUs support MTRRs. For example older K6-2's [around 266Mhz, |
73 stepping 0] doesn't support MTRR, but stepping 12's do ('<CODE>cat /proc/cpuinfo</CODE>' | |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
74 to check it').</P> |
1612 | 75 |
2745 | 76 <P><B><A NAME=2.3.1.2>2.3.1.2. Xv</A></B></P> |
1612 | 77 |
1682 | 78 <P>Under XFree86 4.0.2 or newer, you can use your card's hardware YUV routines |
4498 | 79 using the XVideo extension. This is what the option '-vo xv' uses. Also, |
80 this is driver supports adjusting brightness/contrast/hue/etc (unless you use | |
81 the old, slow DirectShow DivX codec, which supports it everywhere), see the | |
82 manpage.</P> | |
83 | |
84 <P>In order to make this work, be sure to check the following:</P> | |
1682 | 85 <P><UL> |
86 <LI>You have to use XFree86 4.0.2 or newer (former versions don't have XVideo) | |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
87 <LI>Your card actually supports hardware acceleration (modern cards do) |
1682 | 88 <LI>X loads the XVideo extension, it's something like this: |
1612 | 89 |
1682 | 90 <P><CODE> (II) Loading extension XVideo</CODE></P> |
91 <P>in /var/log/XFree86.0.log</P> | |
1612 | 92 |
1682 | 93 <P>NOTE: this loads only the XFree86's extension. In a good install, this is |
94 always loaded, and doesn't mean that the _card's_ XVideo support is loaded!</P> | |
1612 | 95 |
1682 | 96 <LI>Your card has Xv support under Linux. To check, try 'xvinfo', it is the |
97 part of the XFree86 distribution. It should display a long text, similar | |
98 to this: | |
99 <PRE> | |
1612 | 100 X-Video Extension version 2.2 |
101 screen #0 | |
102 Adaptor #0: "Savage Streams Engine" | |
103 number of ports: 1 | |
104 port base: 43 | |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
105 operations supported: PutImage |
1612 | 106 supported visuals: |
107 depth 16, visualID 0x22 | |
108 depth 16, visualID 0x23 | |
109 number of attributes: 5 | |
110 (...) | |
111 Number of image formats: 7 | |
112 id: 0x32595559 (YUY2) | |
113 guid: 59555932-0000-0010-8000-00aa00389b71 | |
114 bits per pixel: 16 | |
115 number of planes: 1 | |
116 type: YUV (packed) | |
117 id: 0x32315659 (YV12) | |
118 guid: 59563132-0000-0010-8000-00aa00389b71 | |
119 bits per pixel: 12 | |
120 number of planes: 3 | |
121 type: YUV (planar) | |
122 (...etc...) | |
1682 | 123 </PRE> |
1612 | 124 |
1682 | 125 <P>It must support YUY2 packed, and YV12 planar pixel formats to be |
126 usable with <B>MPlayer</B>.</P> | |
1612 | 127 |
1682 | 128 <LI>And finally, check if <B>MPlayer</B> was compiled with 'xv' support. |
129 ./configure prints this. | |
1612 | 130 |
1682 | 131 </UL></P> |
132 | |
2745 | 133 <P><B><A NAME=2.3.1.2.1>2.3.1.2.1. 3dfx cards</A></B></P> |
1612 | 134 |
1682 | 135 <P>Older 3dfx drivers were known to have problems with XVideo acceleration, |
136 it didn't support either YUY2 or YV12, and so. Verify that you have | |
3942 | 137 XFree86 version 4.1.0 or greater, it works ok with YUY2, but <B>crashes |
138 with YV12</B>! Thus, either wait for 4.2.0 or use the | |
1682 | 139 <A HREF="http://dri.sourceforge.net">DRI</A> cvs. |
140 If you experience strange effects using -vo xv, try SDL (it has XVideo too) | |
2745 | 141 and see if it helps. Check the <A HREF="#2.3.1.4">SDL section</A> for details.</P> |
1612 | 142 |
2745 | 143 <P><B>OR</B>, try the NEW -vo tdfxfb driver! See the <A HREF=#2.3.1.9>2.3.1.9</A> |
1992 | 144 section!</P> |
1612 | 145 |
2865 | 146 |
2745 | 147 <P><B><A NAME=2.3.1.2.2>2.3.1.2.2. S3 cards</A></B></P> |
1682 | 148 |
149 <P>S3 Savage3D's should work fine, but for Savage4, use XFree86 version 4.0.3 | |
3942 | 150 or greater (in case of image problems, try 16bpp). As for S3 Virge.. there is |
151 xv support, but the card itself is very slow, so you better sell it.</P> | |
1682 | 152 |
3027 | 153 <P><B>NOTE</B>: Savage cards have a slow YV12 image displaying capability (it needs |
2883 | 154 to do YV12->YUY2 conversion, because the Savage hardware can't display YV12). |
155 So when this documentation says at some point "this has YV12 output use this, | |
4920
089485d69edd
added notes about enhanced Neomagic and Savage4 drivers
gabucino
parents:
4908
diff
changeset
|
156 it's faster", it's not sure. Try <A HREF="http://www.mplayerhq.hu/MPlayer/contrib/Savage-driver/savage_drv.o.mmx2.bz2">this |
089485d69edd
added notes about enhanced Neomagic and Savage4 drivers
gabucino
parents:
4908
diff
changeset
|
157 driver</A>, it uses MMX2 for this task and is faster than the native X driver.</P> |
2865 | 158 |
159 | |
2745 | 160 <P><B><A NAME=2.3.1.2.3>2.3.1.2.3. nVidia cards</A></B></P> |
1612 | 161 |
3938 | 162 <P>nVidia isn't a very good choice under Linux (according to NVidia, this |
163 is <A HREF="users_against_developers.html#nvidia">not true</A>).. You'll have to use the | |
3290 | 164 binary closed-source nVidia driver, available at nVidia's website. The standard XFree86 |
1682 | 165 driver doesn't support XVideo for these cards, due to nVidia's closed |
166 sources/specifications.</P> | |
1612 | 167 |
3290 | 168 <P>As far as I know the latest XFree86 driver contains XVideo support for |
169 Geforce 2 and 3.</P> | |
170 | |
1682 | 171 <P><UL><LI>Riva128 cards don't have XVideo support even with the nvidia driver :( |
172 Complain to NVidia.</UL></P> | |
1612 | 173 |
174 | |
2745 | 175 <P><B><A NAME=2.3.1.2.4>2.3.1.2.4. ATI cards</A></B></P> |
1612 | 176 |
1920 | 177 <P> |
4177 | 178 <LI>The <A HREF="http://www.linuxvideo.org/gatos">GATOS driver</A> (which you |
179 should use, unless you have Rage128 or Radeon) has VSYNC enabled by default. It | |
180 means that decoding speed (!) is synced to the monitor's refresh rate. If | |
181 playing seems to be slow, try disabling VSYNC somehow, or set refresh rate to | |
182 n*(fps of the movie) Hz.</LI> | |
1920 | 183 |
184 <LI>Radeon VE - currently only XFree86 CVS has driver for this card, version | |
3027 | 185 4.1.0 doesn't. And no TV out support. Of course with <B>MPlayer</B> you can |
186 happily get <B>accelerated</B> display, with or without <B>TV output</B>, and | |
4908
9b2b09d3ff8b
strike period over, commiting stuff. next commit will be rewrite. (?)
gabucino
parents:
4819
diff
changeset
|
187 no libraries or X are needed. Read <a href=#2.3.1.15>Vidix</a> and <A |
3053 | 188 HREF=#2.3.1.14>Radeon video overlay</A> sections).</LI> </P> |
1612 | 189 |
190 | |
2745 | 191 <P><B><A NAME=2.3.1.2.5>2.3.1.2.5. NeoMagic cards</A></B></P> |
1922
5f0e4310dd4d
NeoMagic stuff added (legyen egyszer gyereknap...)
gabucino
parents:
1920
diff
changeset
|
192 |
4920
089485d69edd
added notes about enhanced Neomagic and Savage4 drivers
gabucino
parents:
4908
diff
changeset
|
193 <P>These cards can be found in many laptops. Unfortunately, the driver in |
089485d69edd
added notes about enhanced Neomagic and Savage4 drivers
gabucino
parents:
4908
diff
changeset
|
194 X 4.2.0 can't do Xv, but we have a modified, Xv-capable driver for you. |
089485d69edd
added notes about enhanced Neomagic and Savage4 drivers
gabucino
parents:
4908
diff
changeset
|
195 <A HREF="http://www.mplayerhq.hu/MPlayer/contrib/NeoMagic-driver/neomagic_drv.o.4.2.0.bz2">Download from here</A>. |
089485d69edd
added notes about enhanced Neomagic and Savage4 drivers
gabucino
parents:
4908
diff
changeset
|
196 Driver provided by Atmosfear.</P> |
089485d69edd
added notes about enhanced Neomagic and Savage4 drivers
gabucino
parents:
4908
diff
changeset
|
197 |
1922
5f0e4310dd4d
NeoMagic stuff added (legyen egyszer gyereknap...)
gabucino
parents:
1920
diff
changeset
|
198 |
3794 | 199 <P><B><A NAME=2.3.1.2.6>2.3.1.2.6. Trident cards</A></B></P> |
200 | |
201 <P>If you want to use xv with a trident card, provided that it doesn't | |
202 work with 4.1.0, try the latest cvs of Xfree or wait for Xfree 4.2.0. | |
203 The latest cvs adds support for fullscreen xv support with the | |
204 Cyberblade XP card.</P> | |
1922
5f0e4310dd4d
NeoMagic stuff added (legyen egyszer gyereknap...)
gabucino
parents:
1920
diff
changeset
|
205 |
2745 | 206 <P><B><A NAME=2.3.1.3>2.3.1.3. DGA</A></B></P> |
1612 | 207 |
2745 | 208 <P><B><A NAME=2.3.1.3.1>2.3.1.3.1. Summary</A></B></P> |
1612 | 209 |
1682 | 210 <P>This document tries to explain in some words what DGA is in general and |
211 what the DGA video output driver for mplayer can do (and what it can't).</P> | |
1612 | 212 |
213 | |
2745 | 214 <P><B><A NAME=2.3.1.3.2>2.3.1.3.2. What is DGA</A></B></P> |
1612 | 215 |
1682 | 216 <P>DGA is short for Direct Graphics Access and is a means for a program to |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
217 bypass the X-Server and directly modifying the framebuffer memory. |
1682 | 218 Technically spoken this happens by mapping the framebuffer memory into |
219 the memory range of your process. This is allowed by the kernel only | |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
220 if you have superuser privileges. You can get these either by logging in |
1682 | 221 as root or by setting the suid bit on the mplayer excecutable (NOT |
222 recommended!).</P> | |
1612 | 223 |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
224 <P>There are two versions of DGA: DGA1 is used by XFree 3.x.x and DGA2 was |
1682 | 225 introduced with XFree 4.0.1.</P> |
1612 | 226 |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
227 <P>DGA1 provides only direct framebuffer access as described above. For |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
228 switching the resolution of the video signal you have to rely on the |
1682 | 229 XVidMode extension.</P> |
1612 | 230 |
1682 | 231 <P>DGA2 incorporates the features of XVidMode extension and also allows |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
232 switching the depth of the display. So you may, although basically |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
233 running a 32 bit depth XServer, switch to a depth of 15 bits and vice |
1682 | 234 versa. </P> |
1612 | 235 |
1682 | 236 <P>However DGA has some drawbacks. It seems it is somewhat dependent on the |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
237 graphics chip you use and on the implementation of the XServer's video |
1682 | 238 driver that controls this chip. So it does not work on every system ...</P> |
1612 | 239 |
240 | |
2745 | 241 <P><B><A NAME=2.3.1.3.3>2.3.1.3.3. Installing DGA support for MPlayer</A></B></P> |
1682 | 242 |
243 <P>First make sure X loads the DGA extension, see in /var/log/XFree86.0.log:</P> | |
244 | |
245 <P> <CODE>(II) Loading extension XFree86-DGA</CODE></P> | |
246 | |
247 <P>See, XFree86 4.0.x or greater is VERY RECOMMENDED! | |
248 <B>MPlayer</B>'s DGA driver is autodetected on ./configure, or you can force it | |
249 with --enable-dga.</P> | |
1612 | 250 |
1682 | 251 <P>If the driver couldn't switch to a smaller resolution, experiment with |
252 switches -vm (only with X 3.3.x), -fs, -bpp, -zoom to find a video mode that | |
253 the movie fits in. There is no converter right now.. :(</P> | |
1612 | 254 |
1682 | 255 <P>Become ROOT. DGA needs root access to be able to write directly video memory. |
256 If you want to run it as user, then install <B>MPlayer</B> SUID root:</P> | |
1612 | 257 |
1682 | 258 <P><CODE> |
2448
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
259 chown root /usr/local/bin/mplayer<BR> |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
260 chmod 750 /usr/local/bin/mplayer<BR> |
1686 | 261 chmod +s /usr/local/bin/mplayer</CODE></P> |
1612 | 262 |
263 | |
1682 | 264 <P>Now it works as a simple user, too.</P> |
1612 | 265 |
266 | |
1682 | 267 <P><B>!!!! BUT STAY TUNED !!!!</B><BR> |
268 This is a <B>BIG</B> security risk! Never do this on a server or on a computer | |
269 can be accessed by more people than only you because they can gain root | |
270 privilegies through suid root mplayer.<BR> | |
271 <B>!!!! SO YOU HAVE BEEN WARNED ... !!!!</B></P> | |
272 | |
273 <P>Now use '-vo dga' option, and there you go! (hope so:) | |
274 You should also try if the '-vo sdl:dga' option works for you! It's much | |
275 faster!!!</P> | |
276 | |
2745 | 277 <P><B><A NAME=2.3.1.3.4>2.3.1.3.4. Resolution switching</A></B></P> |
1682 | 278 |
279 <P>The DGA driver allows for switching the resolution of the output signal. | |
280 This avoids the need for doing (slow) software scaling and at the same | |
281 time provides a fullscreen image. Ideally it would switch to the exact | |
282 resolution (except for honouring aspect ratio) of the video data, but the | |
1686 | 283 XServer only allows switching to resolutions predefined in |
1682 | 284 <CODE>/etc/X11/XF86Config</CODE> (<CODE>/etc/X11/XF86Config-4</CODE> for XFree 4.0.X respectively). |
285 Those are defined by so-called modelines and depend on the capabilites | |
286 of your video hardware. The XServer scans this config file on startup and | |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
287 disables the modelines not suitable for your hardware. You can find |
1682 | 288 out which modes survive with the X11 log file. It can be found at: |
289 <CODE>/var/log/XFree86.0.log</CODE>.</P> | |
290 <P>See appendix A for some sample modeline definitions.</P> | |
291 | |
2745 | 292 <P><B><A NAME=2.3.1.3.5>2.3.1.3.5. DGA & MPlayer</A></B></P> |
1612 | 293 |
1682 | 294 <P>DGA is used in two places with <B>MPlayer</B>: The SDL driver can be made to make |
295 use of it (-vo sdl:dga) and within the DGA driver (-vo dga). | |
296 The above said is true for both; in the following sections I'll explain | |
297 how the DGA driver for <B>MPlayer</B> works.</P> | |
1612 | 298 |
2745 | 299 <P><B><A NAME=2.3.1.3.6>2.3.1.3.6. Features of the DGA driver</A></B></P> |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
300 |
1682 | 301 <P>The DGA driver is invoked by specifying -vo dga at the command line. |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
302 The default behaviour is to switch to a resolution matching the original |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
303 resolution of the video as close as possible. It deliberately ignores the |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
304 -vm and -fs switches (enabling of video mode switching and fullscreen) - |
1682 | 305 it always tries to cover as much area of your screen as possible by switching |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
306 the video mode, thus refraining to use a single additional cycle of your CPU |
1682 | 307 to scale the image. |
308 If you don't like the mode it chooses you may force it to choose the mode | |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
309 matching closest the resolution you specify by -x and -y. |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
310 By providing the -v option, the DGA driver will print, among a lot of other |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
311 things, a list of all resolutions supported by your current XF86-Config |
1682 | 312 file. |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
313 Having DGA2 you may also force it to use a certain depth by using the -bpp |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
314 option. Valid depths are 15, 16, 24 and 32. It depends on your hardware |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
315 whether these depths are natively supported or if a (possibly slow) |
1682 | 316 conversion has to be done.</P> |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
317 |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
318 <P>If you should be lucky enough to have enough offscreen memory left to |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
319 put a whole image there, the DGA driver will use doublebuffering, which |
1682 | 320 results in much smoother movie replaying. It will tell you whether double- |
321 buffering is enabled or not.</P> | |
1612 | 322 |
1682 | 323 <P>Doublebuffering means that the next frame of your video is being drawn in |
324 some offscreen memory while the current frame is being displayed. When the | |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
325 next frame is ready, the graphics chip is just told the location in memory |
1682 | 326 of the new frame and simply fetches the data to be displayed from there. |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
327 In the meantime the other buffer in memory will be filled again with new |
1682 | 328 video data.</P> |
329 | |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
330 Doublebuffering may be switched on by using the option -double and may be |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
331 disabled with -nodouble. Current default option is to disable |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
332 doublebuffering. When using the DGA driver, onscreen display (OSD) only |
1682 | 333 works with doublebuffering enabled. However, enabling doublebuffering may |
334 result in a big speed penalty (on my K6-II+ 525 it used an additional 20% of | |
335 CPU time!) depending on the implementation of DGA for your hardware.</P> | |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
336 |
1682 | 337 |
2745 | 338 <P><B><A NAME=2.3.1.3.7>2.3.1.3.7. Speed issues</A></B></P> |
1682 | 339 |
340 <P>Generally spoken, DGA framebuffer access should be at least as fast as using | |
341 the X11 driver with the additional benefit of getting a fullscreen image. | |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
342 The percentage speed values printed by mplayer have to be interpreted with |
1682 | 343 some care, as for example, with the X11 driver they do not include the time |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
344 used by the X-Server needed for the actual drawing. Hook a terminal to a |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
345 serial line of your box and start top to see what is really going on in your |
1682 | 346 box ...</P> |
347 | |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
348 <P>Generally spoken, the speedup done by using DGA against 'normal' use of X11 |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
349 highly depends on your graphics card and how well the X-Server module for it |
1682 | 350 is optimized.</P> |
351 | |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
352 <P>If you have a slow system, better use 15 or 16bit depth since they require |
1682 | 353 only half the memory bandwidth of a 32 bit display.</P> |
1612 | 354 |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
355 <P>Using a depth of 24bit is even a good idea if your card natively just supports |
1682 | 356 32 bit depth since it transfers 25% less data compared to the 32/32 mode.</P> |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
357 |
1682 | 358 <P>I've seen some avi files already be replayed on a Pentium MMX 266. AMD K6-2 |
359 CPUs might work at 400 MHZ and above.</P> | |
1612 | 360 |
2745 | 361 <P><B><A NAME=2.3.1.3.8>2.3.1.3.8. Known bugs</A></B></P> |
1682 | 362 |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
363 <P>Well, according to some developpers of XFree, DGA is quite a beast. They |
1682 | 364 tell you better not to use it. Its implementation is not always flawless |
365 with every chipset driver for XFree out there.</P> | |
1612 | 366 |
1682 | 367 <P><UL> |
368 <LI>with XFree 4.0.3 and nv.o there is a bug resulting in strange colors | |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
369 <LI>ATI driver requires to switch mode back more than once after finishing |
1682 | 370 using of DGA |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
371 <LI>some drivers simply fail to switch back to normal resolution (use |
1682 | 372 Ctrl-Alt-Keypad +, - to switch back manually) |
373 <LI>some drivers simply display strange colors | |
374 <LI>some drivers lie about the amount of memory they map into the process's | |
375 address space, thus vo_dga won't use doublebuffering (SIS?) | |
376 <LI>some drivers seem to fail to report even a single valid mode. In this | |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
377 case the DGA driver will crash telling you about a nonsense mode of |
1682 | 378 100000x100000 or the like ... |
379 <LI>OSD only works with doublebuffering enabled | |
380 </UL></P> | |
381 | |
2745 | 382 <P><B><A NAME=2.3.1.3.9>2.3.1.3.9. Future work</A></B></P> |
1682 | 383 |
384 <P><UL><LI>use of the new X11 render interface for OSD | |
385 <LI>where is my TODO list ???? :-(((</UL></P> | |
1612 | 386 |
387 | |
2745 | 388 <P><B><A NAME=2.3.1.3.A>2.3.1.3.A. Some modelines</A></B></P> |
1612 | 389 |
1682 | 390 <PRE> |
1612 | 391 Section "Modes" |
392 Identifier "Modes[0]" | |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
393 Modeline "800x600" 40 800 840 968 1056 600 601 605 628 |
1612 | 394 Modeline "712x600" 35.0 712 740 850 900 400 410 412 425 |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
395 Modeline "640x480" 25.175 640 664 760 800 480 491 493 525 |
1612 | 396 Modeline "400x300" 20 400 416 480 528 300 301 303 314 Doublescan |
397 Modeline "352x288" 25.10 352 368 416 432 288 296 290 310 | |
398 Modeline "352x240" 15.750 352 368 416 432 240 244 246 262 Doublescan | |
399 Modeline "320x240" 12.588 320 336 384 400 240 245 246 262 Doublescan | |
400 EndSection | |
1682 | 401 </PRE> |
1612 | 402 |
1682 | 403 <P>These entries work fine with my Riva128 chip, using nv.o XServer driver |
404 module.</P> | |
1612 | 405 |
406 | |
2745 | 407 <P><B><A NAME=2.3.1.3.B>2.3.1.3.B. Bug Reports</A></B></P> |
1612 | 408 |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
409 <P>If you experience troubles with the DGA driver please feel free to file |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
410 a bug report to me (e-mail address below). Please start mplayer with the |
1682 | 411 -v option and include all lines in the bug report that start with vo_dga:</P> |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
412 |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
413 <P>Please do also include the version of X11 you are using, the graphics card |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
414 and your CPU type. The X11 driver module (defined in XF86-Config) might |
1682 | 415 also help. Thanks!</P> |
1612 | 416 |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
417 |
1682 | 418 <P><I>Acki (acki@acki-netz.de, www.acki-netz.de)</I></P> |
1612 | 419 |
420 | |
2745 | 421 <P><B><A NAME=2.3.1.4>2.3.1.4. SDL</A></B></P> |
1612 | 422 |
3988 | 423 <P>SDL (Simple Directmedia Layer) is basically an unified video/audio |
424 interface. Programs that use it know only about SDL, and not about what video | |
425 or audio driver does SDL actually use. For example a Doom port using SDL can | |
426 run on svgalib, aalib, X, fbdev, and others, you only have to specify the | |
427 (for example) video driver to use with the SDL_VIDEODRIVER environment | |
428 variable. Well, in theory.</P> | |
429 | |
430 <P>With <B>MPlayer</B>, we used its X11 driver's software scaler ability for | |
431 cards/drivers that doesn't support XVideo, until we made our own (faster, | |
432 nicer) software scaler. Also we used its aalib output, but now we have ours | |
433 which is more comfortable. Its DGA mode was better than ours, until | |
434 recently. Get it now? :)</P> | |
435 | |
436 <P>It also helps with some buggy drivers/cards if the video is jerky | |
437 (not slow system problem), or audio is lagging.</P> | |
438 | |
1682 | 439 <P>Here are some notes about SDL out in <B>MPlayer</B>.</P> |
1612 | 440 |
441 | |
442 | |
1682 | 443 <P><TABLE BORDER=0> |
4982
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
444 <TD COLSPAN=4><P><B><FONT CLASS="text">There are several commandline switches for SDL:</B></P></TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
445 <TD> </TD><TD><FONT CLASS="text">-vo sdl:name</TD><TD> </TD><TD> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
446 <FONT CLASS="text">specifies sdl video driver to use (ie. aalib, dga, x11)</TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
447 <TD></TD><TD><FONT CLASS="text">-ao sdl:name</TD><TD></TD><TD><FONT CLASS="text">specifies sdl audio driver to use (ie. dsp, |
1682 | 448 esd, arts)</TD><TR> |
4982
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
449 <TD></TD><TD><FONT CLASS="text">-noxv</TD><TD></TD><TD><FONT CLASS="text">disables Xvideo hardware acceleration</TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
450 <TD></TD><TD><FONT CLASS="text">-forcexv</TD><TD></TD><TD><FONT CLASS="text">tries to force Xvideo acceleration</TD><TR> |
1612 | 451 |
4982
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
452 <TD COLSPAN=4><P><B><FONT CLASS="text">SDL Keys:</B></P></TD><TR> |
1612 | 453 |
4982
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
454 <TD></TD><TD><FONT CLASS="text">F</TD><TD></TD><TD><FONT CLASS="text">toggles fullscreen/windowed mode</TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
455 <TD></TD><TD><FONT CLASS="text">C</TD><TD></TD><TD><FONT CLASS="text">cycles available fullscreen modes</TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
456 <TD></TD><TD><FONT CLASS="text">W/S</TD><TD></TD><TD><FONT CLASS="text">mappings for * and / (mixer control)</TD><TR> |
1612 | 457 |
1682 | 458 </TABLE></P> |
1612 | 459 |
1682 | 460 <P><B>KNOWN BUGS:</B></P> |
461 <P><UL><LI>Keys pressed under sdl:aalib console driver repeat forever. (use -vo aa !) | |
462 It's bug in SDL, I can't change it (tested with SDL 1.2.1). | |
463 </UL></P> | |
1612 | 464 |
2745 | 465 <P><B><A NAME=2.3.1.5>2.3.1.5. SVGAlib</A></B></P> |
1682 | 466 |
467 <P>If you don't have X, you can use the SVGAlib target! Be sure not to use the | |
468 -fs switch, since it toggles the usage of the software scaler, and it's | |
469 SLOOOW now, unless you have a real fast CPU (and/or MTRR?). :(</P> | |
1612 | 470 |
1682 | 471 <P>Of course you'll have to install svgalib and its development package in |
472 order for <B>MPlayer</B> build its SVGAlib driver (autodetected, but can be | |
473 forced), and don't forget to edit /etc/vga/libvga.config to suit your | |
474 card & monitor.</P> | |
1612 | 475 |
2745 | 476 <P><B><A NAME=2.3.1.6>2.3.1.6. Framebuffer output (FBdev)</A></B></P> |
1682 | 477 |
478 <P>Whether to build the FBdev target is autodetected during ./configure . | |
479 Read the framebuffer documentation in the kernel sources | |
480 (Documentation/fb/*) for info on how to enable it, etc.. !</P> | |
1612 | 481 |
1682 | 482 <P>If your card doesn't support VBE 2.0 standard (older ISA/PCI |
483 cards, such as S3 Trio64), only VBE 1.2 (or older?) : | |
484 Well, VESAfb is still available, but you'll have to load SciTech Display | |
485 Doctor (formerly UniVBE) before booting Linux. Use a DOS boot disk or | |
486 whatever. And don't forget to register your UniVBE ;))</P> | |
1612 | 487 |
1682 | 488 <P>The FBdev output takes some additional parameters above the others:</P> |
1612 | 489 |
1682 | 490 <P><TABLE BORDER=0> |
4982
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
491 <TD> </TD><TD><FONT CLASS="text">-fb</TD><TD> </TD><TD> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
492 <FONT CLASS="text">specify the framebuffer device to use (/dev/fb0)</TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
493 <TD></TD><TD><FONT CLASS="text">-fbmode</TD><TD></TD><TD><FONT CLASS="text">mode name to use (according to /etc/fb.modes)</TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
494 <TD></TD><TD><FONT CLASS="text">-fbmodeconfig</TD><TD></TD><TD><FONT CLASS="text"> config file of modes (default /etc/fb.modes)</TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
495 <TD></TD><TD><FONT CLASS="text">-monitor_hfreq</TD><TD></TD><TD ROWSPAN=3><FONT CLASS="text">IMPORTANT values, see example.conf</TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
496 <TD></TD><TD><FONT CLASS="text">-monitor_vfreq</TD><TD></TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
497 <TD></TD><TD><FONT CLASS="text">-monitor_dotclock</TD><TD></TD><TR> |
1682 | 498 </TABLE></P> |
1612 | 499 |
1682 | 500 <P>If you want to change to a specific mode, then use</P> |
1612 | 501 |
1682 | 502 <P><CODE> mplayer -vm -fbmode (NameOfMode) filename</CODE></P> |
1612 | 503 |
1682 | 504 <P><UL><LI><B>-vm</B> alone will choose the most suitable mode from /etc/fb.modes . Can be |
505 used together with -x and -y options too. The -flip option is supported only | |
506 if the movie's pixel format matches the video mode's pixel format. | |
507 Pay attention to the bpp value, fbdev driver tries to use the current, | |
2507 | 508 or if you specify the -bpp option, then that.</LI> |
1682 | 509 <LI><B>-zoom</B> option isn't supported (software scaling is slow). -fs option |
2507 | 510 isn't supported. You can't use 8bpp (or less) modes.</LI> |
4701 | 511 <LI>you possibly want to turn the cursor off : <CODE>echo -e '\033[?25l'</CODE> |
512 or <CODE>setterm -cursor off</CODE><BR> | |
2507 | 513 and the screen saver: <CODE>setterm -blank 0</CODE><BR> |
514 To turn the cursor back on : <CODE>echo -e '\033[?25h'</CODE> | |
4701 | 515 or <CODE>setterm -cursor on</CODE> |
2507 | 516 </UL></P> |
1612 | 517 |
1682 | 518 <P>NOTE: FBdev video mode changing _does not work_ with the VESA framebuffer, |
519 and don't ask for it, since it's not an <B>MPlayer</B> limitation.</P> | |
1612 | 520 |
2745 | 521 <P><B><A NAME=2.3.1.7>2.3.1.7. Matrox framebuffer (mga_vid)</A></B></P> |
1612 | 522 |
1992 | 523 <P>This section is about the Matrox G200/G400/G450/G550 BES (Back-End Scaler) |
1682 | 524 support, the mga_vid kernel driver. It's active developed by me (A'rpi), and |
525 it has hardware VSYNC support with triple buffering. It works on both | |
526 framebuffer console and under X.</P> | |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
527 |
4505
fdeee8424d90
on non-Linux use Vidix instead of mga_vid kernelmodule
gabucino
parents:
4504
diff
changeset
|
528 <P><B>WARNING</B>: on non-Linux systems, use <A HREF=#2.3.1.15>Vidix</A> for |
fdeee8424d90
on non-Linux use Vidix instead of mga_vid kernelmodule
gabucino
parents:
4504
diff
changeset
|
529 mga_vid !!!</P> |
fdeee8424d90
on non-Linux use Vidix instead of mga_vid kernelmodule
gabucino
parents:
4504
diff
changeset
|
530 |
1682 | 531 <P>To use it, you first have to compile mga_vid.o:</P> |
1612 | 532 |
1682 | 533 <P><CODE> cd drivers<BR> |
534 make</CODE></P> | |
1612 | 535 |
1682 | 536 <P>Then create /dev/mga_vid device:</P> |
1612 | 537 |
1682 | 538 <P><CODE> mknod /dev/mga_vid c 178 0</CODE></P> |
1612 | 539 |
1682 | 540 <P>and load the driver with</P> |
541 | |
542 <P><CODE> insmod mga_vid.o</CODE></P> | |
1612 | 543 |
1682 | 544 <P>You should verify the memory size detection using the 'dmesg' command. If |
545 it's bad, use the mga_ram_size option (rmmod mga_vid first), specify card's | |
546 memory size in MB:</P> | |
1612 | 547 |
1682 | 548 <P><CODE> insmod mga_vid.o mga_ram_size=16</CODE></P> |
1612 | 549 |
3664
f3a20477f042
added "copy mga_vid to /lib/modules" to install instructions
gabucino
parents:
3583
diff
changeset
|
550 <P>To make it load/unload automatically when needed, first insert the following line |
1682 | 551 at the end of /etc/modules.conf:</P> |
1612 | 552 |
1682 | 553 <P><CODE> alias char-major-178 mga_vid</CODE></P> |
1612 | 554 |
3664
f3a20477f042
added "copy mga_vid to /lib/modules" to install instructions
gabucino
parents:
3583
diff
changeset
|
555 <P>Then copy the <CODE>mga_vid.o</CODE> module to the appropriate place under |
f3a20477f042
added "copy mga_vid to /lib/modules" to install instructions
gabucino
parents:
3583
diff
changeset
|
556 <CODE>/lib/modules/<kernel version>/somewhere</CODE>.</P> |
f3a20477f042
added "copy mga_vid to /lib/modules" to install instructions
gabucino
parents:
3583
diff
changeset
|
557 |
1682 | 558 <P>Then run</P> |
1612 | 559 |
1682 | 560 <P><CODE> depmod -a</CODE></P> |
1612 | 561 |
1682 | 562 <P>Now you have to (re)compile <B>MPlayer</B>, ./configure will detect /dev/mga_vid |
563 and build the 'mga' driver. Using it from <B>MPlayer</B> goes by '-vo mga' if | |
564 you have matroxfb console, or '-vo xmga' under XFree86 3.x.x or 4.x.x.</P> | |
565 | |
2108 | 566 <P>The mga_vid driver cooperates with Xv.</P> |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
567 |
4504 | 568 <P>The <CODE>/dev/mga_vid</CODE> device file can be read (for example by |
569 <CODE>cat /dev/mga_vid</CODE>) for some info, and written for brightness | |
570 change : <CODE>echo "brightness=120" > /dev/mga_vid</CODE></P> | |
571 | |
1612 | 572 |
2745 | 573 <P><B><A NAME=2.3.1.8>2.3.1.8. SiS 6326 framebuffer (sis_vid)</A></B></P> |
1682 | 574 |
575 <P>SiS 6326 YUV Framebuffer driver -> sis_vid kernel driver</P> | |
1612 | 576 |
1682 | 577 <P>Its interface should be compatible with the mga_vid, but the driver was not |
578 updated after the mga_vid changes, so it's outdated now. Volunteers | |
579 needed to test it and bring the code up-to-date.</P> | |
1612 | 580 |
2745 | 581 <P><B><A NAME=2.3.1.9>2.3.1.9. 3dfx YUV support (tdfxfb)</A></B></P> |
1612 | 582 |
1992 | 583 <P>This driver uses the kernel's tdfx framebuffer driver to play movies with |
584 YUV acceleration. You'll need a kernel with tdfxfb support, and recompile with | |
585 <CODE>./configure --enable-tdfxfb</CODE></P> | |
1612 | 586 |
2745 | 587 <P><B><A NAME=2.3.1.10>2.3.1.10. OpenGL output</A></B></P> |
1612 | 588 |
1682 | 589 <P><B>MPlayer</B> support displaying movies using OpenGL. Unfortunately, not all |
590 drivers support this ability. For example the Utah-GLX drivers | |
591 (for XFree86 3.3.6) have it, with all cards. | |
592 See <A HREF="http://utah-glx.sourceforge.net">http://utah-glx.sourceforge.net</A> | |
593 for details about how to install it.</P> | |
1612 | 594 |
1682 | 595 <P>XFree86(DRI) >= 4.0.3 supports it only with Matrox, and Radeon cards. |
596 See <A HREF="http://dri.sourceforge.net">http://dri.sourceforge.net</A> for download, | |
597 and installation instructions.</P> | |
1612 | 598 |
2745 | 599 <P><B><A NAME=2.3.1.11>2.3.1.11. AAlib - text mode displaying</B></P> |
1612 | 600 |
1682 | 601 <P><B>AAlib</B> is a library for displaying graphics in text mode, using powerful |
602 ASCII renderer. There are LOTS of programs already supporting it, like Doom, | |
603 Quake, etc. MPlayer contains a very usable driver for it. | |
604 If ./configure detects aalib installed, the aalib libvo driver will be built.</P> | |
1612 | 605 |
1682 | 606 <P><TABLE BORDER=0> |
4982
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
607 <TD COLSPAN=4><P><B><FONT CLASS="text">You can use some keys in the AA Window to change rendering options:</B></P></TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
608 <TD> </TD><TD><FONT CLASS="text">1</TD><TD> </TD><TD><FONT CLASS="text">decrease contrast</TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
609 <TD></TD><TD><FONT CLASS="text">2</TD><TD></TD><TD><FONT CLASS="text">increase contrast</TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
610 <TD></TD><TD><FONT CLASS="text">3</TD><TD></TD><TD><FONT CLASS="text">decrease brightness</TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
611 <TD></TD><TD><FONT CLASS="text">4</TD><TD></TD><TD><FONT CLASS="text">increase brightness</TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
612 <TD></TD><TD><FONT CLASS="text">5</TD><TD></TD><TD><FONT CLASS="text">switch fast rendering on/off</TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
613 <TD></TD><TD><FONT CLASS="text">6</TD><TD></TD><TD><FONT CLASS="text">set dithering mode (none, error distribution, floyd steinberg)</TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
614 <TD></TD><TD><FONT CLASS="text">7</TD><TD></TD><TD><FONT CLASS="text">invert image</TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
615 <TD></TD><TD><FONT CLASS="text">a</TD><TD></TD><TD><FONT CLASS="text">toggles between aa and mplayer control)</TD><TR> |
1682 | 616 |
4982
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
617 <TD COLSPAN=4><P><B><FONT CLASS="text">The following command line options can be used:</B></P></TD><TR> |
1612 | 618 |
4982
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
619 <TD></TD><TD><FONT CLASS="text">-aaosdcolor=V</TD><TD></TD><TD><FONT CLASS="text">change osd color</TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
620 <TD></TD><TD><FONT CLASS="text">-aasubcolor=V</TD><TD></TD><TD><FONT CLASS="text">change subtitle color</TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
621 <TD COLSPAN=3></TD><TD><P><I><FONT CLASS="text">where V can be: (0/normal, 1/dark, 2/bold, 3/boldfont, 4/reverse, 5/special)</P></TD><TR> |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
622 |
4982
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
623 <TD COLSPAN=4><P><B><FONT CLASS="text">AAlib itselves provides a large sum of options. |
1682 | 624 Here are some important:</P></B></TD><TR> |
625 | |
4982
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
626 <TD></TD><TD><FONT CLASS="text">-aadriver</TD><TD></TD><TD><FONT CLASS="text">set recommended aa driver (X11, curses, linux)</TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
627 <TD></TD><TD><FONT CLASS="text">-aaextended</TD><TD></TD><TD><FONT CLASS="text">use all 256 characters</TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
628 <TD></TD><TD><FONT CLASS="text">-aaeight</TD><TD></TD><TD><FONT CLASS="text">use eight bit ascii</TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
629 <TD></TD><TD><FONT CLASS="text">-aahelp</TD><TD></TD><TD><FONT CLASS="text">prints out all aalib options</TD><TR> |
1682 | 630 </TABLE></P> |
631 | |
632 <P>NOTE: the rendering is very CPU intensive, especially when using AA-on-X | |
633 (using aalib on X), and it's least CPU intensive on standard, | |
634 non-framebuffer console. Use SVGATextMode to set up a big textmode, | |
635 then enjoy! (secondary head Hercules cards rock :)) (anyone can enhance | |
636 bdev to do conversion/dithering to hgafb? Would be neat :)</P> | |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
637 |
1682 | 638 <P>Use the -framedrop option if your comp isn't fast enough to render all frames!</P> |
1612 | 639 |
1682 | 640 <P>Playing on terminal you'll get better speed and quality using the linux driver, not |
641 curses (-aadriver linux). But therefore you need write access on /dev/vcsa<terminal>! | |
642 That isn't autodetected by aalib, bu vo_aa tries to find the best mode. | |
1731 | 643 See <A HREF="http://aa-project.sourceforge.net/tune/">http://aa-project.sourceforge.net/tune/</A> for further tuning issues.</P> |
1612 | 644 |
2471 | 645 |
2745 | 646 <P><B><A NAME=2.3.1.12>2.3.1.12. VESA - output to VESA BIOS</B></P> |
2448
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
647 <P> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
648 This driver was designed and introduced as <b>generic driver</b> for any video |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
649 card which has VESA VBE 2.0 compatible BIOS. But exists still one reason of |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
650 developing of this driver - it's multiple troubles with displaying movie on TV.<BR> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
651 <b>VESA BIOS EXTENSION (VBE) Version 3.0 Date: September 16, 1998</b> (Page 70) |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
652 says: |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
653 </P> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
654 |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
655 <P> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
656 <code><i> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
657 <b>Dual-Controller Designs</b><br> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
658 VBE 3.0 supports the dual-controller design by assuming that since both |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
659 controllers are typically provided by the same OEM, under control of a |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
660 single BIOS ROM on the same graphics card, it is possible to hide the fact |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
661 that two controllers are indeed present from the application. This has the |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
662 limitation of preventing simultaneous use of the independent controllers, |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
663 but allows applications released before VBE 3.0 to operate normally. The |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
664 VBE Function 00h (Return Controller Information) returns the combined |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
665 information of both controllers, including the combined list of available modes. |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
666 When the application selects a mode, the appropriate controller is activated. |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
667 Each of the remaining VBE functions then operates on the active controller. |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
668 </i></code> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
669 </P> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
670 |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
671 <P> |
2471 | 672 So you have chances to get working TV-out by using this driver.<br> |
673 (I guess that TV-out frequently is standalone head or standalone output | |
2448
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
674 at least.) |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
675 </P> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
676 |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
677 <P> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
678 <b>What are pluses:</b><BR> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
679 - You have chances to watch movies <b>if Linux even doesn't know</b> your video hardware.<BR> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
680 - You don't need to have installed any graphics' related things on your Linux |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
681 (like X11 (aka XFree86), fbdev and so on). This driver can be run from |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
682 <b>text-mode</b>.<BR> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
683 - You have chances to get <b>working TV-out</b>. (It's known at least for ATI's cards).<BR> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
684 - This driver calls <b>int 10h</b> handler thus it's not an emulator - it |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
685 calls <b>real</b> things of <b>real</b> BIOS in <b>real</b>-mode. (Finely - |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
686 in vm86 mode).<BR> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
687 - Most important :) You can watch <b>DVD at 320x200</b> if you don't have a powerful CPU.<BR> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
688 </P> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
689 |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
690 <P> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
691 <b>What are minuses:</b><BR> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
692 - It works only on <b>x86 systems</b>.<BR> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
693 - <b>It's the slowest driver</b> from all the available ones for MPlayer.<BR> |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
694 (But only if your card doesn't support <b>DGA mode</b> - otherwise this |
2747 | 695 driver is comparable by speed with <b>-vo dga</b> and <b>-vo fbdev</b> ones.<BR> |
696 | |
2448
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
697 - It can be used only by <b>ROOT</b>.<BR> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
698 - Currently it's available only for <b>Linux</b>.<BR> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
699 - It <b>doesn't use</b> any <b>hardware accelerations</b> (like YUV overlay or hw scaling).<BR> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
700 </P> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
701 |
3141 | 702 <P>Don't use this driver with <B>GCC 2.96</B> ! It won't work !</P> |
703 | |
2448
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
704 <P> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
705 <TABLE BORDER=0> |
4982
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
706 <TD COLSPAN=4><P><B><FONT CLASS="text">These switches of command line currently are available for VESA:</B></P></TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
707 <TD> </TD><TD><FONT CLASS="text">-vo vesa:opts</TD><TD></TD><TD><FONT CLASS="text">currently recognized: <b>dga</b> to force dga mode and <b>nodga</b> to disable dga mode. Note: you may omit these parameters to enable <b>autodetect</b> of dga mode. (In the future also will specify mode parameters such as refresh rate, interlacing, doublescan and so on. Samples: i43, 85, d100)</TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
708 <TD></TD><TD><FONT CLASS="text">-screenw, -screenh, -bpp</TD><TD></TD><TD><FONT CLASS="text">force userdefined mode</TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
709 <TD></TD><TD><FONT CLASS="text">-x, -y</TD><TD></TD><TD><FONT CLASS="text">set userdefined prescaling</TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
710 <TD></TD><TD><FONT CLASS="text">-zoom</TD><TD></TD><TD><FONT CLASS="text">enables userdefined prescaling</TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
711 <TD></TD><TD><FONT CLASS="text">-fs</TD><TD></TD><TD><FONT CLASS="text">scales image to fullscreen</TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
712 <TD></TD><TD><FONT CLASS="text">-fs -zoom</TD><TD></TD><TD><FONT CLASS="text">scales userdefined prescaling to fullscreen</TD><TR> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4920
diff
changeset
|
713 <TD></TD><TD><FONT CLASS="text">-double</TD><TD></TD><TD><FONT CLASS="text">enables double buffering mode. (Available only in DGA mode). Should be slower of single buffering, but has no flickering effects.</TD><TR> |
2448
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
714 </TABLE> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
715 </P> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
716 |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
717 <P> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
718 <b>Known problems and workaround:</b><br> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
719 - If you have installed <b>NLS</b> font on your Linux box and run VESA driver |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
720 from text-mode then after terminating mplayer you will have <b>ROM font</b> loaded instead |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
721 of national. You can load national font again by using <b><i>setsysfont</i></b> utility |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
722 from for example Mandrake distribution.<br> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
723 (<b>Hint</b>: The same utility is used for localizating fbdev).<br> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
724 - Some <b>Linux graphics drivers</b> don't update active <b>BIOS mode</b> in DOS memory. So if you have such |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
725 problem - always use VESA driver only from <b>text-mode</b>. Otherwise text-mode (#03) will be |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
726 activated anyway and you will need restart your computer.<br> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
727 - Often after terminating VESA driver you get <b>black screen</b>. To return your screen |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
728 to original state - simply switch to other console (by pressing <b>Alt-Fx</b>) then switch |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
729 to your previous console by the same way.<br> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
730 - To get <b>working TV-out</b> you need have plugged tv-connector in before booting |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
731 your PC since video BIOS initializes itself only once during POST procedure. |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
732 </P> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
733 |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
734 |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
735 <P><B><A NAME=2.3.1.13>2.3.1.13. X11</B></P> |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
736 |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
737 <P>Avoid if possible. Outputs to X11 (uses shared memory extension), with no |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
738 hardware acceleration at all. Supports (MMX/3DNow/SSE accelerated, but still |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
739 slow) software scaling, use the options <CODE>-fs -zoom</CODE>. Most cards have |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
740 hardware scaling support, use the <CODE>-vo xv</CODE> output for them, or |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
741 <CODE>-vo xmga</CODE> for Matroxes.</P> |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
742 |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
743 <P>The problem is that most cards' driver doesn't support |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
744 hardware acceleration on the second head/TV. In those cases, you see green/blue |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
745 coloured window instead of the movie. This is where this driver comes in |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
746 handy, but you need powerful CPU to use software scaling. Don't use the |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
747 SDL driver's software output+scaler, it has worse image quality !</P> |
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
748 |
3290 | 749 <P>Software scaling is very slow, you better try changing video modes instead. |
750 It's very simple. See the <A HREF=#2.3.1.3.A>DGA section's modelines</A>, and | |
751 insert them into your XF86Config. | |
752 <UL> | |
753 <LI>If you have XFree86 4.x.x - use the <CODE>-vm</CODE> option. It will | |
754 change to a resolution your movie fits in. If it doesn't :</LI> | |
755 <LI>With XFree86 3.x.x - you have to cycle through available resolutions | |
756 with the <B>CTRL-ALT-plus</B> and <B>minus</B> keys.</LI> | |
757 </UL> | |
758 | |
759 If you can't find the modes you inserted, browse XFree86's output. Some | |
760 drivers can't use low pixelclocks that are needed for low resolution | |
761 video modes.</P> | |
762 | |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
763 |
3224 | 764 <P><B><A NAME=2.3.1.14>2.3.1.14. Rage128 (Pro) / Radeon video overlay (radeon_vid)</A></B></P> |
2956
f6b51da0a50d
DOXized and applied Nick's radeon_vid patch. Nick, should I update
gabucino
parents:
2883
diff
changeset
|
765 <P> |
3267 | 766 <b>radeon_vid</b> and <B>rage128_vid</B> provides support for the <b>BackEnd Scaler</b> on ATI <b>Radeon</b> and Rage128 (Pro) chipsets. |
2956
f6b51da0a50d
DOXized and applied Nick's radeon_vid patch. Nick, should I update
gabucino
parents:
2883
diff
changeset
|
767 It was designed and introduced as analog of <a href="video.html#2.3.1.7">mga_vid</a> driver, so you can use it in the same way!<br> |
f6b51da0a50d
DOXized and applied Nick's radeon_vid patch. Nick, should I update
gabucino
parents:
2883
diff
changeset
|
768 But main goal of this driver usage is <a href="video.html#2.3.1.12">VESA</a> driver.<br> |
f6b51da0a50d
DOXized and applied Nick's radeon_vid patch. Nick, should I update
gabucino
parents:
2883
diff
changeset
|
769 Simply because VESA enables TV-out on ATI's card but Backend scaler is used after |
f6b51da0a50d
DOXized and applied Nick's radeon_vid patch. Nick, should I update
gabucino
parents:
2883
diff
changeset
|
770 mode switching. This implementation outputs video stream on both: <b>TV-screen</b> and <b>CRTC</b> |
f6b51da0a50d
DOXized and applied Nick's radeon_vid patch. Nick, should I update
gabucino
parents:
2883
diff
changeset
|
771 display simultaneously. (It slightly degrades quality of video output but it's |
f6b51da0a50d
DOXized and applied Nick's radeon_vid patch. Nick, should I update
gabucino
parents:
2883
diff
changeset
|
772 much better than nothing). |
f6b51da0a50d
DOXized and applied Nick's radeon_vid patch. Nick, should I update
gabucino
parents:
2883
diff
changeset
|
773 Sorry! I couldn't find out any video overlay's related information |
f6b51da0a50d
DOXized and applied Nick's radeon_vid patch. Nick, should I update
gabucino
parents:
2883
diff
changeset
|
774 on ATI pages. (I planned to implement it through <b>int 10h</b> calls). But it was |
f6b51da0a50d
DOXized and applied Nick's radeon_vid patch. Nick, should I update
gabucino
parents:
2883
diff
changeset
|
775 very easy to implement this stuff through reading/writing Radeon ports. |
f6b51da0a50d
DOXized and applied Nick's radeon_vid patch. Nick, should I update
gabucino
parents:
2883
diff
changeset
|
776 <br><b>NOTE</b>: XXX_VID technology is perfectly undocumented and maybe in the |
f6b51da0a50d
DOXized and applied Nick's radeon_vid patch. Nick, should I update
gabucino
parents:
2883
diff
changeset
|
777 future this stuff will be fully rewritten. This is the first public release of |
f6b51da0a50d
DOXized and applied Nick's radeon_vid patch. Nick, should I update
gabucino
parents:
2883
diff
changeset
|
778 driver.</P> |
f6b51da0a50d
DOXized and applied Nick's radeon_vid patch. Nick, should I update
gabucino
parents:
2883
diff
changeset
|
779 |
2958 | 780 <P><B>Installation</B></P> |
781 | |
2956
f6b51da0a50d
DOXized and applied Nick's radeon_vid patch. Nick, should I update
gabucino
parents:
2883
diff
changeset
|
782 <P> |
2958 | 783 <UL> |
784 <LI> | |
3224 | 785 <CODE>cd drivers/radeon<BR> |
3268 | 786 make<BR> |
787 make install<BR> | |
788 make nodes</CODE></LI> | |
3267 | 789 <LI>add one of the following at the end of the <CODE>/etc/modules.conf</CODE> file :<BR> |
790 <CODE> alias char-major-178 radeon_vid</CODE><BR> | |
791 <CODE> alias char-major-178 rage128_vid</CODE></LI> | |
2958 | 792 <LI>run <CODE>depmod -a</CODE></LI> |
793 </UL> | |
794 </P> | |
795 | |
796 <P> | |
2956
f6b51da0a50d
DOXized and applied Nick's radeon_vid patch. Nick, should I update
gabucino
parents:
2883
diff
changeset
|
797 <br><b>Usage:</b><BR> |
4908
9b2b09d3ff8b
strike period over, commiting stuff. next commit will be rewrite. (?)
gabucino
parents:
4819
diff
changeset
|
798 <CODE>mplayer -vo vesa:vidix <your options> filename</CODE> |
2956
f6b51da0a50d
DOXized and applied Nick's radeon_vid patch. Nick, should I update
gabucino
parents:
2883
diff
changeset
|
799 </P> |
f6b51da0a50d
DOXized and applied Nick's radeon_vid patch. Nick, should I update
gabucino
parents:
2883
diff
changeset
|
800 |
3267 | 801 <P>More examples (for hardware deinterlacing, etc) can be found |
802 <A HREF="../drivers/radeon/README">here</A>.</P> | |
803 | |
2958 | 804 <P><B>NOTE</B>: don't use any framebuffers when you plan to use this driver ! Use |
805 it only from textmode console.</P> | |
806 | |
3224 | 807 <P> |
2956
f6b51da0a50d
DOXized and applied Nick's radeon_vid patch. Nick, should I update
gabucino
parents:
2883
diff
changeset
|
808 <b>Conclusion:</b> I know there are lot of lacks and bugs. So if you are able |
f6b51da0a50d
DOXized and applied Nick's radeon_vid patch. Nick, should I update
gabucino
parents:
2883
diff
changeset
|
809 to improve something then simply send me your patches. |
f6b51da0a50d
DOXized and applied Nick's radeon_vid patch. Nick, should I update
gabucino
parents:
2883
diff
changeset
|
810 </P> |
f6b51da0a50d
DOXized and applied Nick's radeon_vid patch. Nick, should I update
gabucino
parents:
2883
diff
changeset
|
811 |
4339 | 812 |
4199 | 813 <P><B><A NAME=2.3.1.15>2.3.1.15. VIDIX</A></B></P> |
814 | |
815 <P><B><I>WHAT IS VIDIX</I></B></P> | |
816 | |
817 <P>VIDIX is the abbreviation for <b>VID</b>eo <b>I</b>nterface for | |
818 *ni<b>X</b>.<BR> | |
819 VIDIX was designed and introduced as an interface for fast user-space drivers | |
820 providing <b>DGA</b> everywhere where it's possible (<b>unlike X11</b>). I | |
821 hope that these drivers will be as portable as X11 (<b>not only on | |
822 *nix</b>).<BR> | |
823 What is it: | |
824 <LI>It's a portable successor of mga_vid technology, but it's located in | |
825 user-space.</LI> | |
826 <LI>Unlike X11 it provides DGA everywhere it's possible</LI> | |
827 <LI>Unlike v4l it provides interface for video playback</LI> | |
828 <LI>Unlike linux's drivers it uses mathematics library</LI> | |
829 </P> | |
830 | |
831 <P>I can tell you in bold capital letters :<BR> | |
832 <b>VIDIX PROVIDES DIRECT GRAPHICS ACCESS TO BES YUV MEMORY.</b> | |
833 </P> | |
834 | |
835 <P><i>Well (it's in my todo) - implement DGA to MPEG2 decoder.</i></P> | |
836 | |
837 <P>This interface was designed as an attempt to fit existing video acceleration | |
838 interfaces (known as mga_vid, mga_yuv, radeon_vid) into a fixed scheme. It | |
839 provides highlevel interface to chips which are known as BES (BackEnd | |
840 scalers) or OV (Video Overlays). It doesn't provide lowlevel interface to | |
841 things which are known as graphics servers. (I don't want to compete with X11 | |
842 team in graphics mode switching). I.e. main goal of this interface is to | |
843 provide maximal speed of video playback but not putting video signal on | |
844 screen of your TV or on tape of your VCR. Although these things are also very | |
845 significant - it's perfectly other task. (However I guess that it would be | |
846 possible to implement something like mini-X (don't mix it with Minix ;) in | |
847 the future, if some number of volunteers will be found. | |
848 </P> | |
849 | |
850 <P><B><I>USAGE</I></B></P> | |
851 | |
852 <P> | |
853 <LI>You can use standalone video output driver: <CODE>-vo xvidix</CODE><BR> | |
854 This driver was developed as X11's front end to VIDIX technology. It | |
855 requires XServer and can work only under XServer.</LI> | |
856 <LI>You can use VIDIX subdevice which was applied to several video output | |
857 drivers, such as:<BR> | |
858 <CODE>-vo vesa:vidix</CODE> and <CODE>-vo fbdev:vidix</CODE></LI> | |
859 Indeed it doesn't matter which video output driver is used with <b>VIDIX</b>. | |
860 </P> | |
861 | |
862 <P><B><I>REQUIREMENTS</I></B></P> | |
863 | |
864 <P> | |
865 <LI>video card should be in graphics mode (I write <b>should</b> simply | |
866 because I tested it in text mode - it works but has awful output ;) Use | |
867 AAlib for that).<BR> | |
868 <I>Note: Everyone can try this trick by commenting out mode switching in | |
869 vo_vesa driver.</I></LI> | |
870 <LI><B>MPlayer</B>'s video output driver should know active video mode and be | |
871 able to tell to VIDIX subdevice some video characteristics of server.</LI> | |
872 I hope that probably every video output driver of <B>MPlayer</B> will | |
873 recognize <CODE>:vidix</CODE> subdevice. | |
874 </P> | |
875 | |
876 <P><B><I>USAGE METHODS</I></B></P> | |
877 | |
4223 | 878 <P>When VIDIX is used as <b>subdevice</b> (<CODE>-vo vesa:vidix</CODE>) then |
4199 | 879 video mode configuration is performed by video output device |
880 (<b>vo_server</b> in short). Therefore you can pass into command line of | |
881 <B>MPlayer</B> the same keys as for vo_server. In addition it understands | |
882 <CODE>-double</CODE> key as globally visible parameter. (I recommend using | |
883 this key with VIDIX at least for ATI's card).<BR> | |
884 As for <CODE>-vo xvidix</CODE> : currently it recognizes the following | |
4356 | 885 options: <CODE>-fs -zoom -x -y -double</CODE>.<BR> |
4199 | 886 </P> |
887 | |
888 <P>Also you can specify VIDIX's driver directly as third subargument in command | |
889 line :<BR> | |
890 <BR> | |
891 <code>mplayer -vo xvidix:mga_vid.so -fs -zoom -double | |
892 file.avi</code><BR> | |
893 or<BR> | |
894 <code>mplayer -vo vesa:vidix:radeon_vid.so -fs -zoom -double -bpp | |
895 32 file.avi</code><BR> | |
896 <BR> | |
897 But it's dangerous, and you shouldn't do that. In this case given driver will | |
898 be forced and result is unpredictable (it may <b>freeze</b> your | |
4339 | 899 computer). You should do that ONLY if you are absolutely sure it will work, |
900 and <B>MPlayer</B> doesn't do it automatically. Please tell about it to the | |
901 developers. The Right Way is to use VIDIX without arguments to enable driver | |
4199 | 902 autodetection. |
903 </P> | |
904 | |
905 <P> | |
906 VIDIX is very new technology and it's extremely possible that on your system | |
907 (OS=abc CPU=xyz) it won't work. In this case only solution for you it's port | |
908 it (mainly libdha). But there is hope that it will work on those systems | |
909 where X11 does. | |
910 </P> | |
911 | |
912 <P>And the last <b>WARNING</b>: (un)fortunately you <b>MUST</b> have | |
913 <b>ROOT</b> privileges to use VIDIX due to direct hardware access. At least | |
914 set the <b>suid</b> bit on the <B>MPlayer</B> excecutable. | |
915 </P> | |
916 | |
4496 | 917 <P><B><I>VIDEO EQUALIZER</I></B></P> |
918 | |
919 <P> | |
4506 | 920 This is a video equalizer implemented especially for Vidix. You can use |
921 it either with <B>1-8</B> keys as described in the manpage, or | |
922 by command line arguments. <B>MPlayer</B> recognizes the | |
4496 | 923 following options : |
924 </P> | |
925 | |
926 <P> | |
927 <CODE>-brightness</CODE> - adjust <B>BRIGHTNESS</B> of video | |
928 output. It's not equal to brightness adjusting on monitor panel or on TV. It | |
929 changes intensity of RGB components of video signal from black to white | |
930 screen.<BR> | |
931 <CODE>-contrast</CODE> - adjust <B>CONTRAST</B> of video output. | |
932 Works in similar manner as brightness.<BR> | |
933 <CODE>-saturation</CODE> - adjust <B>SATURATION</B> of video | |
934 output. You can get grayscale output with this option.<BR> | |
935 <CODE>-hue</CODE> - adjust <B>HUE</B> of video signal. You can | |
936 get colored negative of image with this option.<BR> | |
937 <CODE>-red_intensity</CODE> - adjust intensity of <B>RED</B> | |
938 component of video signal.<BR> | |
939 <CODE>-green_intensity</CODE> - adjust intensity of <B>GREEN</B> | |
940 component of video signal.<BR> | |
941 <CODE>-blue_intensity</CODE> - adjust intensity of <B>BLUE</B> | |
942 component of video signal. | |
943 </P> | |
944 <P> | |
945 Each parameter can accept values from <B>-1000</B> to <B>+1000</B>.<BR> | |
946 Default value for each parameter is <B>0</B>. | |
947 </P> | |
948 <P> | |
949 <B>Note:</B> Not every driver provides support for each of those parameters. | |
950 Currently only <B>radeon_vid.so</B> provides full support for video eqalizing. | |
951 Other drivers only partly support these options. | |
952 </P> | |
953 <P><B>Examples:</B><BR> | |
954 <CODE>mplayer -vo vesa:vidix -brightness -300 -contrast 200 | |
955 filename.avi</CODE><BR> | |
956 or<BR> | |
957 <CODE>mplayer -vo xvidix -red_intensity -50 -saturation 400 -hue 300 | |
958 filename.vob</CODE> | |
959 </P> | |
960 | |
2956
f6b51da0a50d
DOXized and applied Nick's radeon_vid patch. Nick, should I update
gabucino
parents:
2883
diff
changeset
|
961 |
4339 | 962 <P><B><A NAME=2.3.1.16>2.3.1.16. Zr</A></B></P> |
963 | |
964 <P>This is a display-driver (<CODE>-vo zr</CODE>) for a number of MJPEG | |
4360 | 965 capture/playback cards (tested for DC10+ and Buz, and it should work for the |
4339 | 966 LML33, the DC10). The driver works by encoding the frame to jpeg and then |
967 sending it to the card. For the jpeg encoding <B>libavcodec</B> is | |
968 used, and required.</P> | |
969 | |
970 <P>This driver talks to the kernel driver available at | |
971 <A HREF="http://mjpeg.sourceforge.net">http://mjpeg.sourceforge.net</A>, so | |
972 you must get it working first. Then recompile <B>MPlayer</B> with | |
973 <CODE>--enable-zr</CODE>.</P> | |
974 | |
975 <P>Some remarks: | |
976 <UL> | |
4360 | 977 <LI>don't start or stop XawTV on the playback device during playback, |
978 it will crash your computer. It is, however, fine to <B>FIRST</B> start | |
979 XawTV, <B>THEN</B> start <B>MPlayer</B>, wait for <B>MPlayer</B> to finish | |
980 and <B>THEN</B> stop XawTV.</LI> | |
4339 | 981 <LI>this driver adds <CODE>-zr*</CODE> commandline options. The explanation |
982 of these options can be viewed with <CODE>-zrhelp</CODE>. It is possible to | |
983 crop the input frame (cut borders to make it fit or to enhance performace) | |
984 and to do other things.</LI> | |
4360 | 985 <LI>the driver takes data in YV12 and YUY2 format, this means that some |
986 codecs won't work. Some old VfW (Video for Windows) codecs, for example, | |
987 are incompatible with this driver. The errormessage that you will see is: | |
988 <CODE>Sorry, selected video_out device is incompatible with this codec. | |
989 </CODE></LI> | |
990 <LI>OSD is currently not supported, so you won't see | |
991 subtitles.</LI> | |
4339 | 992 </UL> |
993 </P> | |
994 | |
995 | |
4496 | 996 |
2745 | 997 <P><B><A NAME=2.3.1.A>2.3.1.A. TV-out support</A></B></P> |
1612 | 998 |
2745 | 999 <P><B><A NAME=2.3.1.A.1>2.3.1.A.1. Matrox cards</A></B></P> |
1612 | 1000 |
2486 | 1001 <P>Under Linux you have 2 methods to get TV out working :</P> |
2309 | 1002 |
1003 <P> | |
2486 | 1004 <UL> |
1005 <LI><B>XFree86</B>: using the driver and the HAL module, available from | |
1006 <A HREF="http://www.matrox.com">Matrox's site</A>. This will give you X on | |
1007 the TV.<BR> <B>This method doesn't give you accelerated playback</B> as | |
1008 under Windoze! The second head has only YUV framebuffer, the <I>BES</I> | |
1009 (Back End Scaler, the YUV scaler on G200/G400/G450/G550 cards) doesn't work | |
1010 on it! The windows driver somehow workarounds this, probably by using the | |
1011 3D engine to zoom, and the YUV framebuffer to display the zoomed | |
2848
33c32f3d9f1f
many small updates, fixes (some/more to be completed soon)
gabucino
parents:
2747
diff
changeset
|
1012 image. If you really want to use X, use the <CODE>-vo x11 -fs -zoom</CODE> |
2486 | 1013 options, but it will be <B>SLOW</B>, and has <B>Macrovision</B> copyprotection |
4177 | 1014 enabled (you can "workaround" Macrovision using |
1015 <A HREF="http://avifile.sourceforge.net/mgamacro.pl">this</A> perl | |
1016 script.</LI> | |
2486 | 1017 <LI><B>Framebuffer</B>: using the <B>matroxfb modules</B> in the 2.4 kernels. |
1018 2.2 kernels don't have the TVout feature in them, thus unusable for this. | |
3030 | 1019 You have to enable ALL matroxfb-specific feature during compilation (except |
1020 MultiHead), and compile them into <B>modules</B>! | |
2486 | 1021 <UL> |
1022 <LI> | |
1023 Enter <CODE>TVout/matroxset</CODE> and type <CODE>make</CODE>. Install | |
1024 <CODE>matroxset</CODE> into somewhere in your PATH.</LI> | |
1025 <LI> | |
1026 If you don't have <CODE>fbset</CODE> installed, enter | |
1027 <CODE>TVout/fbset</CODE> and type <CODE>make</CODE>. Install | |
1028 <CODE>fbset</CODE> into somewhere in your PATH.</LI> | |
1029 <LI> | |
1030 Then enter into the <CODE>TVout/</CODE> directory in the <B>MPlayer</B> | |
1031 source, and execute <CODE>./modules</CODE> as root. Your text-mode console | |
1032 will enter into framebuffer mode (no way back!).</LI> | |
1033 <LI>Next, run the <CODE>./matroxtv</CODE> script. This will present you | |
1034 to a very simple menu. Press <B>2</B> and <B>ENTER</B>. Now you should | |
1035 have the same picture on your monitor, and TV. The <B>3.</B> option | |
1036 will turn on independent display, but then you <B>can't use X</B>! If | |
3030 | 1037 the TV (PAL !) picture has some weird stripes on it, the script wasn't able to |
2486 | 1038 set the resolution correctly (to 640x512 by default). Use other menu |
1039 items randomly and it'll be OK :)</LI> | |
1040 </UL> | |
1041 | |
1042 <P> | |
1043 Yoh. Next task is to make the cursor on tty1 (or whatever) to disappear, | |
1044 and turn off screen blanking. Execute the following commands:</P> | |
1045 | |
1046 <P> | |
4701 | 1047 <CODE>echo -e '\033[?25l'</CODE> or <CODE>setterm -cursor off<BR> |
2486 | 1048 setterm -blank 0</CODE> |
1049 </P> | |
1050 | |
1051 <P> | |
1052 You possibly want to put the above into a script, and also clear | |
1053 the screen.. To turn the cursor back :<BR><CODE>echo -e '\033[?25h'</CODE> | |
4701 | 1054 or <CODE>setterm -cursor on</CODE> |
2486 | 1055 </P> |
1056 | |
1057 <P>Yeah kewl. Start movie playing with <CODE>mplayer -vo mga -fs -screenw 640 | |
1058 -screenh 512 <filename></CODE><BR> | |
1059 (if you use X, now change to matroxfb with for example CTRL-ALT-F1 !)<BR> | |
1060 Change 640x512 if you set the resolution to other..<BR> | |
1061 <B>Enjoy the ultra-fast ultra-featured Matrox TV output (better than Xv) !</B> | |
1062 </P> | |
1063 </LI> | |
1064 </LI> | |
1065 </UL> | |
2309 | 1066 </P> |
1067 | |
1068 | |
2745 | 1069 <P><B><A NAME=2.3.1.A.2>2.3.1.A.2. ATI cards</A></B></P> |
2206 | 1070 |
1071 <P> | |
1072 <b>A few word about ATI's TV-out:</b><BR> | |
1073 Currently ATI doesn't want to support any of its TV-out chips under Linux. | |
1074 Below is official answer from ATI Inc.: | |
1075 | |
1076 <P> | |
1077 <code> | |
1078 <i> | |
1079 <br>> Hello! | |
1080 <br>> | |
1081 <br>> On your pages you wrote that you support linux developers. | |
1082 <br>> Currently I participate with mplayer project (www.mplayerhq.hu) | |
1083 <br>> I'm interesting with enabling TV-out on Radeon VE chips during | |
1084 <br>> movie playback. I would be glad to add this feature to radeonfb driver | |
1085 <br>> (which can be found in CVS tree of mplayer project at main/drivers/radeon). | |
1086 <br>> Do I have a chance to get any official technical documenation? | |
1087 </i> | |
1088 <br>We will not provide TV out related documents due to macrovision concerns. | |
1089 <br>Also mpeg2 decoding is something that we MAY consider in the future but not | |
1090 <br>at this current time. This is again due to proprietary and 3rd party | |
1091 <br>information. | |
1092 </code> | |
1093 </P> | |
1094 | |
1095 <P>Pity isn't?</P> | |
1096 | |
1097 <P> | |
1098 <code> | |
1099 <B>Q:What is Macrovision?</B><BR> | |
1100 A:It's copy protection mechanism.</code> | |
1101 </P> | |
1102 | |
1103 <P>It means that if they open any TV-out related information then | |
1104 hackers will be able to disable copy protection on their chips. Therefore | |
1105 we have no chance to get working TV-out on ATI.</P> | |
1106 | |
1107 <P>What's status of ATI's tv-out chips under Linux: | |
4199 | 1108 <LI><b>ATI Mach64</b> has <i>ImpacTV</i> which is supported by <A HREF="http://gatos.sf.net">gatos</A>. |
1109 <LI><b>ASIC Radeon VIVO</b> has <i>Rage Theatre</i> which is supported by <A HREF="http://gatos.sf.net">gatos</A>. | |
3027 | 1110 <LI><b>Radeon VE</b> and <b>Rage PRO LT</b> have <i>ImpacTV2+</i> which is not supported under Linux. |
1111 But with <B>MPlayer</B> you get <B>full hardware acceleration</B> and <B>TV out</B> | |
1112 for Radeons ! | |
1113 Check <a href=#2.3.1.12>VESA driver</a> and <A HREF=#2.3.1.14>Radeon | |
1114 acceleration</A> sections.</P> | |
2206 | 1115 |
1116 <P> | |
2448
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
1117 Fortunately, owners of fast enough CPUs (Duron, Celeron2 and better) <b>can watch |
2745 | 1118 movies on their TV</b> through <a href=#2.3.1.12>VESA drivers</a>. |
2448
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
1119 </P> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
1120 |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
1121 <P> |
2486 | 1122 I should say good words to ATI Inc. too:<br> |
1123 <b>they produce top quality BIOSes.</b> | |
2206 | 1124 </P> |
1125 | |
2448
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
1126 <P> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
1127 <b>VESA drivers</b> don't use any hardware acceleration but it simulates |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
1128 <b>DGA</b> through 64K window, which is configured through 32-bit mode |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
1129 functions of BIOS. ATI cards have enough <b>fast video memory</b> (DIMM or DDR |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
1130 chips with 64 - 128-bit access) so it's not bottleneck for them. There are no |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
1131 limitations on which video mode can be displayed on your TV (like on other |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
1132 cards) so you can use <b>any video mode</b> on your <b>TV</b> (from |
2471 | 1133 <b>320x200</b> up to <b>1024x768</b>).<br> |
2747 | 1134 From other side (it's known at least for <b>Radeons</b>) there is <b>DGA</b> |
1135 mode which is detected automatically and in this case you'll get comparable | |
1136 with <b>-vo dga</b> and <b>-vo fbdev</b> drivers speed.<br> | |
2486 | 1137 Only thing you need to do - <b>have TV connector plugged in before booting your |
2471 | 1138 PC</b> since video BIOS initializes itself only once during POST procedure. |
2448
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
1139 </P> |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
1140 |
1e56c3381d55
'vesa' vo driver added. By Nick Kurshev. (spellchecked, fixed, mplayerdoxized)
gabucino
parents:
2408
diff
changeset
|
1141 <P> |
2745 | 1142 For detail see <a href="video.html#2.3.1.12">VESA</a> sections of this |
2471 | 1143 documentation. |
2206 | 1144 </P> |
1145 | |
2472
487f5bbb38ae
link to tomi ollila's voodoo3 tvout text. if he has interest to integrate
gabucino
parents:
2471
diff
changeset
|
1146 |
3027 | 1147 <P><B><A NAME=2.3.1.A.3>2.3.1.A.3. Voodoo 3</A></B></P> |
2472
487f5bbb38ae
link to tomi ollila's voodoo3 tvout text. if he has interest to integrate
gabucino
parents:
2471
diff
changeset
|
1148 |
487f5bbb38ae
link to tomi ollila's voodoo3 tvout text. if he has interest to integrate
gabucino
parents:
2471
diff
changeset
|
1149 <P> |
487f5bbb38ae
link to tomi ollila's voodoo3 tvout text. if he has interest to integrate
gabucino
parents:
2471
diff
changeset
|
1150 Check <A HREF="http://www.iki.fi/too/tvout-voodoo3-3000-xfree">this URL</A>. |
487f5bbb38ae
link to tomi ollila's voodoo3 tvout text. if he has interest to integrate
gabucino
parents:
2471
diff
changeset
|
1151 </P> |
487f5bbb38ae
link to tomi ollila's voodoo3 tvout text. if he has interest to integrate
gabucino
parents:
2471
diff
changeset
|
1152 |
1612 | 1153 </BODY> |
1154 </HTML> |