File: glossary.xml

package info (click to toggle)
vlc 0.2.92-8
  • links: PTS
  • area: main
  • in suites: woody
  • size: 7,076 kB
  • ctags: 7,147
  • sloc: ansic: 62,829; cpp: 5,824; sh: 2,469; xml: 2,351; makefile: 1,291; python: 503; perl: 19
file content (205 lines) | stat: -rw-r--r-- 8,761 bytes parent folder | download
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
    <glossary>

      <warning> <para>
        Please note that this book is in no way a reference documentation
        on how DVDs work. Its only purpose is to describe the API
        available for programmers in VideoLAN Client. It is assumed that
        you have basic knowledge of what MPEG is. The following paragraph
        is just here as a reminder :
      </para> </warning>

      <glossentry>
        <glossterm> <acronym> AC3 </acronym> :
        Digital Audio Compression Standard </glossterm>
        <glossdef> <para> Specification for coding audio data, used in DVD.
        The documentation is
        <ulink url="http://www.linuxvideo.org/devel/library/ac3-standard_a_52.pdf">
        freely available </ulink>.
        </para> </glossdef>
      </glossentry>

      <glossentry>
        <glossterm> <acronym> B </acronym> (bi-directional) picture </glossterm>
        <glossdef> <para> Picture decoded from its own data, <emphasis>
        and </emphasis> from the data of the previous and next (that
        means <emphasis>in the future</emphasis>) reference
        pictures (I or P pictures). It is the most compressed picture
        format, but it is less fault-tolerant.
        </para> </glossdef>
      </glossentry>

      <glossentry>
        <glossterm> <acronym> DVD </acronym> :
        Digital Versatile Disc </glossterm>
        <glossdef> <para> Disc hardware format, using the UDF file system,
        an extension of the ISO 9660 file system format and a video format
        which is an extension of the MPEG-2 specification.
        It basically uses MPEG-2 PS files, with subtitles and sound
        tracks encoded as private data and fed into non-MPEG decoders, 
        along with .ifo files describing the contents of the DVD. DVD
        specifications are very hard to get, and it takes some
        time to reverse-engineer it. Sometimes DVD are zoned and
        scrambled, so we use a brute-force algorithm to find the key.
        </para> </glossdef>
      </glossentry>

      <glossentry>
        <glossterm> <acronym> ES </acronym> : Elementary Stream </glossterm>
        <glossdef> <para> Continuous stream of data fed into a decoder,
        without any multiplexing layer. ES streams can be MPEG video
        MPEG audio, AC3 audio, LPCM audio, SPU subpictures...
        </para> </glossdef>
      </glossentry>

      <glossentry>
        <glossterm> Field picture </glossterm>
        <glossdef> <para> Picture split in two fields, even and odd, like
        television does. DVDs coming from TV shows typically use field
        pictures.
        </para> </glossdef>
      </glossentry>

      <glossentry>
        <glossterm> Frame picture </glossterm>
        <glossdef> <para> Picture without even/odd discontinuities, unlike
        field pictures. DVDs coming from movies typically use frame
        pictures.
        </para> </glossdef>
      </glossentry>

      <glossentry>
        <glossterm> <acronym>I</acronym> (intra) picture </glossterm>
        <glossdef> <para> Picture independantly coded. It can be
        decoded without any other reference frame. It is regularly
        sent (like twice a second) for resynchronization purposes.
        </para> </glossdef>
      </glossentry>

      <glossentry>
        <glossterm> <acronym> IDCT </acronym> : Inverse Discrete
        Cosinus Transform </glossterm>
        <glossdef> <para> IDCT is a classical mathematical algorithm
        to convert from a space domain to a frequency domain. In a
        nutshell, it codes differences instead of coding all absolute
        pixels. MPEG uses an 2-D IDCT in the video decoder, and a 1-D
        IDCT in the audio decoder.
        </para> </glossdef>
      </glossentry>

      <glossentry>
        <glossterm> <acronym> LPCM </acronym> :
        Linear Pulse Code Modulation </glossterm>
        <glossdef> <para> LPCM is a non-compressed audio encoding,
        available in DVDs.
        </para> </glossdef>
      </glossentry>

      <glossentry>
        <glossterm> <acronym> MPEG </acronym> :
        Motion Picture Expert Group </glossterm>
        <glossdef> <para> Specification describing a standard syntax of files
        and streams for carrying motion pictures and sound. MPEG-1 is
        ISO/IEC 11172 (three books), MPEG-2 is ISO/IEC 13818. MPEG-4
        version 1 is out, but this player doesn't support it. It is
        relatively easy to get an MPEG specification from ISO or
        equivalent, drafts are even freely available on the Internet.
        </para> </glossdef>
      </glossentry>

      <glossentry>
        <glossterm> <acronym> P </acronym> (predictive) picture </glossterm>
        <glossdef> <para> Picture decoded from its own data <emphasis>
        and </emphasis> data from a reference picture, which is the
        last I or P picture received.
        </para> </glossdef>
      </glossentry>

      <glossentry>
        <glossterm> <acronym> PES </acronym> :
        Packetized Elementary Stream </glossterm>
        <glossdef> <para> A chunk of elementary stream. It often corresponds
        to a logical boundary of the stream (for instance a picture
        change), but it is not mandatory. PES carry the synchronization
        information.
        </para> </glossdef>
      </glossentry>

      <glossentry>
        <glossterm> <acronym> PTS </acronym> :
        Presentation Time Stamp </glossterm>
        <glossdef> <para> Time at which the content of a PES packet is supposed
        to be played. It is used for A/V synchronization.
        </para> </glossdef>
      </glossentry>

      <glossentry>
        <glossterm> <acronym> PS </acronym> : Program Stream </glossterm>
        <glossdef> <para> File format obtained by concatenating PES packets
        and inserting Pack headers and System headers (for timing
        information). It is the only format described in MPEG-1, and
        the most used format in MPEG-2.
        </para></glossdef>
      </glossentry>

      <glossentry>
        <glossterm> <acronym> RGB </acronym> : Red Green Blue </glossterm>
        <glossdef> <para> Picture format where every pixel is calculated in a
        vector space whose coordinates are red, green, and blue. This
        is natively used by monitors and TV sets.
        </para> </glossdef>
      </glossentry>

      <glossentry>
        <glossterm> <acronym> SPU </acronym> : Sub Picture Unit </glossterm>
        <glossdef> <para> Picture format allowing to do overlays, such
        as subtitles or DVD menus.
        </para> </glossdef>
      </glossentry>

      <glossentry>
        <glossterm> <acronym> SCR </acronym> :
        System Clock Reference </glossterm>
        <glossdef> <para> Time at which the first byte of a particular pack
        is supposed to be fed to the decoder. VLC uses it to read the
        stream at the right pace.
        </para> </glossdef>
      </glossentry>

      <glossentry>
        <glossterm> <acronym> SDL </acronym> :
        Simple DirectMedia Layer </glossterm>
        <glossdef> <para> <ulink url="http://www.libsdl.org/"> SDL </ulink>
        is a cross-platform multimedia library
        designed to provide fast access to the video framebuffer and
        the audio device. Since version 1.1, it features YUV overlay
        support, which reduces decoding times by a third.
        </para> </glossdef>
      </glossentry>

      <glossentry>
        <glossterm> <acronym> TS </acronym> : Transport Stream </glossterm>
        <glossdef> <para> Stream format constituted of fixed size packets
        (188 bytes), defined by ISO/IEC 13818-1. PES packets are
        split among several TS packets.
        A TS stream can contain several programs. It is used in
        streaming applications, in particular for satellite or cable
        broadcasting.
        </para> </glossdef>
      </glossentry>

      <glossentry>
        <glossterm> <acronym> YUV </acronym> :
        Luminance/Chrominance </glossterm>
        <glossdef> <para> Picture format with 1 coordinate of luminance (black
        and white) and 2 coordinates of chrominance (red and blue).
        This is natively used by PAL video system, for backward
        compatibility with older black and white TV sets. Your eyes
        distinguish luminance variations much better than chrominance
        variations, so you can compress them more. It is therefore
        well suited for image compression, and is used by the MPEG
        specification. The RGB picture can be obtained from the YUV one
        via a costly matrix multiply operation, which can be done in
        hardware by most modern video cards ("YUV acceleration").
        </para> </glossdef>
      </glossentry>
    </glossary>