annotate DOCS/tech/codecs-in.html @ 33263:5f527a9a9521

Add an exit function. This function will allow performing clean-up operations. (MPlayer calls guiDone() before exiting, but only if the GUI has been initialized, i.e. if guiInit() has been called successfully. Any exit_player()/exit_player_with_rc() after GUI's cfg_read() until guiInit(), or any exit_player() during guiInit() itself will end the GUI without calling guiDone(). This exit function will at least handle abortions during guiInit() itself. It will be called twice in case of an guiExit() after GUI initialization - first directly, next by guiDone() via MPlayer's exit_player_with_rc().)
author ib
date Tue, 03 May 2011 12:19:22 +0000
parents f86b4bd1a060
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6441
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
2 <html>
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
3 <head>
12645
3841ef14a481 name change
diego
parents: 10859
diff changeset
4 <title>Codec Status Table - MPlayer - The Movie Player</title>
17662
81881a3b85cf Fix stylesheet path.
diego
parents: 12645
diff changeset
5 <link rel="stylesheet" type="text/css" href="default.css">
28750
65e7887e52d6 Use UTF-8 as character set.
diego
parents: 28749
diff changeset
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
6441
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
7 </head>
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
8 <body text="#000000" link="#666666" vlink="#666666" alink="#666666">
28914
f86b4bd1a060 Move page heading and table of contents out of the codec support table.
diego
parents: 28913
diff changeset
9
f86b4bd1a060 Move page heading and table of contents out of the codec support table.
diego
parents: 28913
diff changeset
10 <h1>Status of codecs support</h1>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
11
28914
f86b4bd1a060 Move page heading and table of contents out of the codec support table.
diego
parents: 28913
diff changeset
12 <ul>
f86b4bd1a060 Move page heading and table of contents out of the codec support table.
diego
parents: 28913
diff changeset
13 <li><a href="#vc">Video codecs</a></li>
f86b4bd1a060 Move page heading and table of contents out of the codec support table.
diego
parents: 28913
diff changeset
14 <li><a href="#ac">Audio codecs</a></li>
f86b4bd1a060 Move page heading and table of contents out of the codec support table.
diego
parents: 28913
diff changeset
15 </ul>
f86b4bd1a060 Move page heading and table of contents out of the codec support table.
diego
parents: 28913
diff changeset
16
f86b4bd1a060 Move page heading and table of contents out of the codec support table.
diego
parents: 28913
diff changeset
17 <table width=750 border="0">
28749
4392751ddd24 cosmetics: Remove trailing whitespace.
diego
parents: 17662
diff changeset
18 <tr>
4392751ddd24 cosmetics: Remove trailing whitespace.
diego
parents: 17662
diff changeset
19 <td align="center">
1944
4d8123ae7b4b Fixed vfwex section, null codec and other fourcc issues and improved codecs-in.html usability.
atmos4
parents: 702
diff changeset
20 <b><font face="Verdana, Arial, Helvetica, sans-serif" size="5"><a name="vc">Video codecs:</a></font></b><br><br>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
21
6441
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
22 <table width="100%" border="1" cellspacing="0" cellpadding="5">
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
23
28749
4392751ddd24 cosmetics: Remove trailing whitespace.
diego
parents: 17662
diff changeset
24 <tr>
8210
e88dffa0c555 removed win32 section - no much sense of separating them now
arpi
parents: 6882
diff changeset
25 <td colspan=6 bgcolor="#CCCCCC"><b>Working video codecs</b></td>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
26 </tr>
28749
4392751ddd24 cosmetics: Remove trailing whitespace.
diego
parents: 17662
diff changeset
27 <tr>
623
950e2d2613e3 codecs-in.html, modified by Chass
laaz
parents: 609
diff changeset
28 <td width=150 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">codec name</font></b></td>
950e2d2613e3 codecs-in.html, modified by Chass
laaz
parents: 609
diff changeset
29 <td width=70 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">fourcc</font></b></td>
28913
0168df7e4dde Give table headings more meaningful names.
diego
parents: 28750
diff changeset
30 <td width=120 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">driver name</font></b></td>
623
950e2d2613e3 codecs-in.html, modified by Chass
laaz
parents: 609
diff changeset
31 <td width=40 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">out</font></b></td>
950e2d2613e3 codecs-in.html, modified by Chass
laaz
parents: 609
diff changeset
32 <td align=center colspan=2><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">comments</font></b></td>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
33 </tr>
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
34 <!-- %0 -->
28749
4392751ddd24 cosmetics: Remove trailing whitespace.
diego
parents: 17662
diff changeset
35 <tr>
6441
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
36 <td align=center><b>%i</b></td>
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
37 <td align=center><b>%F</b></td>
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
38 <td align=center><b>%d</b></td>
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
39 <td align=center><b>%Y</b></td>
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
40 <td align=center colspan=2><b>%c</b></td>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
41 </tr>
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
42 <!-- %. -->
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
43
8210
e88dffa0c555 removed win32 section - no much sense of separating them now
arpi
parents: 6882
diff changeset
44 <tr>
e88dffa0c555 removed win32 section - no much sense of separating them now
arpi
parents: 6882
diff changeset
45 <td colspan=6 bgcolor="#CCCCCC"><b>New / Untested codecs</b></td>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
46 </tr>
28749
4392751ddd24 cosmetics: Remove trailing whitespace.
diego
parents: 17662
diff changeset
47 <tr>
623
950e2d2613e3 codecs-in.html, modified by Chass
laaz
parents: 609
diff changeset
48 <td width=150 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">codec name</font></b></td>
950e2d2613e3 codecs-in.html, modified by Chass
laaz
parents: 609
diff changeset
49 <td width=70 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">fourcc</font></b></td>
28913
0168df7e4dde Give table headings more meaningful names.
diego
parents: 28750
diff changeset
50 <td width=120 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">driver name</font></b></td>
0168df7e4dde Give table headings more meaningful names.
diego
parents: 28750
diff changeset
51 <td colspan=3 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">comments</font></b></td>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
52 </tr>
8210
e88dffa0c555 removed win32 section - no much sense of separating them now
arpi
parents: 6882
diff changeset
53 <!-- %4 -->
28749
4392751ddd24 cosmetics: Remove trailing whitespace.
diego
parents: 17662
diff changeset
54 <tr>
6441
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
55 <td align=center><b>%i</b></td>
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
56 <td align=center><b>%F</b></td>
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
57 <td align=center><b>%d</b></td>
8210
e88dffa0c555 removed win32 section - no much sense of separating them now
arpi
parents: 6882
diff changeset
58 <td align=center colspan=3><b>%c</b></td>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
59 </tr>
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
60 <!-- %. -->
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
61
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
62 <tr>
6441
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
63 <td colspan=6 bgcolor="#CCCCCC"><b>Codecs with problems</b></td>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
64 </tr>
28749
4392751ddd24 cosmetics: Remove trailing whitespace.
diego
parents: 17662
diff changeset
65 <tr>
623
950e2d2613e3 codecs-in.html, modified by Chass
laaz
parents: 609
diff changeset
66 <td width=150 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">codec name</font></b></td>
950e2d2613e3 codecs-in.html, modified by Chass
laaz
parents: 609
diff changeset
67 <td width=70 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">fourcc</font></b></td>
28913
0168df7e4dde Give table headings more meaningful names.
diego
parents: 28750
diff changeset
68 <td width=120 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">driver name</font></b></td>
0168df7e4dde Give table headings more meaningful names.
diego
parents: 28750
diff changeset
69 <td colspan=3 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">comments</font></b></td>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
70 </tr>
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
71 <!-- %2 -->
28749
4392751ddd24 cosmetics: Remove trailing whitespace.
diego
parents: 17662
diff changeset
72 <tr>
6441
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
73 <td align=center><b>%i</b></td>
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
74 <td align=center><b>%F</b></td>
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
75 <td align=center><b>%d</b></td>
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
76 <td align=center colspan=3><b>%c</b></td>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
77 </tr>
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
78 <!-- %. -->
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
79
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
80 <tr>
6441
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
81 <td colspan=6 bgcolor="#CCCCCC"><b>Not yet working codecs:</b></td>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
82 </tr>
28749
4392751ddd24 cosmetics: Remove trailing whitespace.
diego
parents: 17662
diff changeset
83 <tr>
623
950e2d2613e3 codecs-in.html, modified by Chass
laaz
parents: 609
diff changeset
84 <td width=150 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">codec name</font></b></td>
950e2d2613e3 codecs-in.html, modified by Chass
laaz
parents: 609
diff changeset
85 <td width=70 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">fourcc</font></b></td>
28913
0168df7e4dde Give table headings more meaningful names.
diego
parents: 28750
diff changeset
86 <td width=120 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">driver name</font></b></td>
0168df7e4dde Give table headings more meaningful names.
diego
parents: 28750
diff changeset
87 <td colspan=3 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">comments</font></b></td>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
88 </tr>
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
89 <!-- %3 -->
28749
4392751ddd24 cosmetics: Remove trailing whitespace.
diego
parents: 17662
diff changeset
90 <tr>
6441
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
91 <td align=center><b>%i</b></td>
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
92 <td align=center><b>%F</b></td>
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
93 <td align=center><b>%d</b></td>
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
94 <td align=center colspan=3><b>%c</b></td>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
95 </tr>
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
96 <!-- %. -->
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
97
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
98 </table>
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
99
1944
4d8123ae7b4b Fixed vfwex section, null codec and other fourcc issues and improved codecs-in.html usability.
atmos4
parents: 702
diff changeset
100 <br><b><font face="Verdana, Arial, Helvetica, sans-serif" size="5"><a name="ac">Audio codecs:</a></font></b><br><br>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
101
6441
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
102 <table width="100%" border="1" cellspacing="0" cellpadding="5">
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
103
28749
4392751ddd24 cosmetics: Remove trailing whitespace.
diego
parents: 17662
diff changeset
104 <tr>
8210
e88dffa0c555 removed win32 section - no much sense of separating them now
arpi
parents: 6882
diff changeset
105 <td colspan=6 bgcolor="#CCCCCC"><b>Working audio codecs</b></td>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
106 </tr>
28749
4392751ddd24 cosmetics: Remove trailing whitespace.
diego
parents: 17662
diff changeset
107 <tr>
623
950e2d2613e3 codecs-in.html, modified by Chass
laaz
parents: 609
diff changeset
108 <td width=150 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">codec name</font></b></td>
950e2d2613e3 codecs-in.html, modified by Chass
laaz
parents: 609
diff changeset
109 <td width=70 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">format</font></b></td>
28913
0168df7e4dde Give table headings more meaningful names.
diego
parents: 28750
diff changeset
110 <td width=120 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">driver name</font></b></td>
623
950e2d2613e3 codecs-in.html, modified by Chass
laaz
parents: 609
diff changeset
111 <td align=center colspan=3><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">comments</font></b></td>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
112 </tr>
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
113 <!-- %5 -->
28749
4392751ddd24 cosmetics: Remove trailing whitespace.
diego
parents: 17662
diff changeset
114 <tr>
6441
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
115 <td align=center><b>%i</b></td>
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
116 <td align=center><b>%f</b></td>
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
117 <td align=center><b>%d</b></td>
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
118 <td align=center colspan=3><b>%c</b></td>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
119 </tr>
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
120 <!-- %. -->
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
121
28749
4392751ddd24 cosmetics: Remove trailing whitespace.
diego
parents: 17662
diff changeset
122 <tr>
8210
e88dffa0c555 removed win32 section - no much sense of separating them now
arpi
parents: 6882
diff changeset
123 <td colspan=6 bgcolor="#CCCCCC"><b>New / Untested codecs</b></td>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
124 </tr>
28749
4392751ddd24 cosmetics: Remove trailing whitespace.
diego
parents: 17662
diff changeset
125 <tr>
623
950e2d2613e3 codecs-in.html, modified by Chass
laaz
parents: 609
diff changeset
126 <td width=150 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">codec name</font></b></td>
950e2d2613e3 codecs-in.html, modified by Chass
laaz
parents: 609
diff changeset
127 <td width=70 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">format</font></b></td>
28913
0168df7e4dde Give table headings more meaningful names.
diego
parents: 28750
diff changeset
128 <td width=120 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">driver name</font></b></td>
0168df7e4dde Give table headings more meaningful names.
diego
parents: 28750
diff changeset
129 <td colspan=3 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">comments</font></b></td>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
130 </tr>
8210
e88dffa0c555 removed win32 section - no much sense of separating them now
arpi
parents: 6882
diff changeset
131 <!-- %9 -->
28749
4392751ddd24 cosmetics: Remove trailing whitespace.
diego
parents: 17662
diff changeset
132 <tr>
6441
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
133 <td align=center><b>%i</b></td>
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
134 <td align=center><b>%f</b></td>
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
135 <td align=center><b>%d</b></td>
8210
e88dffa0c555 removed win32 section - no much sense of separating them now
arpi
parents: 6882
diff changeset
136 <td align=center colspan=3><b>%c</b></td>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
137 </tr>
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
138 <!-- %. -->
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
139
28749
4392751ddd24 cosmetics: Remove trailing whitespace.
diego
parents: 17662
diff changeset
140 <tr>
6441
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
141 <td colspan=6 bgcolor="#CCCCCC"><b>Codecs with problems</b></td>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
142 </tr>
28749
4392751ddd24 cosmetics: Remove trailing whitespace.
diego
parents: 17662
diff changeset
143 <tr>
623
950e2d2613e3 codecs-in.html, modified by Chass
laaz
parents: 609
diff changeset
144 <td width=150 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">codec name</font></b></td>
950e2d2613e3 codecs-in.html, modified by Chass
laaz
parents: 609
diff changeset
145 <td width=70 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">format</font></b></td>
28913
0168df7e4dde Give table headings more meaningful names.
diego
parents: 28750
diff changeset
146 <td width=120 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">driver name</font></b></td>
0168df7e4dde Give table headings more meaningful names.
diego
parents: 28750
diff changeset
147 <td colspan=3 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">comments</font></b></td>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
148 </tr>
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
149 <!-- %7 -->
28749
4392751ddd24 cosmetics: Remove trailing whitespace.
diego
parents: 17662
diff changeset
150 <tr>
6441
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
151 <td align=center><b>%i</b></td>
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
152 <td align=center><b>%f</b></td>
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
153 <td align=center><b>%d</b></td>
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
154 <td align=center colspan=3><b>%c</b></td>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
155 </tr>
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
156 <!-- %. -->
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
157
28749
4392751ddd24 cosmetics: Remove trailing whitespace.
diego
parents: 17662
diff changeset
158 <tr>
6441
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
159 <td colspan=6 bgcolor="#CCCCCC"><b>Not yet working codecs</b></td>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
160 </tr>
28749
4392751ddd24 cosmetics: Remove trailing whitespace.
diego
parents: 17662
diff changeset
161 <tr>
623
950e2d2613e3 codecs-in.html, modified by Chass
laaz
parents: 609
diff changeset
162 <td width=150 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">codec name</font></b></td>
950e2d2613e3 codecs-in.html, modified by Chass
laaz
parents: 609
diff changeset
163 <td width=70 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">format</font></b></td>
28913
0168df7e4dde Give table headings more meaningful names.
diego
parents: 28750
diff changeset
164 <td width=120 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">driver name</font></b></td>
0168df7e4dde Give table headings more meaningful names.
diego
parents: 28750
diff changeset
165 <td colspan=3 align=center><b><font color="#AAAAAA" face="Verdana, Arial, Helvetica, sans-serif" size="2">comments</font></b></td>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
166 </tr>
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
167 <!-- %8 -->
28749
4392751ddd24 cosmetics: Remove trailing whitespace.
diego
parents: 17662
diff changeset
168 <tr>
6441
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
169 <td align=center><b>%i</b></td>
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
170 <td align=center><b>%f</b></td>
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
171 <td align=center><b>%d</b></td>
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
172 <td align=center colspan=3><b>%c</b></td>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
173 </tr>
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
174 <!-- %. -->
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
175
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
176 </table>
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
177 </td>
702
b129cd2bbbb4 removed broken image links...
arpi_esp
parents: 639
diff changeset
178 </tr>
609
45654e2224d8 html template for codecs.html
arpi_esp
parents:
diff changeset
179 </table>
6441
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
180 </body>
09e212db57f9 Now using CSS, added doctype and charset, settle for lowercase tags.
diego
parents: 4982
diff changeset
181 </html>