Mercurial > mplayer.hg
comparison DOCS/Polish/BUGS @ 1242:15c14e28a6b4
polish translation of some key documents.
author | eyck |
---|---|
date | Fri, 29 Jun 2001 08:48:47 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1241:c4e00ea67748 | 1242:15c14e28a6b4 |
---|---|
1 Znane problemy: | |
2 ~~~~~~~~~~~ | |
3 | |
4 Szczególne, zależne od systemu/CPU : | |
5 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
6 1. SIGILL (signal 4) in draw_frame, on P3 (mostly with 2.2.x kernels): | |
7 Problem: movups is crashing in libvo/fastmemcpy.h | |
8 Workaround: ./configure --disable-fastmemcpy | |
9 SOLVED: disabled SSE code in fastmemcpy.h ;( | |
10 | |
11 2. No image (black image) in RGB 15/16bpp (x11,dga,fbdev,svga) playing | |
12 MPEG or OpenDivX files: | |
13 Problem: gcc 2.96 bug | |
14 Workaround: ./configure --disable-mmx, or use gcc 2.95.x | |
15 SOLVED: code fixed | |
16 | |
17 3. SIGILL (signal 4) or other fault at loading l3codeca.acm: | |
18 Problem: shared libs are loaded to 0x00xxxxxx instead of 0x40xxxxxx | |
19 Workaround: mplayer -afm 1 ... | |
20 SOLVED: you are using some security kernel patch, like OpenWall etc. | |
21 | |
22 4. SIGILL (signal 4) on P3 using 2.2.x kernels: | |
23 Problem: kernel 2.2.x doesn't have proper (working) SSE support | |
24 Solution: upgrade kernel to 2.4.x | |
25 Workaround: ./configure --disable-sse | |
26 | |
27 5. General SIGILL (signal 4): | |
28 Problem: you compiled and run mplayer in different machines | |
29 (for example compiled on P3 and running on celeron) | |
30 Solution: compile MPlayer on the same machine where you will use it! | |
31 Workaround: ./configure --disable-sse etc. options | |
32 | |
33 Various A-V sync and other audio problems: | |
34 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
35 General audio delay or jerky sound (exists with all or many files): | |
36 - audio buffer problems (buffer size badly detected) | |
37 Workaround: mplayer -abs option | |
38 - slow machine (cpu or vga) | |
39 try with -vo null, if it plays well, then you have slow VGA card/driver: | |
40 Workaround: buy a faster card or read DOCS/VIDEOCARDS about how to speed up | |
41 SOLVED: try -framedrop | |
42 | |
43 Audio delay/de-sync specific to one or a few files: | |
44 - bad file (please upload the file, so we can check & fix) | |
45 Workaround: -ni or -bps option (for non-interlaved or bad files) | |
46 -mc 0 (required for files with VBR audio) | |
47 -delay option or +/- keys at runtime to adjust delay | |
48 - your soundcard doesn't support 48Khz playback | |
49 Workaround: buy a better soundcard... | |
50 or try to decrease fps by 10% (use -fps 27 for a 30fps movie) | |
51 - slow machine | |
52 (if A-V is not around 0, and teh last number in the status line increasing) | |
53 Workaround: -framedrop | |
54 | |
55 After many > or ^ (fast forward) audio vs. video is going out of sync (ASF/AVI) | |
56 - bug in mplayer code (a-v sync probs after seek... not really bug but | |
57 my avi/asf seeking code is not perfect yet) | |
58 Workaround: -bps | |
59 SOLVED: code fixed (but -bps still can help) | |
60 | |
61 Signal 11 in decode_audio: | |
62 - mp3lib doesn't handle (yet) well bad/broken audio streams | |
63 Workaround: -afm 4 | |
64 SOLVED: fixed mp3lib, it must be rock solid now! | |
65 - if it's still bad, try with -nosound [and report the bug, see BUGREPORTS] | |
66 | |
67 No sound at all: | |
68 - your file uses an unsupported codec | |
69 Workaround: read DOCS/CODECS, and help us adding support for it | |
70 | |
71 Video-out problems: | |
72 ~~~~~~~~~~~~~~~~~~~ | |
73 First note: options -fs -vm and -zoom are just recommendations, not (yet) | |
74 supported by all drivers. So it isn't a bug if it doesn't work. | |
75 Only a few driver supports scaling/zooming, don't expect this from x11 or dga. | |
76 | |
77 OSD/sub flickering: | |
78 - x11 driver: sorry, it can't be fixed now | |
79 - xv driver: increase number of buffers in libvo/vo_xv.c, and recompile all | |
80 | |
81 | |
82 A'rpi / Astral & ESP-team |