aboutsummaryrefslogtreecommitdiffhomepage
path: root/DOCS/documentation.html
blob: 8281e5fa3ef542e9faaa99d443fa4770f68f398f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
<HTML>
<BODY BGCOLOR=WHITE>

<FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>

<P><CENTER><B>MPlayer - Movie Player for LINUX (C) 2000-2001 Arpad Gereoffy (A'rpi/ESP-team)</B><BR>
<BR><A HREF="http://www.mplayerhq.hu">http://www.mplayerhq.hu</A><BR><BR>
[ English ]</A>
<A HREF="Hungarian/documentation.html">[ Hungarian ]</A>
<A HREF="German/documentation.html">[ German ]</A>
<A HREF="French/documentation.html">[ French ]</A>
<A HREF="Polish/documentation.html">[ Polish ]</A>
</CENTER></P>

<P><HR></P>

<P>Table of Contents</P>

<P><HR></P>

<P>
<UL>
  <LI><A HREF="#1">1. Introduction</A></LI>
  <UL>
    <LI><A HREF="#1.1">1.1 Overview</A></LI>
    <LI><A HREF="#1.2">1.2 History</A></LI>
    <LI><A HREF="#1.3">1.3 Installation</A></LI>
    <LI><A HREF="#1.4">1.4 What about the GUI?</A></LI>
    <LI><A HREF="#1.5">1.5 Subtitles and OSD</A></LI>
  </UL>
  <LI><A HREF="#2">2. Features</A></LI>
  <UL>
    <LI><A HREF="formats.html">2.1 Supported formats</A></LI>
    <UL>
      <LI><A HREF="formats.html#2.1.1">2.1.1 Video</A></LI>
      <UL>
        <LI><A HREF="formats.html#2.1.1.1">2.1.1.1 MPG, VOB, DAT files</A></LI>
        <LI><A HREF="formats.html#2.1.1.2">2.1.1.2 AVI files</A></LI>
        <LI><A HREF="formats.html#2.1.1.3">2.1.1.3 ASF/WMV files</A></LI>
        <LI><A HREF="formats.html#2.1.1.4">2.1.1.4 QT/MOV files</A></LI>
        <LI><A HREF="formats.html#2.1.1.5">2.1.1.5 VIV files</A></LI>
      </UL>
      <LI><A HREF="formats.html#2.1.2">2.1.2 Audio</A></LI>
    </UL>
    <LI><A HREF="codecs.html#2.2">2.2 Supported codecs</A></LI>
    <UL>
      <LI><A HREF="codecs.html#2.2.1">2.2.1 Video</A></LI>
      <UL>
        <LI><A HREF="codecs.html#2.2.1.1">2.2.1.1 DivX4</A></LI>
        <LI><A HREF="codecs.html#2.2.1.2">2.2.1.2 ffmpeg's DivX/libavcodec</A></LI>
        <LI><A HREF="codecs.html#2.2.1.3">2.2.1.3 XAnim codecs</A></LI>
        <LI><A HREF="codecs.html#2.2.1.4">2.2.1.4 VIVO video</A></LI>
        <LI><A HREF="codecs.html#2.2.1.5">2.2.1.5 MPEG1/2 video</A></LI>
        <LI><A HREF="codecs.html#2.2.1.6">2.2.1.6 MS Video1</A></LI>
        <LI><A HREF="codecs.html#2.2.1.7">2.2.1.7 Cinepak CVID</A></LI>
      </UL>
      <LI><A HREF="codecs.html#2.2.2">2.2.2 Audio</A></LI>
      <UL>
	<LI><A HREF="codecs.html#2.2.2.1">2.2.2.1 Software AC3 decoding</A></LI>
	<LI><A HREF="codecs.html#2.2.2.2">2.2.2.2 Hardware AC3 decoding</A></LI>
	<LI><A HREF="codecs.html#2.2.2.3">2.2.2.3 libmad support</A></LI>
	<LI><A HREF="codecs.html#2.2.2.4">2.2.2.4 VIVO audio</A></LI>
      </UL>
      <LI><A HREF="codecs.html#2.2.3">2.2.3 Win32 codec importing howto</A></LI>
      <UL>
	<LI><A HREF="codecs.html#2.2.3.1">2.2.3.1 VFW codecs</A></LI>
	<LI><A HREF="codecs.html#2.2.3.2">2.2.3.2 DirectShow codecs</A></LI>
      </UL>
    </UL>
    <LI><A HREF="video.html">2.3 Output devices</A></LI>
    <UL>
      <LI><A HREF="video.html#2.3.1">2.3.1 Video</A></LI>
      <UL>
	<LI><A HREF="video.html#2.3.1.1">2.3.1.1 Setting up MTRR</A></LI>
	<LI><A HREF="video.html#2.3.1.2">2.3.1.2 Xv</A></LI>
	<UL>
	  <LI><A HREF="video.html#2.3.1.2.1">2.3.1.2.1 3dfx</A></LI>
	  <LI><A HREF="video.html#2.3.1.2.2">2.3.1.2.2 S3</A></LI>
	  <LI><A HREF="video.html#2.3.1.2.3">2.3.1.2.3 nVidia</A></LI>
	  <LI><A HREF="video.html#2.3.1.2.4">2.3.1.2.4 ATI</A></LI>
	  <LI><A HREF="video.html#2.3.1.2.5">2.3.1.2.5 NeoMagic</A></LI>
	</UL>
	<LI><A HREF="video.html#2.3.1.3">2.3.1.3 DGA</A></LI>
	<UL>
	  <LI><A HREF="video.html#2.3.1.3.1">2.3.1.3.1 Summary</A></LI>
	  <LI><A HREF="video.html#2.3.1.3.2">2.3.1.3.2 What is DGA</A></LI>
	  <LI><A HREF="video.html#2.3.1.3.3">2.3.1.3.3 Installing DGA support for MPlayer</A></LI>
	  <LI><A HREF="video.html#2.3.1.3.4">2.3.1.3.4 Resolution switching</A></LI>
	  <LI><A HREF="video.html#2.3.1.3.5">2.3.1.3.5 DGA & MPlayer</A></LI>
	  <LI><A HREF="video.html#2.3.1.3.6">2.3.1.3.6 Features of the DGA driver</A></LI>
	  <LI><A HREF="video.html#2.3.1.3.7">2.3.1.3.7 Speed issues</A></LI>
	  <LI><A HREF="video.html#2.3.1.3.8">2.3.1.3.8 Known bugs</A></LI>
	  <LI><A HREF="video.html#2.3.1.3.9">2.3.1.3.9 Future work</A></LI>
	  <LI><A HREF="video.html#2.3.1.3.A">2.3.1.3.A Some modelines</A></LI>
	  <LI><A HREF="video.html#2.3.1.3.B">2.3.1.3.B Bug Reports</A></LI>
	</UL>
	<LI><A HREF="video.html#2.3.1.4">2.3.1.4 SDL</A></LI>
	<LI><A HREF="video.html#2.3.1.5">2.3.1.5 SVGAlib</A></LI>
	<LI><A HREF="video.html#2.3.1.6">2.3.1.6 Framebuffer output (FBdev)</A></LI>
	<LI><A HREF="video.html#2.3.1.7">2.3.1.7 Matrox framebuffer (mga_vid)</A></LI>
	<LI><A HREF="video.html#2.3.1.8">2.3.1.8 SiS 6326 framebuffer (sis_vid)</A></LI>
	<LI><A HREF="video.html#2.3.1.9">2.3.1.9 3dfx YUV support (tdfxfb)</A></LI>
	<LI><A HREF="video.html#2.3.1.10">2.3.1.10 OpenGL output</A></LI>
	<LI><A HREF="video.html#2.3.1.11">2.3.1.11 AAlib - text mode displaying</A></LI>
	<LI><A HREF="video.html#2.3.1.12">2.3.1.12 VESA - output to VESA BIOS</A></LI>
	<LI><A HREF="video.html#2.3.1.13">2.3.1.13 X11</A></LI>
	<LI><A HREF="video.html#2.3.1.14">2.3.1.14 Rage128 / Radeon video overlay</A></LI>
	<LI><A HREF="video.html#2.3.1.A">2.3.1.A TVout</A></LI>
	<UL>
	  <LI><A HREF="video.html#2.3.1.A.1">2.3.1.A.1 Matrox</A></LI>
	  <LI><A HREF="video.html#2.3.1.A.2">2.3.1.A.2 ATI</A></LI>
	  <LI><A HREF="video.html#2.3.1.A.3">2.3.1.A.3 Voodoo 3/Banshee</A></LI>
	</UL>
      </UL>
      <LI><A HREF="sound.html#2.3.2">2.3.2 Audio</A></LI>
      <UL>
	<LI><A HREF="sound.html#2.3.2.1">2.3.2.1 Soundcard experiences, recommendations</A></LI>
	<LI><A HREF="sound.html#2.3.2.2">2.3.2.2 Audio plugins</A></LI>
	  <UL>
	    <LI><A HREF="sound.html#2.3.2.2.1">2.3.2.2.1 Up/Downsampling</A></LI>
	  </UL>
      </UL>
    </UL>
    <LI><A HREF="encoding.html#2.4">2.4 MEncoder - An Encoder based on MPlayer</A></LI>
      <UL>
        <LI><A HREF="encoding.html#2.4.1">2.4.1 Overview</A></LI>
        <LI><A HREF="encoding.html#2.4.2">2.4.2 Compiling</A></LI>
        <LI><A HREF="encoding.html#2.4.3">2.4.3 Features</A></LI>
          <UL>
            <LI><A HREF="encoding.html#2.4.3">2.4.3 Summary</A></LI>
            <LI><A HREF="encoding.html#2.4.3.1">2.4.3.1 Encoding 2-pass DivX4</A></LI>
            <LI><A HREF="encoding.html#2.4.3.2">2.4.3.2 Rescaling movies</A></LI>
            <LI><A HREF="encoding.html#2.4.3.3">2.4.3.3 Streamcopy</A></LI>
            <LI><A HREF="encoding.html#2.4.3.4">2.4.3.4 Fixing AVIs with broken index</A></LI>
          </UL>
        <LI><A HREF="encoding.html#2.4.4">2.4.4 Syntax</A></LI>
        <LI><A HREF="encoding.html#2.4.5">2.4.5 Available options</A></LI>
        <LI><A HREF="encoding.html#2.4.6">2.4.6 Examples</A></LI>
      </UL>
    <LI><A HREF=#2.5>2.5 TV input</A></LI>
  </UL>
  <LI><A HREF="#3">3. Usage</A></LI>
    <UL>
      <LI><A HREF="#3.1">3.1 Control from keyboard</A></LI>
      <LI><A HREF="#3.2">3.2 Control from LIRC (Linux Infrared Remote Control)</A></LI>
      <LI><A HREF="#3.3">3.3 Streaming from network or pipes</A></LI>
    </UL>
  <LI><A HREF="cd-dvd.html#4">4. CD/DVD section</A></LI>
    <UL>
      <LI><A HREF="cd-dvd.html#4.1">4.1 CD drives</A></LI>
      <LI><A HREF="cd-dvd.html#4.2">4.2 DVD playback</A></LI>
      <LI><A HREF="cd-dvd.html#4.3">4.3 DVD playback FAQ</A></LI>
    </UL>
  <LI><A HREF="faq.html">5. FAQ section</A></LI>
    <UL>
      <LI><A HREF="faq.html#5.1">5.1 Compilation</A></LI>
      <LI><A HREF="faq.html#5.2">5.2 General questions</A></LI>
      <LI><A HREF="faq.html#5.3">5.3 File playing problems</A></LI>
      <LI><A HREF="faq.html#5.4">5.4 Video/audio driver problems</A></LI>
      <LI><A HREF="faq.html#5.5">5.5 Feature requests</A></LI>
      <LI><A HREF="faq.html#5.6">5.6 Encoding</A></LI>
    </UL>
  <LI><A HREF="#6">6. Misc OS'es</A></LI>
    <UL>
      <LI><A HREF="#6.1">6.1 Debian packaging</A></LI>
      <LI><A HREF="#6.2">6.2 FreeBSD</A></LI>
      <LI><A HREF="#6.3">6.3 Solaris</A></LI>
      <LI><A HREF="#6.4">6.4 StrongARM</A></LI>
      <LI><A HREF="#6.5">6.5 SGI/Irix</A></LI>
      <LI><A HREF="#6.6">6.6 QNX</A></LI>
    </UL>
  <LI><A HREF="#A">A. Authors</A></LI>
  <UL>
    <LI><A HREF="#A2">A/2. Maintainers</A></LI>
  </UL>
  <LI><A HREF="#B">B. Mailing lists</A></LI>
  <LI><A HREF="bugreports.html">C. How to report bugs</A></LI>
  <UL>
    <LI><A HREF="tech/patches.txt">C/2. How to send patches</A></LI>
  </UL>
  <LI><A HREF="#D">D. Known bugs</A></LI>
  <LI><A HREF="skin-en.html">X. How To Be A Famous SkinMaker in 5 mins!</A></LI>
</UL>
</P>

<P><HR></P>

<P><B><A NAME=1>1. Introduction</A></B></P>

<P><B><A NAME=1.1>1.1. Overview</A></B></P>

<P><B>MPlayer</B> is a movie player for LINUX (runs on many other Unices, and
<B>non-x86</B> CPUs, see <A HREF="#6">section 6</A>). It plays most MPEG, VOB,
AVI, VIVO, ASF/WMV, QT/MOV, FLI files, supported by many native, XAnim, and
Win32 DLL codecs. You can watch <B>VideoCD</B>, <B>SVCD</B>, <B>DVD</B>,
<B>3ivx</B>, and even <B>DivX</B> movies too (and you don't need the avifile
library at all!). The another big feature of mplayer is the wide range of
supported output drivers. It works with X11, Xv, DGA, OpenGL, SVGAlib, fbdev,
AAlib, DirectFB, but you can use GGI and SDL (and this way all their drivers)
and some lowlevel card-specific drivers (for Matrox, 3Dfx and Radeon) too! Most
of them supports software or hardware scaling, so you can enjoy movies in
fullscreen. <B>MPlayer</B> supports displaying through some hardware MPEG
decoder boards, such as the <B><A HREF="DVB">DVB</A></B> and <B> <A
HREF="DXR3">DXR3/Hollywood+</A></B> ! And what about the nice big antialiased
shaded subtitles (<B>9 supported types!!!</B>) with european/ISO 8859-1,2
(hungarian, english, czech, etc), cyrillic, korean fonts, and OSD?</P>

<P><B>MPlayer</B> is basically GPL, but contains some non-GPL code which is not
allowed to be distributed in binary form, and also contains the OpenDivX
library which has special license. We are still developing towards GPL.</P>

<P>Distributing <B>MPlayer</B> in the form of binaries and/or binary packages
is currently impossible, speaking about both <B>technical</B> and <B>law</B>
areas. Detailed information can be found in the second part of <A HREF="users_against_developers.html">this file</A>,
and it is recommended to read it.</P>

<P>I didn't write any codecs, just some players. I spent
a lot of time finding the best way to parse bad damaged input files
(both MPEG and AVI) and to do perfect A-V sync with seeking ability.
My player is rock solid playing damaged MPEG files (useful for some VCDs),
and it plays bad AVI files which are unplayable with the famous
windows media player. Even AVI files without index chunk are playable, and
you can rebuild their indexes with the -idx option, thus enabling seeking!
As you see, stability and quality are the most important things for me,
but the speed is also amazing.</P>

<P><B><A NAME=1.2>1.2. History</A></B></P>

<P>This began a year ago...
I've tried lots of players under linux (mtv,xmps,dvdview,livid/oms,VideoLAN,
xine,xanim,avifile,xmmp) but they all have some problem. Mostly with special
files or with audio/video sync. Most of them is unable to play both MPEG1,
MPEG2 and AVI (DivX) files. Many players have image quality or speed problems
too. So I've decided to write/modify one...</P>

<P><UL>
<LI><B>mpg12play v0.1-v0.3:</B><BR>
    The first try, hacked together in a half hour!
    I've used libmpeg3 from www.heroinewarrior.com up to the version 0.3,
    but there were image quality and speed problems with it.
<LI><B>mpg12play v0.5-v0.87:</B><BR>
    Mpeg codec replaced with DVDview by Dirk Farin, it was a great stuff,
    but it was slow and was written in C++ (I hate C++!!!)
<LI><B>mpg12play v0.9-v0.95pre5:</B><BR>
    Mpeg codec was libmpeg2 (mpeg2dec) by Aaron Holtzman & Michel Lespinasse.
    It's great, optimized very fast C code with perfect image quality and
    100% MPEG standard conformance.
<LI><B>MPlayer v0.3-v0.9:</B><BR>
    It was a pack of two programs: mpg12playv0.95pre6 and my new simple AVI
    player 'avip' based on avifile's Win32 DLL loader.
<LI><B>MPlayer v0.10:</B><BR>
    The MPEG and AVI player in a single binary!
<LI><B>MPlayer v0.11:</B><BR>
    Some new developers joined and from 0.11 the mplayer project is a team-work!
    Added .ASF file support, and OpenDivX (see www.projectmayo.com) en/decoding.
<LI><B>MPlayer v0.17 "The IdegCounter"</B><BR>
    The release version of the 0.11pre after 4 months of heavy development!
    Try it, and be amazed! Thousands of new features added... and of course
    old code was improved too, bugs removed etc.
<LI><B>MPlayer 0.18 "The BugCounter"</B><BR>
    2 months since 0.17 and here's a new release.. Completed ASF support,
    more subtitle formats, introduced libao (similar to libvo but to audio),
    even more stable than ever, and so on. It's a MUST !
<LI><B>MPlayer 0.50 "The Faszom(C)ounter"</B><BR>
    Hmm. Release again. Tons of new features, beta GUI version, bugs fixed,
    new vo and ao drivers, ported to many systems, including opensource DivX
    codecs and much more. Try it!

</UL></P>

<P><B><A NAME=1.3>1.3. Installation</A></B></P>

<P>In this chapter I'll try to guide you through the compiling and
configuring process of <B>MPlayer</B>. It's not easy, but it won't neccessarily
be hard. If you experience a different behaviour than what I explain, please
search through this documentation and you'll find your answers. If you
see links, please follow them and read carefully what they contain. It
will take some time, but it DOES worth it.</P>

<P>You need a fairly recent system. On Linux, 2.4.x kernels are required, but
with 2.4.10 and above you'll ocassionally experience problems (licensing,
kernel bugs, etc) so they are discouraged.</P>

<P><B><I>SOFTWARE REQUIREMENTS</I></B><BR>

<UL>
  <LI><B>binutils</B> - suggested version is <B>2.11.x</B> . This program is
    responsible for generating MMX/3DNow!/etc instructions, thus very important.</LI>
  <LI><B>gcc</B> - suggested version is from <B>2.95.2</B> to <B>2.95.4</B>.
    <B>NEVER</B> use 2.96 or 3.x.x !!! They generate faulty code. If you decide
    to change gcc from 2.96, then don't decide in favor of 3.0 juts because
    it's newer! In some ways it's even worse than 2.96. So downgrade to
    2.95.x (downgrade libstdc++ too!) or don't up/downgrade at all (but in
    this case, be prepared for runtime problems).
    Detailed information about gcc 2.96's bugs can be found
    <A HREF="users_against_developers.html"><B><I>here</I></B></A> and in the
    <A HREF="faq.html">FAQ</A> !</I></B></LI>
  <LI><B>XFree86</B> - suggested version is <B>always the newest (4.1.0)</B>.
    Normally everyone wants this, as starting from XFree86 4.0.2, it contains
    the <A HREF="video.html#2.3.1.2">XVideo</A> extension (somewhere referred
    as <B>Xv</B>) which is needed to enable the hardware YUV acceleration (fast
    image display) on cards that support it. <A HREF="video.html#2.3.1.2">More
    information available.</A><BR>
    Make sure its <B>development package</B> is installed too otherwise
    it won't work.<BR>
    For some videocards you don't need XFree86. See list below.</LI>
  <LI><B>make</B> - suggested version is <B>always the newest</B> (at least 3.79.x). This
    usually isn't important.</LI>
  <LI><B>SDL</B> - it's not mandatory, but can help in some cases. Always
    use the newest (beginning from 1.2.x).</LI>
</UL>

<P><B><I>CODECS</I></B></P>

<UL>
<LI><B>libavcodec</B> : If you want to use this DivX3/DivX4/etc codec, check the
<A HREF="codecs.html#2.2.1.2">2.2.1.2</A> section before compiling. Features :<BR>
<UL>
  <LI>you can <B>gain <I>DivX/DivX4</I> playing on non-x86 machines</B></LI>
  <LI>this codec has the <B>greatest decoding speed</B> for DivX and DivX4
movies (even faster than the original DivX4 library itself) ! Recommended!</LI>
</UL>
</LI>

<LI><B>Win32 codecs</B> : If you plan to use <B>MPlayer</B> on x86
architecture, you will possibly need them. Download and unzip w32codecs.zip to
/usr/lib/win32 . Note: the avifile project has similar codecs package, but it
differs from ours, so if you want to use all supported codecs, then use our
package! However, you can use our codecs package with avifile. Features :<BR>
<UL>
  <LI>you need this if you want to play or encode for example movies recorded
  with digital cameras (example: DV)</LI>
  <LI>needed if you want to play <B>WMV movies</B> or older ASF's</LI>
</UL>
</LI>

<LI><B>DivX4</B> : information about this codec is available in the
<A HREF="codecs.html#2.2.1.1">2.2.1.1</A> section. If you don't want to use
<B>MEncoder</B>, you possibly don't want this codec as <B>libavcodec</B> (see
above) is much faster than this.<BR>
Features :<UL>
  <LI>can play old <B>DivX3</B> movies much faster than the Win32 DLL but
    slower than <B>libavcodec</B> !</LI>
  <LI>it's closed-source, and only an x86 version is available.</LI>
  <LI><I>You also need this codec for <B>MEncoder</B>, see below !</I></LI>
</UL>
</LI>

<LI>If you want to play <B>3ivx</B> movies, check the <A HREF=codecs.html#2.2.1.3>
XAnim codecs section</A>.</LI>

<LI>The <A HREF=codecs.html#2.2.1.3>XAnim codecs</A> are the best (full screen,
hardware YUV zoom) for decoding old videos like Indeo 3/4/5, Cinepak, and some
others. And they are multiplatform, so this is the only way to play Indeo on
non-x86 platforms (well, apart from using XAnim:).</LI>

</UL>

<P><B><I>VIDEOCARDS</I></B></P>

<P>There are generally two kind of videocards. One kind (the newer cards) has
<B>hardware YUV acceleration</B> support, the other cards don't.</P>

<P>
<B><I>YUV cards</I></B></P>

<P>
They can display and scale (zoom) the picture to any size that fits in
their memory, with <B>small CPU usage</B> (zooming doesn't increase it!), thus
you get a nice and very fast fullscreen playing.</P>

<P>
<UL>
<LI><B>Matrox G200/G400/G450/G550 cards</B> : please see the <A HREF="video.html#2.3.1.7">mga_vid</A>
section in order to gain big speedup. It is important to do these steps
<I>before</I> compiling <B>MPlayer</B>, otherwise no Matrox-specific support will be
built. Also check out the <A HREF="video.html#2.3.1.A.1">Matrox TV-out</A>
section.</LI>

<LI><B>3Dfx Voodoo3/Banshee cards</B> : please see the <A
HREF="video.html#2.3.1.9">2.3.1.9</A> section in order to gain big speedup. It
is important to do these steps <I>before</I> compiling <B>MPlayer</B>,
otherwise no 3Dfx support will be built. Also see the <A HREF="video.html#2.3.1.A.3">3dfx
TV out section</A>.</LI>

<LI><B>ATI cards</B> : see the <A HREF="video.html#2.3.1.A.2">ATI cards
section</A> of the TV-out documentation, to know what features of your card is
supported under Linux/MPlayer. If you have a <B>Radeon</B> or <B>Rage128</B> card, we have a
<B>XXX_vid</B> driver for you, with TV out ! Check <A
HREF="video.html#2.3.1.14">this</A> section !</LI>

<LI><B>S3 cards</B> : the Savage chips have hardware acceleration. Use as
new XFree86 version as possible, older drivers are buggy. Savage chips
have problems with YV12 display, see <A HREF="video.html#2.3.1.2.2">S3 Xv
section</A> for details. Older, non-Savage cards have no, or slow hardware
support.</LI>

<LI><B>Nvidia cards</B> : very bad choice for video playing. Nvidia's
cards are manufactured on the far-east, and have very cheap and bad
quality chips. Moreover, <U>the built-in Nvidia driver in XFree86 doesn't
contain support for hardware YUV acceleration!</U> You have to download
Nvidia's closed-source drivers from nvidia.com . See details in <A
HREF="video.html#2.3.1.2.3">Nvidia Xv driver</A> section.</LI>

<LI><B>other cards</B> : none of the above?
  <UL>
    <LI>Try if the XFree86 driver (and your card) supports hardware
      acceleration. See the <A HREF="video.html#2.3.1.2">Xv section</A> for
      details.</LI>
    <LI>If it doesn't, your card is one of the :</LI>
  </UL>
</LI>

</UL>
</P>

<P>
<B><I>Non-YUV cards</I></B></P>

<P>
Fullscreen playing can be achieved by either zooming
(<B>by software</B>, this is slooow), or changing to a smaller videomode, for
example to 352x288. If you don't have YUV accel, this latter method is
the recommended one. Throughout <B>MPlayer</B>, <U>this behaviour can
be switched on by using the <CODE>-vm</CODE> option</U> and with
the following drivers :
<UL>
  <LI><B>using</B> XFree86 : see details in
    <A HREF="video.html#2.3.1.3">DGA driver</A> and
    <A HREF="video.html#2.3.1.13">X11 driver</A> sections. DGA is
    recommended!</LI>
  <LI><B>not using</B> XFree86 : try the drivers in the following order :
    <A HREF="video.html#2.3.1.12">vesa</A>,
    <A HREF="video.html#2.3.1.6">fbdev</A>,
    <A HREF="video.html#2.3.1.5">svgalib</A>,
    <A HREF="video.html#2.3.1.11">aalib</A>.</LI>
</UL>
</P>

<P><B><I>SOUNDCARDS</I></B></P>

<UL>

<LI><B>Soundblaster Live!</B> : with this card you can use 4 or 6 (<B>5.1</B>)
channels AC3 decoding instead of 2. Read the
<A HREF="codecs.html#2.2.2.1">Software AC3 decoding</A> section.</LI>

<LI><B>other cards'</B> features aren't supported by <B>MPlayer</B>.
  <U>It's very recommended to read the <A HREF="sound.html#2.3.2">soundcards
  section</A> !</U>
</UL>

<P><B><I>FEATURES</I></B></P>

<UL>
<LI>For DVD support, you'll have to compile libdvdcss and libdvdread, and
in this order!
See <A HREF="cd-dvd.html#4.2">section 4.2</A> for more information.</LI>

<LI>Decide if you need GUI. If you do, see the <A HREF=#1.4>1.4 section</A>
before compiling.</LI>

<LI>If you want to install <B>MEncoder</B> (our great all-purpose encoder),
see the <A HREF="encoding.html#2.4">MEncoder section</A> .</LI>


<LI>If you have a V4L compatible <B>TV tuner</B> card, and wish to watch/grab and
encode movies with <B>MPlayer</B>, read the <A HREF=#2.5>TV input</A> section.</LI>

<LI>There are two timer codes in <B>MPlayer</B>. To use the old
method, you don't have to do anything. It uses <CODE>usleep()</CODE> to tune
A/V sync, with +/- 10ms accuracy. However sometimes the sync has to be tuned
even finer. The new timer code uses PC's RTC (Real Time Clock) for this task,
because it has precise 1ms timers. This requires root, or a <I>setuid root</I>
<B>MPlayer</B> binary (or a little kernel hacking, but that's unadvised). You
can see the new timer's efficiency in the status line. Note: <B>NEVER install
setuid MPlayer binary on a multiuser system!</B> It's a clear way for everyone
to gain root.</LI>

</UL>

<P>Then build <B>MPlayer</B>:</P>

<PRE>    ./configure
    make
    make install</PRE>

<P><B><I>ALWAYS browse the output of ./configure</I></B>, and the
<CODE>configure.log</CODE> file, they contain info about what will be built,
and what won't. You may also want to view config.h and config.mak files.</P>

<P>Though not mandatory, the fonts should be installed in order to gain
OSD, and subtitle functionality. Download mp-arial-iso-8859-*.zip and/or optional
(if exists) language updates. It's VERY RECOMMENDED to check
<A HREF=#1.5>section 1.5</A> for details.</P>

<PRE>    mkdir ~/.mplayer/font
    cd ~/.mplayer/font
    unzip mp-arial-iso-8859-1.zip</PRE>

<P>Only one thing remains: copy the <B>codecs.conf</B> file from the <CODE>etc</CODE>
directory (relative to the <B>MPlayer</B> tree) to <CODE>$HOME/.mplayer/codecs.conf</CODE> .
You should also check the manpage and <CODE>example.conf</CODE> for available options, and insert them
into your config file, <CODE>$HOME/.mplayer/config</CODE> .</P>


<P><B><A NAME=1.4>1.4. What about the GUI?</A></B></P>

<P>The GUI needs GTK (it isn't GTK, but the panels are). The skins are stored
in PNG format, so gtk, libpng (and their devel stuff) has to be installed.
You can build it by specifying <CODE>--enable-gui</CODE> during ./configure .
Then, to turn on GUI mode, you either
<UL>
  <LI>use the <CODE>-gui</CODE> option</LI>
  <LI>specify <CODE>gui=yes</CODE> in your config file</LI>
  <LI><CODE>ln -s /usr/local/bin/mplayer /usr/local/bin/gmplayer</CODE> ,
  and call <CODE>gmplayer</CODE> instead.
</UL>
</P>

<P>As <B>MPlayer</B> doesn't have a skin included, you have to download them
if you want to use the GUI. See the <A HREF="http://www.mplayerhq.hu/homepage/dload.html">download page</A>.
They should be extracted to the usual system-wide directory (<CODE>/usr/local/share/mplayer/Skin</CODE>),
or to <CODE>$HOME/.mplayer/Skin</CODE> . <B>MPlayer</B> by default looks in
these directories for a <I>default</I> named directory, but you can use the
<I>-skin newskin</I> option, or the <I>skin=newskin</I> config file
directive to use the skin in <CODE>*/Skin/newskin</CODE> directory.</P>

<P><B><A NAME=1.5>1.5. Subtitles and OSD</A></B></P>

<P>Yes, <B>MPlayer</B> also supports many kinds of subtitles. Currently
8 kinds of subtitle can be used by the subreader code. To see what are
these subtitle formats, see subreader.c, line ~30.</P>

<P>About DVD subtitles, read the <A HREF="cd-dvd.html#4.2">DVD section</A>.</P>

<P><B>MPlayer</B> introduces a new subtitle format called <B><I>MPsub</I></B>.
It was designed by me (Gabucino). Basically its main feature is being
<I>dynamically</I> time-based (although it has frame-based mode too). Example (from
<A HREF="http://www.mplayerhq.hu/DOCS/tech/mpsub.sub">DOCS/tech/mpsub.sub</A>) :
</P>

<P><CODE><I>
# first number  : wait this much after previous subtitle disappeared<BR>
# second number : display the current subtitle for this many seconds<BR>
<BR>
15 3<BR>
A long, long time ago...<BR>
<BR>
0 3<BR>
in a galaxy far away...<BR>
<BR>
0 3<BR>
Naboo was under an attack.<BR>
</I></CODE></P>

<P>So you see, the main goal was to <B>make subtitle editing/timing/joining/cutting easy</B>. And,
if you - say - get an SSA subtitle but it's badly timed/delayed to your
version of the movie, you simply do a <I>mplayer dummy.avi -sub source.ssa
-dumpmpsub</I> . A <CODE>dump.mpsub</CODE> file will be created in the
current directory, which will contain the source subtitle's text, but in
<B>MPsub</B> format. Then you can freely add/substract seconds to/from the
subtitle.</P>

<P>Subtitles are displayed with a technique called <B>'OSD', On Screen Display</B>.
OSD is used to display current time, volume bar, seek bar etc.</P>

<P><B>INSTALLING OSD and SUB</B></P>

<P>You need an <B>MPlayer</B> font package to be able to use OSD/SUB feature.
There are many ways to get it:
<UL>

<LI>download ready-to-use font packages from <B>MPlayer</B> site.
Note: currently available fonts are limited for iso 8859-1/2 support,
and there are a few special versions for korean, russian etc codepages.
Font should have appropriate font.desc file which maps unicode font
positions to the actual code page of the subtitles text. Other solution
is to have subtitles encoded in utf8 encoding and use -utf8 option
or just name the subtitles file <video_name>.utf and have it in the same
dir as the video file. Recoding from different codepages to utf8 could be
done by using konwert (debian) or iconv (RedHat) programs.<BR>
Some URLs:
<UL>
  <LI><A HREF="ftp://ftp.mplayerhq.hu/MPlayer/releases/">ftp://ftp.mplayerhq.hu/MPlayer/releases/</A> - ISO fonts
  <LI><A HREF="ftp://ftp.mplayerhq.hu/MPlayer/contrib/fonts/">ftp://ftp.mplayerhq.hu/MPlayer/contrib/fonts/</A> - various fonts by users
  <LI><A HREF="http://realtime.ssu.ac.kr/~lethean/mplayer">http://realtime.ssu.ac.kr/~lethean/mplayer</A> - korean fonts & RAW plugin
</UL>

<LI>use the font generator tool at TOOLS/subfont-c
It's a complete tool to convert from TTF/Type1/etc font to mplayer font pkg.
(read TOOLS/subfont-c/README for details)

<LI>use the font generator GIMP plugin at TOOLS/subfont-GIMP
(note: you must have HSI RAW plugin too, see URL below)
</UL>
</P>

<P>After that, UNZIP the files to ~/.mplayer/font/ .
Now you have to see a timer at the upper left corner of the movie
(switch it off with 'o') .</P>

<P>OSD has 3 states: (switch with 'o')<BR>
<UL>
  <LI>timer + volume bar + seek bar + subtitles (default)
  <LI>volume bar + seek bar + subtitles
  <LI>subtitles only
</UL>

<P>You can change default behaviour by setting <CODE>osdlevel=</CODE> variable in config file.</P>


<P><B><A NAME=2>2. Features</A></B></P>


<P><A NAME=2.1>2.1. <A HREF="formats.html">Supported formats</A></P>


<P><A NAME=2.2>2.2. <A HREF="codecs.html">Supported codecs</A></P>


<P><A NAME=2.3>2.3. <A HREF="video.html">Video</A> & <A HREF="sound.html">Audio</A> output devices</P>


<P><A NAME=2.4>2.4. <A HREF="encoding.html">MEncoder - An All-Purpose Encoder</P>


<P><A NAME=2.5><B>2.5. TV input</B></P>

<P>This section is about how to enable <B>watching/grabbing from V4L compatible
TV tuner</B>.</P>

<P><B><I>Compilation</I></B></P>

<P>
<UL>
  <LI>first, you have to recompile. <CODE>./configure</CODE> will autodetect kernel headers
    of v4l stuff, and the existence of /dev/video* entries. If they exist,
    TV support will be built (see configure's output!).</LI>
  <LI>make sure your tuner works with another TV softwares in Linux, for example
    xawtv.</LI>
</UL>
</P>

<P><B>Hint</B>: if <B>MPlayer</B> prints <CODE>ioctl: can't sync</CODE> or something
  like this, your tuner can't capture the requested image size. Try using
  <CODE>width=640:height=480</CODE> options.</P>

<P><B>Hint #2</B> : are the colors messed up? Then your tuner can't display
  in YV12 colorspace. Try YUY2, UYVY or if none of these works: RGB32 (this one
  with <CODE>-vo sdl</CODE>).
  You can specify these with the <CODE>outfmt=YV12</CODE> option see below.</P>

<P><B><I>Available options</I></B><BR>
<TABLE BORDER=0>
<TR>
  <TD>&nbsp;&nbsp;</TD>
  <TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2><I>on</I></TD>
  <TD>&nbsp;&nbsp;</TD>
  <TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>use TV
  input</TD>
</TR>
<TR>
  <TD>&nbsp;&nbsp;</TD>
  <TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2><I>driver</I></TD>
  <TD></TD>
  <TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>
    <B>dummy</B> - NULL TV input :) Used for testing only, generates dummy
    input.<BR>
    <B>v4l</B> - captures images from standard V4L interface (default
    <CODE>/dev/video0</CODE>)</TD>
</TR>
<TR>
  <TD>&nbsp;&nbsp;</TD>
  <TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2><I>device</I></TD>
  <TD>&nbsp;&nbsp;</TD>
  <TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>specify other
  device than the default <CODE>/dev/video0</CODE></TD>
</TR>
<TR>
  <TD>&nbsp;&nbsp;</TD>
  <TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2><I>input</I></TD>
  <TD>&nbsp;&nbsp;</TD>
  <TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>give from which
  input of the TV tuner you which to grab from (e.g. <B>television</B>,
  <B>s-video</B>, <B>composite</B>, ...)<BR>
    Prints the available ones during init.</TD>
</TR>
<TR>
  <TD>&nbsp;&nbsp;</TD>
  <TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2><I>freq</I></TD>
  <TD>&nbsp;&nbsp;</TD>
  <TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>specify the
  frequency to set the tuner (e.g. <B>511.250</B>)</TD>
</TR>
<TR>
  <TD>&nbsp;&nbsp;</TD>
  <TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2><I>outfmt</I></TD>
  <TD>&nbsp;&nbsp;</TD>
  <TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>in which output
  format to display images (<B>rgb32</B>, <B>rgb24</B>, <B>yv12</B>,
  <B>uyvy</B>)<BR>
    The following option must have the same setting !</TD>
</TR>
<TR>
  <TD>&nbsp;&nbsp;</TD>
  <TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2><I>width</I></TD>
  <TD>&nbsp;&nbsp;</TD>
  <TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>
  the width of the output window, in pixels</TD>
</TR>
<TR>
  <TD>&nbsp;&nbsp;</TD>
  <TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2><I>height</I></TD>
  <TD>&nbsp;&nbsp;</TD>
  <TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>
  the height of the output window, in pixels</TD>
</TR>
<TR>
  <TD>&nbsp;&nbsp;</TD>
  <TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2><I>norm</I></TD>
  <TD>&nbsp;&nbsp;</TD>
  <TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>
  available: PAL, SECAM, NTSC</TD>
</TR>
<TR>
  <TD>&nbsp;&nbsp;</TD>
  <TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2><I>channel</I></TD>
  <TD>&nbsp;&nbsp;</TD>
  <TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>
  set the tuner to the given channel</TD>
</TR>
<TR>
  <TD>&nbsp;&nbsp;</TD>
  <TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2><I>chanlist</I></TD>
  <TD>&nbsp;&nbsp;</TD>
  <TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>
  available: <CODE>us-bcast, us-cable, europe-west, europe-east, etc</CODE></TD>
</TR>
</TABLE>
</P>

<P><B><I>Keyboard control</I></B></P>

<TABLE BORDER=0>
<TD>&nbsp;&nbsp;</TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>h  or  l</TD><TD>&nbsp;&nbsp;</TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>select previous/next channel</TD><TR>
<TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>n</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>change norm</TD><TR>
<TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>b</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>change channel list</TD><TR>
</TABLE>

<P><B><I>Examples</I></B></P>

<P>
Dummy output, to AAlib :)<BR>
<CODE>&nbsp;&nbsp;&nbsp;&nbsp;mplayer -tv on:driver=dummy:width=640:height=480 -vo aa</CODE><BR>
<BR>
Input from standard V4L<BR>
<CODE>&nbsp;&nbsp;&nbsp;&nbsp;mplayer -tv on:driver=v4l:width=800:height=600:device=/dev/video0:input=television:outfmt=yv12 -vo xv</CODE><BR>
</P>


<P><B><A NAME=3>3. Usage</A></B></P>

<P><TABLE BORDER=0>
<TD>&nbsp;&nbsp;</TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>file</TD><TD>&nbsp;&nbsp;</TD><TD><CODE><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>mplayer [options] [path/]filename</CODE></TD><TR>
<TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>VCD</TD><TD></TD><TD><CODE><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>mplayer [options] -vcd trackno /dev/cdrom</CODE></TD><TR>
<TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>DVD</TD><TD></TD><TD><CODE><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>mplayer [options] -dvd titleno [/dev/dvd]</CODE></TD><TR>
<TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>net</TD><TD></TD><TD><CODE><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>mplayer [options] http://site.com/file.[mpg|avi]</CODE></TD><TR>
</TABLE></P>

<P><PRE>  mplayer -vo x11 /mnt/Films/Contact/contact2.mpg
  mplayer -vcd 2 /dev/cdrom
  mplayer -afm 3 /mnt/DVDtrailers/alien4.vob
  mplayer -dvd 1 /dev/dvd
  mplayer -abs 65536 -delay -0.4 -nobps ~/movies/test.avi</PRE></P>


<P><B><A NAME=3.1>3.1. Control from keyboard</A></B></P>

<P><TABLE BORDER=0>
<TR><TD>&nbsp;&nbsp;</TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>&lt;-  or  -&gt;</TD><TD>&nbsp;&nbsp;</TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>seek backward/forward  10 seconds</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>up or down</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>seek backward/forward   1 minute</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>pgup/pgdown</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>seek backward/forward  10 minutes</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>&lt; or &gt;</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>seek backward/forward  in playlist</TD><TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>p or SPACE</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>pause movie (press any key)</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>q or ESC</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>stop playing and quit program</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>+ or -</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>adjust audio delay by +/- 0.1 second</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>/ or *</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>decrease/increase volume</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>o</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>toggle OSD: none / seek / seek+timer</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>m</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>toggle using master/pcm volume</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>z or x</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>adjust subtitle delay by +/- 0.1 second</TD></TR>

<TR><TD COLSPAN=4><P><I><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>(the following keys are valid only when using DirectShow DivX codec or DivX4 codec with -vc divx4)</I></P></TD></TR>

<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>1 or 2</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>adjust contrast</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>3 or 4</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>adjust brightness</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>5 or 6</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>adjust hue</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>7 or 8</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>adjust saturation</TD></TR>

<TR><TD COLSPAN=4><P><I><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>(the following keys are valid only with TV input support</I></P></TD></TR>

<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>h  or  l</TD><TD>&nbsp;&nbsp;</TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>select previous/next channel</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>n</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>change norm</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>b</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>change channel list</TD></TR>
</TABLE></P>

<P><B>GUI keyboard control</B></P>

<P><TABLE BORDER=0>
<TR><TD>&nbsp;&nbsp;</TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>, and .</TD><TD>&nbsp;&nbsp;</TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>previous / next file</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>gray - or +</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>decrease / increase volume</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>enter</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>start playing</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>space</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>pause</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>s</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>stop</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>a</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>about</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>l</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>load file</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>b</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>skin browser</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>e</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>toggle equalizer</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>p</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>toggle playlist</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>f</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>toggle fullscreen</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>m</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>toggle mute</TD>
</TABLE></P>

<P><B>TV input control</B></P>

<P><TABLE BORDER=0>
<TR><TD>&nbsp;&nbsp;</TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>h  or  l</TD><TD>&nbsp;&nbsp;</TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>select previous/next channel</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>n</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>change norm</TD></TR>
<TR><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>b</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>change channel list</TD></TR>

</TABLE></P>

<P><B><A NAME=3.2>3.2. Control from LIRC</A></B></P>

<P>Linux Infrared Remote Control - use an easy to build home-brewn IR-receiver,
an (almost) arbitrary remote control and control your linux box with it!
More about it at <A HREF="http://www.lirc.org">www.lirc.org</A>.</P>

<P>If you have installed the lirc-package, you can compile <B>MPlayer</B> with LIRC
support using  ./configure --enable-lirc</P>

<P>If everything went fine, <B>MPlayer</B> will print a message like
LIRC init was successful.
on startup. If an error occurs it will tell you. If it doesn't tell you
anything about LIRC there's no support compiled in. That's it :-)</P>

<P>The application name for <B>MPlayer</B> is - oh wonder - mplayer_lirc.
It understands the following commands:</P>

<P><TABLE BORDER=0>
<TD>&nbsp;&nbsp;</TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>PAUSE</TD><TD>&nbsp;&nbsp;</TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>pause playing. Any other keystroke will continue replay.</TD><TR>
<TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>QUIT</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>exit MPlayer</TD><TR>
<TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>RWND</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>10 secs back</TD><TR>
<TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>FRWND</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>60 secs back</TD><TR>
<TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>FWD</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>skip 10 secs</TD><TR>
<TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>FFWD</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>skip 60 secs</TD><TR>
<TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>INCVOL</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>increase volume one percent</TD><TR>
<TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>DECVOL</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>decrease volume one percent</TD><TR>
<TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>MASTER</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>use master mixer channel</TD><TR>
<TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>PCM</TD><TD></TD><TD><FONT face="Verdana, Arial, Helvetica, sans-serif" size=2>use pcm mixer channel</TD><TR>
</TABLE></P>

<P> Don't forget to enable the repeat flag for RWND/FWD in .lircrc. Here's an
excerpt from my .lircrc:</P>

<P><PRE>  begin
   remote = CU-SX070
   prog = mplayer_lirc
   button = Tape_Play
   repeat = 1
   config = FFWD
  end

  begin
   remote = CU-SX070
   prog = mplayer_lirc
   button = Tape_Stop
   config = QUIT
  end</PRE></P>

<P>If you don't like the standard location for the lirc-config file (~/.lircrc)
use the -lircconf &lt;filename&gt; switch to specify another file.</P>

<P><B><A NAME=3.3>3.3. Streaming from network or pipes</A></B></P>

<P><B>MPlayer</B> can play files from network, using the HTTP protocol.
Configuring it is simple, just recompile <B>MPlayer</B> with</P>

<P><CODE>&nbsp;&nbsp;&nbsp;&nbsp;./configure --enable-streaming</CODE></P>

<P>MPlayer <B>can NOT read ASF</B> files from network by the MMS protocol, only by plain HTTP.</P>

<P><B>MPlayer</B> can read from stdin (NOT named pipes). This can be for example
used to play from FTP:</P>

<P><CODE>&nbsp;&nbsp;&nbsp;&nbsp;wget ftp://micorsops.com/something.avi -O - | mplayer -</CODE></P>

<P><B><A NAME=4>4. <A HREF="faq.html">FAQ section</A></A></B></P>

<P><B><A NAME=5>5. <A HREF="cd-dvd.html">CD/DVD section</A></A></B></P>

<P><B><A NAME=6>6. Misc OS'es</A></B></P>

<P><B><A NAME=6.1>6.1. Debian packaging</A></B></P>

<P>To build the package, get the cvs version, or .tgz and uncompress it,
and cd into programs directory:</P>

<P><PRE>    cd main
    fakeroot debian/rules binary</PRE></P>

<P>(... mplayer detects hardware/software, builds itself and.. )
dpkg-deb: building package `mplayer' in `../mplayer_0.18-1_i386.deb'.</P>

<P>And now just become root, and:</P>

<P><PRE>    dpkg -i ../mplayer_0.18-1_i386.deb as root.</PRE></P>

<P>Here's how it looks like:</P>

<P><PRE>	eyck@incubus:/src/main$ sudo dpkg -i ../mplayer_0.18-1_i386.deb
	Password:
	(Reading database ... 26946 files and directories currently installed.)
	Preparing to replace mplayer 0.17a-1 (using ../mplayer_0.18-1_i386.deb)
	Unpacking replacement mplayer ...
	Setting up mplayer (0.18-1) ...</PRE></P>


<P><B><A NAME=6.2>6.2. FreeBSD</A></B></P>

<P>To build the package you will need GNU make (gmake, /usr/ports/devel/gmake),
native BSD make will not work.</P>

<P>To run <B>MPlayer</B> you will need to re-compile the kernel with
"options USER_LDT" (unless you are running -CURRENT, where this is default).
If you have a CPU with SSE also use "options CPU_ENABLE_SSE" to use it
(FreeBSD-STABLE required, or use kernel patches).</P>

<P>If <B>MPlayer</B> complains about "CD-ROM Device '/dev/cdrom' not found!" make a
symbolic link: <CODE>ln -s /dev/(your_cdrom_device) /dev/cdrom</CODE></P>

<P>There's no DVD support for FreeBSD yet.</P>

<P><B><A NAME=6.3>6.3. Solaris</A></B></P>

<P>MPlayer should work on Solaris 2.6 or newer.</P>

<P>AVI file playback works best on Solaris x86, because you have the
option to use the win32 codecs on the x86 platform, or can use MMX/MMX2/3DNow/etc
instructions for MP3/DivX/DVD/whatever. On Solaris SPARC,
you'll find quite a few AVI files with non working video and/or
audio playback, because the video/audio codecs using the Win32 DLLs
are not available. However, <B>DivX/OpenDivX</B> movies should work,
when using libavcodec.</P>

<P>On <B>UltraSPARC</B>s, <B>MPlayer</B> takes advantage of their <B>VIS</B>
extensions (equivalent to MMX), currently only in <I>libmpeg2</I>,
<I>libvo</I> and <I>libavcodec</I>, but not in mp3lib. You can watch a VOB file
on a 400Mhz CPU. You'll need <A
HREF="http://www.sun.com/sparc/vis/mediaLib.html">mLib</A> installed.</P>

<P>To build the package you will need GNU make (gmake, /opt/sfw/gmake), native
Solaris make will not work. Typical error you get when building with solaris'
make instead of GNU make:</P>

<P><PRE>   % /usr/ccs/bin/make
   make: Fatal error in reader: Makefile, line 25: Unexpected end of line seen</P></PRE>

<P>On Solaris SPARC, you need the GNU C/C++ Compiler; it does not matter
if GNU C/C++ compiler is configured with or without the GNU assembler.</P>

<P>On Solaris x86, you need the GNU assembler and the GNU C/C++
compiler, configured to use the GNU assembler!  The mplayer code on
the x86 platform makes heavy use of MMX, SSE and 3DNOW!
instructions that cannot be compiled using Sun's assembler
<CODE>/usr/ccs/bin/as</CODE>.</P>

<P>The configure script tries to find out, which assembler program is
used by your "gcc" command (in case the autodetection fails, use
the "--as=/whereever/you/have/installed/gnu-as" option to tell the
configure script where it can find GNU "as" on your system).</P>

<P>Error message from configure on a Solaris x86 system using GCC
without GNU assembler:</P>

<P><PRE>   % configure
   ...
   Checking assembler (/usr/ccs/bin/as) ... , failed
   Please upgrade(downgrade) binutils to 2.10.1...</PRE></P>

<P>(Solution: Install and use a gcc configured with "--with-as=gas")</P>

<P>Typical error you get when building with a GNU C compiler that does
not use GNU as:</P>

<P><PRE>   % gmake
   ...
   gcc -c -Iloader -Ilibvo -O4 -march=i686 -mcpu=i686 -pipe -ffast-math
	-fomit-frame-pointer  -I/usr/local/include   -o mplayer.o mplayer.c
   Assembler: mplayer.c
   "(stdin)", line 3567 : Illegal mnemonic
   "(stdin)", line 3567 : Syntax error
   ... more "Illegal mnemonic" and "Syntax error" errors ...</PRE></P>

<P>For DVD support you must have the patched libcss installed. Patch:
<A HREF="http://www.tools.de/solaris/mplayer/">http://www.tools.de/solaris/mplayer/</A>.</P>

<P>Due to two bugs in solaris 8 x86,  you cannot reliably play DVDs using a
capacity >4GB:</P>

<P><UL><LI>The sd(7D) driver on solaris 8 x86 driver has bug when accessing a
disk block >4GB on a device using a logical blocksize != DEV_BSIZE
(i.e. CDROM and DVD media).  Due to a 32bit int overflow, a disk
address modulo 4GB is accessed.
(<A HREF="http://groups.yahoo.com/group/solarisonintel/message/22516">http://groups.yahoo.com/group/solarisonintel/message/22516</A>)

<LI>The similar bug is present in the hsfs(7FS) filesystem code (aka
ISO9660), hsfs currently does not support partitions/disks >4GB,
all data is accessed modulo 4GB
(<A HREF="http://groups.yahoo.com/group/solarisonintel/message/22592">http://groups.yahoo.com/group/solarisonintel/message/22592</A>)
</UL></P>

<P>On Solaris with an UltraSPARC CPU, you can get some extra speed by
  using the CPU's VIS instructions for certain time consuming operations.
  VIS acceleration can be used in MPlayer by calling functions in Sun's
  <A HREF="http://www.sun.com/sparc/vis/mediaLib.html">mediaLib</A>.</P>

<P>VIS accelerated operations from mediaLib are used for mpeg2 video
  decoding and for color space conversion in the video output drivers.</P>


<P><B><A NAME=6.4>6.4. StrongARM</A></B></P>

<P><B>MPlayer</B> is reported to compile on StrongARM. Use the following command line:</P>

<P><PRE>  ./configure --target=arm-linux --disable-css --with-x11libdir=/usr/arm/lib
	      --with-x11incdir=/usr/arm/lib --disable-gcc-checking</PRE></P>


<P><B><A NAME=6.5>6.5. Silicon Graphics Indigo / IRIX</A></B></P>

<P>Reported working. You'll probably have to use the <I>sgi</I> ao driver.
Anyone has closer info?</P>


<P><B><A NAME=6.6>6.6. QNX</A></B></P>

<P>Works. Only has <CODE>-vo x11</CODE> output which is even much slower
than on Linux, since QNX has only X <I>emulation</I> which is VERY slow.
No closer info yet.</P>


<P><B><A NAME=A>Appendix A - Authors</A></B></P>

<P>NOTE: Do *NOT* send bugreports, help &amp; feature requests directly to the authors!</P>

<P>Read Appendix <A HREF="#C">C</A> and subscribe to mplayer-users mailing lists.</P>

<P ALIGN=center><B><U>The <B>MPlayer</B> project:</U></B></P>

<P><UL>

<LI><B><A HREF="mailto:arpi@thot.banki.hu">Árpád Gereöffy (A'rpi/ESP-team)</A></B>
<UL>
  <LI>player code (mpeg stream demultiplexer and avi/asf parser, A-V sync, seek...)</LI>
  <LI>mp3lib, based on mpglib sources  [MP3 audio decoder]</LI>
  <LI>getch2  [keyboard handler]</LI>
  <LI>some changes in libmpeg2 code (progressive frames, bitrate &amp; fps support)</LI>
  <LI>libvo improvements: adding OpenGL support, bugfix in mga driver...</LI>
  <LI>triple buffering &amp; YUY2 support (for DivX/MPEG4) into mga_vid driver</LI>
  <LI>scripts in the TVout directory (TVout on Matrox G400DH, read documentation)</LI>
  <LI>hacking DivX/Mpeg4 VfW codecs to get YUV output</LI>
  <LI>opendivx decoder speed optimizations (see opendivx/ChangeLog)</LI>
  <LI>OSD &amp; SUB display code</LI>
  <LI>ffmpeg/libavcodec integration</LI>
  <LI>DivX4Linux (ProjectMayo) support (see documentation)</LI>
  <LI>New DVD-Support using libdvdread</LI>
  <LI>DVB support</LI>
  <LI>MPEG PES output</LI>
  <LI>anything that isn't mentioned elsewhere</LI>
</UL></LI>

<LI><B><A HREF="mailto:pontscho@makacs.poliod.hu">Zoltán Ponekker (Pontscho/Fresh!)</A></B>
<UL>
  <LI>configure script and Makefiles for easy compile</LI>
  <LI>GUI system</LI>
  <LI>3DNow! support into mp3lib</LI>
  <LI>3DNow! support into fastmemcpy.h</LI>
  <LI>various X11 driver changes (keyboard handling, fullscreen, bpp detect, etc)</LI>
  <LI>libvo: adding xmga driver, and fullscreen support to xv</LI>
  <LI>audio mixer (volume) support</LI>
</UL></LI>

<LI><B><A HREF="mailto:lgb@lgb.hu">Gábor Lénárt (LGB)</A></B>
<UL>
  <LI>./configure script improvements</LI>
  <LI>Makefile improvements</LI>
  <LI>prelimenary DVD support</LI>
  <LI>various X11 cleanups and fixes</LI>
  <LI>HTMLization of documentation</LI>
</UL></LI>

<LI><B><A HREF="mailto:gabucino@mplayerhq.hu">Gábor Bérczi (Gabucino)</A></B>
<UL>
  <LI>documentation writer & maintainer</LI>
  <LI>hungarian translation of documentation, homepage, and help output</LI>
  <LI>second homepage design&amp;gfx</LI>
  <LI>homepage maintainer</LI>
  <LI>testing, codecs quality &amp; speed comparsions</LI>
  <LI>IRC channels operator (#MPlayer is user channel)</LI>
  <LI>experimental MINIX port :) (what's funny about it?)</LI>
  <LI>MPsub subtitle format design</LI>
</UL></LI>

<LI><B><A HREF="mailto:szabi@inf.elte.hu">Szabolcs Berecz (Szabi)</A></B>
<UL>
  <LI>codecs.conf file parser</LI>
  <LI>config file and command line parser</LI>
  <LI>mga_vid fixes, module option etc.</LI>
  <LI>fbdev support in libvo</LI>
  <LI>type #7 subtitle support</LI>
</UL></LI>

<LI><B><A HREF="mailto:lez@sch.bme.hu">László Megyer (Lez, Laaz)</A></B>
<UL>
  <LI>SUB reader</LI>
  <LI>screensaver+DPMS disable for libvo</LI>
</UL></LI>

<LI><B><A HREF="mailto:chass-@freemail.hu">Gyula László (Chass, Tégla)</A></B>
<UL>
  <LI>first fonts (mp_font1.zip)</LI>
  <LI>third (current) homepage design&gfx</LI>
</UL></LI>

<LI><B><A HREF="mailto:se7en@sch.bme.hu">Zoltán Márk Vicián (Se7en)</A></B>
<UL>
  <LI>SVGAlib support in libvo</LI>
</UL></LI>

<LI><B><A HREF="mailto:alex@naxine.org">Alex Beregszaszi (Al3x)</A></B>
<UL>
  <LI>ALSA output driver in libao2</LI>
  <LI>vo_ggi output driver in libvo (www.ggi-project.org)</LI>
  <LI>xanim codecs support (incomplete yet!)</LI>
  <LI>VIVO files support</LI>
  <LI>TV grabbing support</LI>
</UL></LI>

<LI><B><A HREF="mailto:asackerm@stud.informatik.uni-erlangen.de">Andreas Ackermann (Acki)</A></B>
<UL>
  <LI>LIRC support (see documentation)</LI>
  <LI>DGA support in libvo</LI>
</UL></LI>

<LI><B><A HREF="mailto:atmosfear@users.sourceforge.net">Felix Bünemann (Atmos)</A></B>
<UL>
  <LI>SDL driver maintainer</LI>
  <LI>Additional YUV formats fixes</LI>
  <LI>New font (mp_font2.zip)</LI>
  <LI>PNG file output support in libvo</LI>
  <LI>flipping support (for Indeo 3/4, etc)</LI>
  <LI>SDL audio driver in libao2</LI>
  <LI>RAW PCM/WAVE file writer for libao2</LI>
  <LI>OggVorbis audio support</LI>
  <LI>Various aspect code</LI>
  <LI>Win32 port</LI>
</UL></LI>

<LI><B><A HREF="mailto:telenieko@telenieko.com">TeLeNiEkO</A></B>
<UL>
  <LI>spanish translation of documentation</LI>
</UL></LI>

<LI><B><A HREF="mailto:mgraffam@idsi.net">Michael Graffam</A></B>
<UL>
  <LI>XF86VidMode support to vo_x11 and vo_dga</LI>
  <LI>Video mode switching code to vo_dga</LI>
</UL></LI>

<LI><B><A HREF="mailto:hoffmajs@gmx.de">Jens Hoffmann</A></B>
<UL>
  <LI>Additional YUV formats support</LI>
  <LI>found the big BITMAPINFOHEADER problem -> solved ASV2 pixelization</LI>
</UL></LI>

<LI><B><A HREF="mailto:nickols_k@mail.ru">Nick Kurshev</A></B>
<UL>
  <LI>memcpy optimizations for AMD K7 and Intel Pentium III  (fastmemcpy.h)</LI>
  <LI>CDROM tune info</LI>
  <LI>further 3DNow! optimizations into mp3lib and libac3 and ffmpeg</LI>
  <LI>russian translation of documentation</LI>
  <LI>radeonfb</LI>
  <LI>libvo driver: vo_vesa</LI>
</UL></LI>

<LI><B><A HREF="mailto:german@piraos.com">German Gomez Garcia</A></B>
<UL>
  <LI>SPDIF AC3 output for SBLive!</LI>
</UL></LI>

<LI><B><A HREF="mailto:eyck@incubus.ar.lublin.pl">Dariush Pietrzak (Eyck)</A></B>
<UL>
  <LI>debian packaging support (see debian/* and this documentation)</LI>
  <LI>support for vplayer subtitle format</LI>
  <LI>prelimenary support for .RT subtitle format</LI>
</UL></LI>

<LI><B><A HREF="mailto:marcus@idonex.se">Marcus Comstedt</A></B>
<UL>
  <LI>initial solaris8-x86 support</LI>
</UL></LI>

<LI><B><A HREF="mailto:jk@tools.de">Jürgen Keil and Marcus Comstedt</A></B>
<UL>
  <LI>patched <B>MPlayer</B> to work on Solaris 8 x86</LI>
  <LI>configure fixes</LI>
  <LI>various fixes (win32, configure, etc)</LI>
  <LI>SUN audio driver in libao2</LI>
  <LI>mediaLib support in libavcodec</LI>
</UL></LI>

<LI><B><A HREF="mailto:vkushnir@Alfacom.net">Vladimir Kushnir</A></B>
<UL>
  <LI>patched <B>MPlayer</B> to work on FreeBSD x86</LI>
</UL></LI>

<LI><B><A HREF="mailto:bertrand_baudet@yahoo.com">Bertrand BAUDET</A></B>
<UL>
  <LI>network streaming support</LI>
</UL></LI>

<LI><B><A HREF="mailto:zybi@fanthom.irc.pl">Artur Zaprzala</A></B>
<UL>
  <LI>Complete font generator prog + OSD font (TOOLS/subfont-c)</LI>
</UL></LI>

<LI><B><A HREF="mailto:lanzz@lanzz.org">lanzz@lanzz.org</A></B>
<UL>
  <LI>GIMP font generator plugin (TOOLS/subfont-gimp)</LI>
</UL></LI>

<LI><B><A HREF="mailto:atlka@pg.gda.pl">Adam Tla/lka</A></B>
<UL>
  <LI>osd/sub review, fixes, optimization, utf8 support</LI>
  <LI>various fixes</LI>
</UL></LI>

<LI><B><A HREF="mailto:folke@ashberg.de">Folke Ashberg</A></B>
<UL>
  <LI>native AAlib driver (-vo aa)</LI>
</UL></LI>

<LI><B><A HREF="mailto:ktoman@email.cz">Kamil Toman</A></B>
<UL>
  <LI>czech fonts</LI>
</UL></LI>

<LI><B><A HREF="mailto:iive@yahoo.com">Ivan Kalvatchev</A></B>
<UL>
  <LI>interlaced MPEG2 support</LI>
</UL></LI>

<LI><B><A HREF="mailto:p_l@gmx.fr">pl</A></B>
<UL>
  <LI>./configure fixes</LI>
</UL></LI>

<LI><B><A HREF="mailto:michaelni@gmx.at">Michael Niedermayer</A></B>
<UL>
  <LI>postprocessing support</LI>
  <LI>software scaling C/MMX/MMX2/3DNow support (swscale.c)</LI>
</UL></LI>

<LI><B><A HREF="mailto:sgoethel@jausoft.com">Sven Goethel</A></B>
<UL>
  <LI>libvo driver: vo_gl2</LI>
</UL></LI>

<LI><B><A HREF="mailto:joy@pingfm.org">joy_ping</A></B>
<UL>
  <LI>ao_alsa9 fixes</LI>
</UL></LI>

<LI><B><A HREF="mailto:eanholt@gladstone.uoregon.edu">Eric Anholt</A></B>
<UL>
  <LI>runtime CPU detection</LI>
</UL></LI>

<LI><B><A HREF="mailto:Jiri.Svoboda@seznam.cz">Jiri Svoboda</A></B>
<UL>
  <LI>AQT type subtitles support</LI>
  <LI>CRTC2 YUV support in mga_vid</LI>
  <LI>DirectFB video output driver</LI>
</UL></LI>

<LI><B><A HREF="mailto:oliver.schoenbrunner@jku.at">Oliver Schoenbrunner</A></B>
<UL>
  <LI>SGI audio driver</LI>
  <LI>MIPS support</LI>
</UL></LI>

<LI><B><A HREF="mailto:jeroen.dobbelaere@acunia.com">Jeroen Dobbelaere</A></B>
<UL>
  <LI><A HREF="http://mad.sourceforge.net">libmad</A> support</LI>
</UL></LI>

<LI><B><A HREF="mailto:dholm@telia.com">David Holm</A></B>
<UL>
  <LI>DXR3 support</LI>
</UL></LI>

<LI><B><A HREF="mailto:takis@lumumba.luc.ac.be">Panagiotis Issaris</A></B>
<UL>
  <LI>-playlist option</LI>
</UL></LI>

<LI><B><A HREF="mailto:melanson@pcisys.net">Mike Melanson</A></B>
<UL>
  <LI>MS Video1 codec open-source implementation</LI>
  <LI>FLI demuxer, decoder</LI>
</UL></LI>

<LI><B><A HREF="mailto:ranma@gmx.at">Tobias Diedrich</A></B>
<UL>
  <LI>NAS audio output driver</LI>
</UL></LI>

<LI><B><A HREF="mailto:foth@informatik.uni-hamburg.de">Kilian A. Foth</A></B>
<UL>
  <LI>-slave mode</LI>
</UL></LI>

<LI><B><A HREF="mailto:timf@mail.csse.monash.edu.au">Tim Ferguson</A></B>
<UL>
  <LI>Opensource Cinepak decoder</LI>
</UL></LI>

</UL></P>

<P>Main testers:</P>

<P><UL>
<LI>Tibor Balázs (Tibcu)
<LI>Péter Sasi (SaPe)
<LI>Christoph H. Lampert
<LI>Attila Kinali
<LI>Dirk Vornheder
<LI>Bohdan Horst (Nexus)
</UL></P>

<P ALIGN=center><B><U>The codecs, libs:</U></B></P>

<P><UL>
<LI>Aaron Holtzman:  &lt;aholtzma@engr.uvic.ca&gt;
<UL><LI>ac3dec (and libac3) author  [AC3 audio decoder]
</LI><LI>mga_vid driver  [Matrox G200/G400 YUV Back-end Scaler]
</LI><LI>mpeg2dec        [Fast MPEG1/MPEG2 video decoder, currently used in player]
</LI></UL>

</LI><LI>Michel Lespinasse:  &lt;walken@zoy.org&gt;
<UL><LI>did large libmpeg2 changes for better speed and mpeg conformance
</LI></UL>

</LI><LI>Eugene Kuznetsov:  &lt;divx@euro.ru&gt;
<UL><LI>avifile author  [AVI player library for linux, using Win32 VfW/ACM codecs]
</LI><LI>technical help about AVI and ASF formats, and how to get YUV using VfW...
</LI><LI>divx4linux techical support
</LI></UL>

</LI><LI>Zdenek Kabelac:  &lt;kabi@informatics.muni.cz&gt;
<UL><LI>current avifile maintainer(?)
</LI><LI>some technical help about the win32 stuff and timers
</LI></UL>

</LI><LI>Gerard Lantau: &lt;glantau@yahoo.fr&gt;
<UL><LI>ffmpeg/libavcodec author,maintainer (opensource mpeg, mjpeg, divx en/decoder)
</LI></UL>

</LI><LI>Project Mayo:  &lt;<A HREF="http://www.projectmayo.com">http://www.projectmayo.com</A>&gt;
<UL><LI>the OpenDivX codec authors
</LI></UL>

</LI><LI>Michael Hipp:
<UL><LI>mpglib author   [isn't used directly but some parts in mp3lib]
</LI></UL>

</LI><LI>Mark Podlipec:
<UL><LI>xa_gsm.c author  [MS-GSM audio codec]
                   [from a GSM library by Jutta Degener and Carsten Bormann]
</LI></UL>

</LI></UL></P>

<P>Their code is not used in current player version, but I've got some ideas or
other technical help from:</P>

<P><UL>
<LI>John F. McGowan   http://www.jmcgowan.com/
<UL><LI>AVI FAQ author/collector. [site with many useful docs on codecs and avi fmt]
</LI></UL>

</LI><LI>Dirk Farin:      &lt;farin@ti.uni-mannheim.de&gt;
<UL><LI>dvdview author  [MPEG1/MPEG2 video decoder, used in v0.5-v0.8]
</LI></UL>

</LI><LI>Adam Williams:   &lt;broadcast@earthling.net&gt;
<UL><LI>libmpeg3 (and xmovie) author  [MPEG1/MPEG2 video decoder, used in v0.1-v0.4]
</LI></UL>

</UL></P>

<P><B><A NAME=A2>Appendix A/2 - MPlayer code and documentation maintainers</A></B></P>

<P>Homepage
<UL>
  <LI><B>Design</B>: Chass
  <LI><B>Contents</B>: Gabucino
</UL></P>
<P>English documentation
<UL>
  <LI><B>tech-hun.txt</B>: A'rpi
  <LI><B>all the others</B>: Gabucino
  <LI><B>HTMLization</B>: LGB
</UL></P>
<P>Documentation translations
<UL>
  <LI><B>Hungarian</B>: Gabucino
  <LI><B>German</B>: <A HREF="mailto:johannes.feigl@mcse.at">Johannes Feigl</A>
  <LI><B>French</B>: <A HREF="mailto:smarteau@eso.org">Stephane Marteau</A> (outdated)
  <LI><B>Spanish</B>: TeLeNiEkO (outdated)
  <LI><B>Russian</B>: Nick Kurshev (outdated)
  <LI><B>Polish</B>: Dariush Pietrzak, then Justyna Biala (outdated)
</UL></P>
<P>Platforms/ports
<UL>
  <LI><B>DEBIAN packaging</B>: Dariush Pietrzak
  <LI><B>FreeBSD support</B>: Vladimir Kushnir
  <LI><B>Solaris 8 support</B>: Jürgen Keil
  <LI><B>MIPS support</B>: Oliver Schoenbrunner
</UL></P>
<P>MPlayer code:
<UL>
  <LI><B>fileformat detection, demuxers</B>: A'rpi
  <LI><B>DVD support</B>: (alpha version was: LGB) now: A'rpi
  <LI><B>network streaming</B>: Bertrand BAUDET
  <LI><B>A-V sync code</B>: A'rpi
  <LI><B>subtitles file parser/reader</B>: Lez (most of them)
  <LI><B>config files & commandline parser</B>: Szabi
  <LI><B>fastmemcpy</B>: Nick Kurshev
  <LI><B>LIRC support</B>: Acki
  <LI><B>SUB/OSD renderer</B>: Adam Tla/lka
</UL></P>
<P>libvo drivers:
<UL>
  <LI><B>vo_3dfx.c</B> - OBSOLETED, use xv or tdfxfb
  <LI><B>vo_tdfxfb.c</B> - <A HREF="mailto:zsteva@ptt.yu">Zeljko Stevanovic</A>
  <LI><B>vo_aa.c</B> - Folke Ashberg
  <LI><B>vo_dga.c</B> - Acki
  <LI><B>vo_fbdev.c</B> - Szabi
  <LI><B>vo_fsdga.c</B> - OBSOLETED, use dga
  <LI><B>vo_ggi.c</B> - al3x
  <LI><B>vo_gl.c</B> - A'rpi
  <LI><B>vo_gl2.c</B> - <A HREF="mailto:sgoethel@jausoft.com">Sven Goethel</A>
  <LI><B>vo_md5.c</B> - A'rpi
  <LI><B>vo_mga.c</B> - A'rpi
  <LI><B>vo_mpegpes.c</B> - A'rpi
  <LI><B>vo_null.c</B> - A'rpi
  <LI><B>vo_odivx.c</B> - A'rpi
  <LI><B>vo_pgm.c</B> - A'rpi
  <LI><B>vo_png.c</B> - Atmos
  <LI><B>vo_sdl.c</B> - Atmos
  <LI><B>vo_svga.c</B> - se7en
  <LI><B>vo_syncfb.c</B> - OBSOLETED, use mga
  <LI><B>vo_vesa.c</B> - Nick Kurshev
  <LI><B>vo_x11.c</B> - Pontscho
  <LI><B>vo_xmga.c</B> - Pontscho
  <LI><B>vo_xv.c</B> - Pontscho
</UL></P>
<P>libao2 drivers:
<UL>
  <LI><B>ao_alsa5.c</B>  - al3x
  <LI><B>ao_alsa9.c</B>  - al3x (fixed by <A HREF="mailto:joy@pingfm.org">joy_ping</A>)
  <LI><B>ao_dxr3.c</B>   - <A HREF="mailto:dholm@telia.com">David Holm</A>
  <LI><B>ao_null.c</B>   - A'rpi
  <LI><B>ao_oss.c</B>    - A'rpi
  <LI><B>ao_pcm.c</B>    - Atmos
  <LI><B>ao_sdl.c</B>    - Atmos
  <LI><B>ao_sgi.c</B>    - <A HREF="oliver.schoenbrunner@jku.at">Oliver Schoenbrunner</A>
  <LI><B>ao_sun.c</B>    - Jürgen Keil
</UL></P>
<P>TOOLS:
<UL>
  <LI><B>subfont-c</B> - Artur Zaprzala: <zybi@fanthom.irc.pl></B>
  <LI><B>subfont-GIMP</B> - lanzz@lanzz.org</B>
  <LI><B>*.pl</B> - Atmos</B>
  <LI><B>x2mpsub</B> - Gabucino</B>
  <LI><B>others</B> - A'rpi</B>
</UL></P>

<P>Misc:
<UL>
  <LI><B>vbelib.*</B> - Nick Kurshev</B>
  <LI><B>lrmi.*</B> - copied by Nick Kurshev (originally by Josh Vanderhoof)</B>
</UL></P>


<P><B><A NAME=B>Appendix B - Mailing lists</A></B></P>

<P>There are some public mailing lists on <B>MPlayer</B>. Subscribing can be
achieved on the following addresses:</P>

<P><UL>
<LI>MPlayer developers list:<BR>
<A HREF="http://mplayerhq.hu/mailman/listinfo/mplayer-dev-eng">http://mplayerhq.hu/mailman/listinfo/mplayer-dev-eng</A>
<P>This list is about mplayer development! Talking about interface/API changes,
new libraryes, code optimization, ./configure changes, and send patches here.
Do NOT send bugreports, user questions, feature requests here!
This list should be kept low-traffic.</P>

</LI><LI>MPlayer users list:<BR>
<A HREF="http://mplayerhq.hu/mailman/listinfo/mplayer-users">http://mplayerhq.hu/mailman/listinfo/mplayer-users</A>
<P><UL>
<LI>send bugreports here (after reading DOCS/BUGS, Appendix <A HREF="#C">C</A>)</LI>
<LI>send feature requests here (after reading bugreports.html)</LI>
<LI>send user questions here (after reading all this documentation)</LI>
</UL></P>

</LI><LI>MPlayer hungarian users list:<BR>
<A HREF="http://mplayerhq.hu/mailman/listinfo/mplayer-felhasznalok">http://mplayerhq.hu/mailman/listinfo/mplayer-felhasznalok</A>
<P><UL>
<LI>topic? We'll see about it...</LI>
</UL></P>

</LI><LI>MPlayer &amp; Matrox G200/G400/G450/G550 users:<BR>
<A HREF="http://lists.sourceforge.net/lists/listinfo/mplayer-matrox">http://lists.sourceforge.net/lists/listinfo/mplayer-matrox</A>
<P>Send matrox-related questions here<UL>
<LI>things about mga_vid</LI>
<LI>matrox's official beta drivers (for X 4.x.x)</LI>
<LI>and about matroxfb-TVout stuff.</LI></UL></P>

</LI><LI>MPlayer &amp; DVB card users:<BR>
<A HREF="http://mplayerhq.hu/mailman/listinfo/mplayer-dvb">http://mplayerhq.hu/mailman/listinfo/mplayer-dvb</A>
<P>Things related to the hardware decoder card called DVB.<UL>
</P>

</LI><LI>MPlayer CVS-log: <BR>
<A HREF="http://mplayerhq.hu/mailman/listinfo/mplayer-cvslog">http://mplayerhq.hu/mailman/listinfo/mplayer-cvslog</A>
<P>Send only questions about CVS changes here.
(if you don't understand why a change is required or you've better fix)
Be sure in that your target developer reads this list!</P>

</LI></UL></P>

<P>NOTE: language of above lists are ENGLISH, unless explicitly stated
otherwise.  Please do not send messages using other language!</P>

<P>NOTE: you can reach the searchable mailing list archives
<A HREF="http://www.mplayerhq.hu/cgi-bin/htsearch">here</A>.


<P><B><A NAME=C><A HREF="bugreports.html">Appendix C</A> - How to report bugs</A></B></P>

<P><B><A NAME=D>Appendix D - Known bugs</A></B></P>

<P>Special system/cpu-specific bugs/problems:</P>
<UL>
<LI> SIGILL (signal 4) in draw_frame, on P3 (mostly with 2.2.x kernels):<BR>
  Problem: movups is crashing in libvo/fastmemcpy.h<BR>
  Workaround:  ./configure --disable-fastmemcpy<BR>
  SOLVED: disabled SSE code in fastmemcpy.h ;(</LI>

<LI>No image (black image) in RGB 15/16bpp (x11,dga,fbdev,svga) playing
  MPEG or OpenDivX files:<BR>
  Problem: gcc 2.96 bug, read <A HREF="gcc-2.96-3.0.html">this</A><BR>
  Workaround: ./configure --disable-mmx, or use gcc 2.95.x<BR>
  SOLVED: code fixed</LI>

<LI>SIGILL (signal 4) or other fault at loading l3codeca.acm:<BR>
  Problem: shared libs are loaded to 0x00xxxxxx instead of 0x40xxxxxx<BR>
  Workaround: mplayer -afm 1 ...<BR>
  SOLVED: you are using some security kernel patch, like OpenWall etc.</LI>

<LI>SIGILL (signal 4) on P3 using 2.2.x kernels:<BR>
  Problem: kernel 2.2.x doesn't have proper (working) SSE support<BR>
  Solution: upgrade kernel to 2.4.x<BR>
  Workaround: ./configure --disable-sse</LI>

<LI>General SIGILL (signal 4):<BR>
  Problem: you compiled and run mplayer in different machines
  (for example compiled on P3 and running on celeron)<BR>
  Solution: compile MPlayer on the same machine where you will use it!<BR>
  Workaround: ./configure --disable-sse etc. options</LI>

<LI>"Internal buffer inconsistency" during MEncoder run:<BR>
  Problem: known gcc 2.96 bug, no fix yet. If you have gcc 2.95, you
  have a libmp3lame library that was compiled with gcc 2.96 (installed from
  a deb/rpm package?). Check which lib does MEncoder found : ldd mencoder.</LI>
</UL>

<P>Various A-V sync and other audio problems:</P>

General audio delay or jerky sound (exists with all or many files):<BR>
<UL>
<LI>audio buffer problems (buffer size badly detected)<BR>
  Workaround:  mplayer -abs option</LI>
<LI>slow machine (cpu or vga)<BR>
  try with -vo null, if it plays well, then you have slow VGA card/driver<BR>
  Workaround: buy a faster card or read this documentation about how to speed up<BR>
  SOLVED: try -framedrop</LI>
</UL><BR>

Audio delay/de-sync specific to one or a few files:<BR>
<UL>
<LI>bad file (please upload the file, so we can check & fix)<BR>
  Workaround:
  <UL>
    <LI>-ni or -nobps option   (for non-interleaved or bad files)</LI>
and/or
    <LI>-mc 0   (required for files with badly interleaved VBR audio)</LI>
and/or
    <LI>-delay option or +/- keys at runtime to adjust delay</LI>
  </UL>
<LI>your soundcard doesn't support 48Khz playback<BR>
  Workaround: buy a better soundcard...  or try to decrease fps by 10% (use -fps 27 for a 30fps movie)</LI>
<LI>slow machine<BR>
  (if A-V is not around 0, and the last number in the status line increasing)<BR>
  Workaround: -framedrop</LI>
</UL><BR>

No sound at all:<BR>
<UL>
<LI>your file uses an unsupported codec<BR>
  Workaround: read the documentation and help us adding support for it</LI>
</UL>

<P>Video-out problems:</P>

<P>First note: options -fs -vm and -zoom are just recommendations, not (yet)
supported by all drivers. So it isn't a bug if it doesn't work.
Only a few driver supports scaling/zooming, don't expect this from x11 or dga.</P>

<P>OSD/sub flickering:<BR>
- x11 driver: sorry, it can't be fixed now<BR>
- xv driver: use -double option</P>

</BODY>
</HTML>