blob: 2f3b8c15355013cb40bdc57d08d26fa480bb7281 (
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
|
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook V4.1//EN" [
<!ENTITY intro SYSTEM "intro.sgml">
]>
<book>
<bookinfo>
<title>The xine hacker's guide</title>
<titleabbrev>hackersguide</titleabbrev>
<authorgroup>
<author><firstname>Günter</firstname><surname>Bartsch</surname></author>
<author><firstname>Heiko</firstname><surname>Schäfer</surname></author>
</authorgroup>
<copyright>
<year>2001</year>
<holder>the xine project team</holder>
</copyright>
<abstract>
<para>
This document should help xine hackers to find their way through
xine's architecture and source code. It's a pretty free-form document
containing a loose collection of articles describing various aspects
of xine's internals.
</para>
</abstract>
</bookinfo>
<chapter id="intro">
<title>Introduction</title>
&intro;
</chapter>
<chapter id="overview"><title>Overview</title>
<sect1>
<title>Modules</title>
<para></para>
</sect1>
<sect1>
<title>Which module does what</title>
<para></para>
</sect1>
<sect1>
<title>Information flow</title>
<para></para>
</sect1>
<sect1>
<title>Library interfaces</title>
<para></para>
</sect1>
</chapter>
<chapter id="internals"><title>xine internals</title>
<sect1>
<title>What is this metronom thingy ?</title>
<para></para>
</sect1>
<sect1>
<title>xine engine from inside</title>
<para></para>
</sect1>
<sect1>
<title>Plugin architecture</title>
<para></para>
</sect1>
</chapter>
<chapter id="input"><title>Extending xine's input</title>
<sect1>
<title>Adding support for a new file format (writing a demuxer)</title>
<para></para>
</sect1>
<sect1>
<title>Adding support for a new audio/video format
(writing a decoder)</title>
<para></para>
</sect1>
<sect1>
<title>Adding support for a new media type,
e.g. disc format, network transport method
(writing an input plugin)</title>
<para></para>
</sect1>
</chapter>
<chapter id="output"><title>Extending xine's output</title>
<sect1>
<title>Adding support for a new type of video output
(e.g. framebuffer device)</title>
<para></para>
</sect1>
<sect1>
<title>Adding support for a new type of audio output</title>
<para></para>
</sect1>
</chapter>
<chapter id="xine-library"><title>Using xine as a library</title>
<sect1>
<title>Writing a new frontend to xine</title>
<para></para>
</sect1>
</chapter>
<chapter id="misc"><title>misc</title>
<sect1>
<title>Coding style</title>
<para></para>
</sect1>
</chapter>
</book>
|