annotate DOCS/BUGREPORTS @ 1009:c51d7e4853d6

finished .asf seeking
author arpi_esp
date Mon, 04 Jun 2001 19:30:24 +0000
parents b194061e3f03
children 0bddc179f042
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
669
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
1 How to report bugs?
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
2 ~~~~~~~~~~~~~~~~~~~
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
3 First read DOCS/BUGS, and other docs. If your problem isn't
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
4 known or isn't solved by our instructions, then report the bug:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
5
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
6 Where?
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
7 ======
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
8 Subscribe to the mplayer-users mailing list:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
9 http://lists.sourceforge.net/lists/listinfo/mplayer-users
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
10 and send your bugreport to:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
11 mplayer-users@lists.sourceforge.net
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
12 We won't CC: so please subscribe!!!
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
13
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
14 Don't send bugreports private, directly to author's address!!!
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
15 We are working together on code, so everyone is interested in it.
675
3ec7d432d972 kommitke
gabucino
parents: 669
diff changeset
16 BTW many times other users know the solution (system config probs,
669
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
17 bad drivers etc), even when we think it's a bug in our code.
907
b194061e3f03 pre-review
gabucino
parents: 709
diff changeset
18 The language of this list is ENGLISH !
669
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
19
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
20 Please describe your problem in details, examples etc, and don't
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
21 forget to include these:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
22
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
23 What?
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
24 =====
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
25
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
26 1. The system info what we always want:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
27 - linux distribution
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
28 for example: RedHat 7.1 / Slackware 7.0 + devel packs from 7.1 ...
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
29 - kernel version:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
30 uname -a
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
31 - libc version:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
32 ls -l /lib/libc[.-]*
709
c76fd19bb10f XFree86 version detection
nickols_k
parents: 708
diff changeset
33 - X version:
c76fd19bb10f XFree86 version detection
nickols_k
parents: 708
diff changeset
34 X -version
669
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
35 - gcc and ld version:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
36 gcc -v
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
37 ld -v
708
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
38 - binutils version:
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
39 as --version
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
40
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
41 1.1. Please print us coredump (if it was created).
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
42 Howto:
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
43 please create following command file:
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
44
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
45 disass $eip $eip+15
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
46 printf "eax=%08lX\n",$eax
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
47 printf "ebx=%08lX\n",$ebx
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
48 printf "ecx=%08lX\n",$ecx
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
49 printf "edx=%08lX\n",$edx
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
50 printf "esp=%08lX\n",$esp
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
51 printf "ebp=%08lX\n",$ebp
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
52 printf "edi=%08lX\n",$edi
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
53 printf "esi=%08lX\n",$esi
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
54
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
55 Then simply execute following command line:
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
56 gdb mplayer --core=core -batch --command=command_file >mplayer.bug
810fe7153a43 Added missed binutils version requirement and coredump
nickols_k
parents: 675
diff changeset
57
669
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
58
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
59 2. Hardware & drivers:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
60 - CPU info:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
61 cat /proc/cpuinfo
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
62 - video card manufacturer and model
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
63 examples:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
64 ASUS V3800U chip: nVidia TNT2 Ultra pro 32MB SDRAM
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
65 Matrox G400 DH 32MB SGRAM
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
66 - video driver type&version
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
67 examples:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
68 X built-in driver
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
69 nvidia 0.9.623
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
70 Utah-GLX CVS 2001-02-17
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
71 DRI from X 4.0.3
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
72 - sound card type & driver
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
73 examples:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
74 Creative SBLive! Gold with OSS driver from oss.creative.com
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
75 Creative SB16 with OSS drivers of kernel
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
76 GUS PnP with ALSA OSS emulation
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
77 - if you are unsure, attach output of lspci -v
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
78
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
79 For compiling problems/errors:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
80 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
81 3. output of configure/make:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
82 make distclean
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
83 ./configure &>config.log
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
84 ./make &>make.log
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
85 4. these files:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
86 config.h
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
87 config.mak
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
88 libvo/config.mak
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
89
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
90 For playback problems:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
91 ~~~~~~~~~~~~~~~~~~~~~~
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
92 3. Output of mplayer at verbose level 1 (-v)
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
93 mplayer -v [options] filename &> mplayer.log
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
94
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
95 4. If the problem is specific to one or a few files,
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
96 then please upload that file to:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
97 ftp://thot.banki.hu/MPlayer/incoming/
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
98 Usually first 1-5 MB of the file is enough to reproduce
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
99 the problem, but first you should try it:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
100 dd if=yourfile of=smallfile bs=1k count=1024
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
101 (it will cut first 1MB of 'yourfile' and save to 'smallfile')
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
102 Then try again on this small file, and if bug still exists
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
103 then it's enough to upload this small file.
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
104 NEVER send such files via mail! Upload it, and send only
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
105 the path/filename of the file on the FTP.
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
106 If the file is accessible on the net, then sending the
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
107 _exact_ URL is enough!
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
108
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
109 In general:
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
110 If something is big (logs etc) then it's better to upload to the ftp
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
111 (gzipped), and include only path/filename in the bugreport!
b369366d51ca How to send a quality bugreport
arpi_esp
parents:
diff changeset
112