Mercurial > mplayer.hg
annotate DOCS/xml/en/bugs.xml @ 10695:879ce4016b34
Commit alex's fstype patch x11_common.c3.diff with additional manpage extension.
author | attila |
---|---|
date | Mon, 25 Aug 2003 18:13:51 +0000 |
parents | a6983ecaa2a6 |
children | 49b1a67e7381 |
rev | line source |
---|---|
9675 | 1 <?xml version="1.0" encoding="iso-8859-1"?> |
2 <appendix id="bugs"> | |
3 <title>Known bugs</title> | |
4 <sect1 id="bugs-special"> | |
5 <title>Special system/CPU-specific bugs/problems</title> | |
6 <itemizedlist> | |
7 <listitem> | |
8 <para>SIGILL (signal 4) on P3 using 2.2.x kernels:</para> | |
9 <para>Problem: kernel 2.2.x doesn't have proper (working) SSE support</para> | |
10 <para>Solution: upgrade kernel to 2.4.x</para> | |
11 <para>Workaround: <command>./configure --disable-sse</command></para> | |
12 </listitem> | |
13 <listitem> | |
14 <para>General SIGILL (signal 4):</para> | |
9777 | 15 <para>Problem: you compiled and run MPlayer on different machines |
9675 | 16 (for example compiled on P3 and running on Celeron)</para> |
17 <para>Solution: compile MPlayer on the same machine where you will use it!</para> | |
18 <para>Workaround: <command>./configure --disable-sse</command> etc. options</para> | |
19 </listitem> | |
20 <listitem> | |
21 <para>"Internal buffer inconsistency" during MEncoder run:</para> | |
22 <para>Problem: known problem when lame < 3.90 was compiled with gcc 2.96 or 3.x.</para> | |
23 <para>Solution: use lame >=3.90.</para> | |
24 <para>Workaround: compile lame with gcc 2.95.x and remove any already installed | |
25 lame packages, they may have been compiled with gcc 2.96.</para> | |
26 </listitem> | |
27 <listitem> | |
28 <para>Messed up MP2/MP3 sound on PPC:</para> | |
29 <para>Problem: known GCC miscompilation bug on PPC platforms, no fix yet.</para> | |
30 <para>Workaround: use FFmpeg's (slow) MP1/MP2/MP3 decoder (<option>-ac ffmpeg</option>)</para> | |
31 </listitem> | |
32 <listitem> | |
33 <para>sig11 in libmpeg2, when scaling+encoding:</para> | |
34 <para>Problem: known GCC 2.95.2 MMX bug, upgrade to 2.95.3.</para> | |
35 </listitem> | |
36 </itemizedlist> | |
37 </sect1> | |
38 | |
39 <sect1 id="bugs-audio"> | |
40 <title>Various A-V sync and other audio problems</title> | |
41 | |
42 <sect2 id="bugs-delay-all"> | |
43 <title>General audio delay or jerky sound (exists with all or many files)</title> | |
44 <itemizedlist> | |
45 <listitem><para> | |
46 most common: buggy audio driver! - try to use different drivers, try ALSA 0.9 OSS | |
47 emulation with <option>-ao oss</option>, also try <option>-ao sdl</option>, | |
9736
520f6d60bf75
fixes, some by Dmitry Baryshkov <lumag@qnc.ru>, some by me
nicolas
parents:
9675
diff
changeset
|
48 sometimes it helps. If your file plays fine with <option>-nosound</option>, then you can be sure |
9675 | 49 it's sound card (driver) problem. |
50 </para></listitem> | |
51 </itemizedlist> | |
52 <itemizedlist> | |
53 <listitem> | |
54 <para>audio buffer problems (buffer size badly detected)</para> | |
9736
520f6d60bf75
fixes, some by Dmitry Baryshkov <lumag@qnc.ru>, some by me
nicolas
parents:
9675
diff
changeset
|
55 <para>Workaround: MPlayer's <option>-abs</option> option</para> |
9675 | 56 </listitem> |
57 </itemizedlist> | |
58 <itemizedlist> | |
59 <listitem><para> | |
60 samplerate problems - maybe your card doesn't support the samplerate used in your | |
9736
520f6d60bf75
fixes, some by Dmitry Baryshkov <lumag@qnc.ru>, some by me
nicolas
parents:
9675
diff
changeset
|
61 files - try the resampling plugin (<option>-af resample=...</option>) |
9675 | 62 </para></listitem> |
63 </itemizedlist> | |
64 <itemizedlist> | |
65 <listitem> | |
66 <para>slow machine (CPU or VGA)</para> | |
67 <para>try with <option>-vo null</option>, if it plays well, then you have slow | |
68 VGA card/driver</para> | |
69 <para>Workaround: buy a faster card or read this documentation about how to | |
70 speed up</para> | |
71 <para>Also try <option>-framedrop</option></para> | |
72 </listitem> | |
73 </itemizedlist> | |
74 </sect2> | |
75 | |
76 <sect2 id="bugs-delay-specific"> | |
77 <title>Audio delay/de-sync specific to one or a few files</title> | |
78 <itemizedlist> | |
79 <listitem> | |
80 <para>bad file</para> | |
81 <para> | |
82 Workaround: | |
83 <itemizedlist> | |
84 <listitem> | |
85 <para><option>-ni</option> or <option>-nobps</option> option (for | |
86 non-interleaved or bad files)</para> | |
87 <para>and/or</para> | |
88 </listitem> | |
89 <listitem> | |
90 <para><option>-mc 0</option>(required for files with badly | |
91 interleaved VBR audio)</para> | |
92 <para>and/or</para> | |
93 </listitem> | |
94 <listitem> | |
95 <para><option>-delay</option> or <keycap>+</keycap>/<keycap>-</keycap> | |
96 keys at runtime to adjust delay</para> | |
97 </listitem> | |
98 </itemizedlist> | |
99 If none of these help, please upload the file, we'll check (and fix). | |
100 </para> | |
101 </listitem> | |
102 <listitem> | |
103 <para>your sound card doesn't support 48kHz playback</para> | |
104 <para>Workaround: buy a better sound card... or try to decrease fps by 10% (use | |
9736
520f6d60bf75
fixes, some by Dmitry Baryshkov <lumag@qnc.ru>, some by me
nicolas
parents:
9675
diff
changeset
|
105 <option>-fps 27</option> for a 30fps movie) or use the resample plugin</para> |
9675 | 106 </listitem> |
107 <listitem> | |
108 <para>slow machine(if A-V is not around 0, and the last number in the status | |
109 line increasing)</para> | |
110 <para>Workaround: <option>-framedrop</option></para> | |
111 </listitem> | |
112 </itemizedlist> | |
113 </sect2> | |
114 | |
115 <sect2 id="bugs-nosound"> | |
116 <title>No sound at all</title> | |
117 <itemizedlist> | |
118 <listitem> | |
119 <para>your file uses an unsupported audio codec</para> | |
120 <para>read the documentation and help us adding support for it</para> | |
121 </listitem> | |
122 </itemizedlist> | |
123 </sect2> | |
124 | |
125 <sect2 id="bugs-nopicture"> | |
126 <title>No picture at all (just plain grey/green window)</title> | |
127 <itemizedlist> | |
128 <listitem> | |
129 <para>your file uses an unsupported video codec</para> | |
130 <para>Workaround: read the documentation and help us adding support for it</para> | |
131 </listitem> | |
132 <listitem> | |
133 <para> | |
134 auto-selected codec can't decode the file, try to select another using | |
135 <option>-vc</option> or <option>-vfm</option> options | |
136 </para> | |
137 </listitem> | |
138 <listitem> | |
139 <para> | |
140 you try to play DivX 3.x file with OpenDivX decoder or XviD | |
141 (<option>-vc odivx</option>) - install Divx4Linux and recompile player | |
142 </para> | |
143 </listitem> | |
144 </itemizedlist> | |
145 </sect2> | |
146 | |
147 <sect2 id="bugs-video"> | |
148 <title>Video-out problems</title> | |
149 <para> | |
150 First note: options <option>-fs -vm</option> and <option>-zoom</option> are just | |
151 recommendations, not (yet) supported by all drivers. So it isn't a bug if it | |
152 doesn't work. Only a few driver supports scaling/zooming, don't expect this from | |
153 x11 or dga. | |
154 </para> | |
155 | |
156 <formalpara> | |
157 <title>OSD/sub flickering</title> | |
158 <para> | |
159 <itemizedlist> | |
160 <listitem><para>x11 driver: sorry, it can't be fixed now</para></listitem> | |
161 <listitem><para>xv driver: use <option>-double</option> option</para></listitem> | |
162 </itemizedlist> | |
163 </para> | |
164 </formalpara> | |
165 | |
166 <formalpara> | |
167 <title>Green image using mga_vid (<option>-vo mga</option> / <option>-vo xmga</option>)</title> | |
168 <para> | |
169 <itemizedlist> | |
170 <listitem><para>mga_vid misdetected your card's RAM amount, reload it using | |
171 <option>mga_ram_size</option> option | |
172 </para></listitem> | |
173 </itemizedlist> | |
174 </para> | |
175 </formalpara> | |
176 | |
177 </sect2> | |
178 </sect1> | |
179 | |
180 </appendix> |