annotate DOCS/tech/general.txt @ 5146:1941807a2188

libvo flags
author alex
date Sat, 16 Mar 2002 20:57:53 +0000
parents 84296c3c6ba4
children d8fd45a16beb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
132
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
1 So, I'll describe how this stuff works.
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
2
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
3 The main modules:
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
4
876
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
5 1. streamer.c: this is the input layer, this reads the file or the VCD or
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
6 stdin. what it has to know: appropriate buffering by sector, seek, skip
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
7 functions, reading by bytes, or blocks with any size. The stream_t
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
8 structure describes the input stream, file/device.
132
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
9
136
eaec3aac23b7 a little correction
gabucino
parents: 133
diff changeset
10 2. demuxer.c: this does the demultiplexing of the input to audio and video
132
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
11 channels, and their reading by buffered packages.
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
12 The demuxer.c is basically a framework, which is the same for all the
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
13 input formats, and there are parsers for each of them (mpeg-es,
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
14 mpeg-ps, avi, avi-ni, asf), these are in the demux_*.c files.
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
15 The structure is the demuxer_t. There is only one demuxer.
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
16
551
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
17 2.a. demux_packet_t, that is DP.
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
18 Contains one chunk (avi) or packet (asf,mpg). They are stored in memory as
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
19 in chained list, cause of their different size.
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
20
876
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
21 2.b. demuxer stream, that is DS.
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
22 Struct: demux_stream_t
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
23 Every channel (a/v) has one. This contains the packets for the stream
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
24 (see 2.a). For now, there can be 3 for each demuxer :
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
25 - audio (d_audio)
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
26 - video (d_video)
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
27 - DVD subtitle (d_dvdsub)
132
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
28
551
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
29 2.c. stream header. There are 2 types (for now): sh_audio_t and sh_video_t
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
30 This contains every parameter essential for decoding, such as input/output
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
31 buffers, chosen codec, fps, etc. There are each for every stream in
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
32 the file. At least one for video, if sound is present then another,
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
33 but if there are more, then there'll be one structure for each.
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
34 These are filled according to the header (avi/asf), or demux_mpg.c
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
35 does it (mpg) if it founds a new stream. If a new stream is found,
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
36 the ====> Found audio/video stream: <id> messages is displayed.
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
37
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
38 The chosen stream header and its demuxer are connected together
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
39 (ds->sh and sh->ds) to simplify the usage. So it's enough to pass the
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
40 ds or the sh, depending on the function.
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
41
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
42 For example: we have an asf file, 6 streams inside it, 1 audio, 5
876
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
43 video. During the reading of the header, 6 sh structs are created, 1
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
44 audio and 5 video. When it starts reading the packet, it chooses the
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
45 stream for the first found audio & video packet, and sets the sh
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
46 pointers of d_audio and d_video according to them. So later it reads
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
47 only these streams. Of course the user can force choosing a specific
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
48 stream with
551
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
49 -vid and -aid switches.
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
50 A good example for this is the DVD, where the english stream is not
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
51 always the first, so every VOB has different language :)
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
52 That's when we have to use for example the -aid 128 switch.
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
53
132
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
54 Now, how this reading works?
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
55 - demuxer.c/demux_read_data() is called, it gets how many bytes,
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
56 and where (memory address), would we like to read, and from which
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
57 DS. The codecs call this.
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
58 - this checks if the given DS's buffer contains something, if so, it
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
59 reads from there as much as needed. If there isn't enough, it calls
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
60 ds_fill_buffer(), which:
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
61 - checks if the given DS has buffered packages (DP's), if so, it moves
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
62 the oldest to the buffer, and reads on. If the list is empty, it
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
63 calls demux_fill_buffer() :
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
64 - this calls the parser for the input format, which reads the file
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
65 onward, and moves the found packages to their buffers.
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
66 Well it we'd like an audio package, but only a bunch of video
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
67 packages are available, then sooner or later the:
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
68 DEMUXER: Too many (%d in %d bytes) audio packets in the buffer
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
69 error shows up.
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
70
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
71 So everything is ok 'till now, I want to move them to a separate lib.
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
72
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
73 Now, go on:
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
74
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
75 3. mplayer.c - ooh, he's the boss :)
1649
5b52297e559c typos, small fixes
arpi
parents: 1500
diff changeset
76 Its main purpose is connecting the other modules, and maintaining A/V
1500
526047bdda07 *** empty log message ***
gabucino
parents: 994
diff changeset
77 sync.
877
3e94ca839def *** empty log message ***
gabucino
parents: 876
diff changeset
78
1649
5b52297e559c typos, small fixes
arpi
parents: 1500
diff changeset
79 The given stream's actual position is in the 'timer' field of the
5b52297e559c typos, small fixes
arpi
parents: 1500
diff changeset
80 corresponding stream header (sh_audio / sh_video).
876
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
81
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
82 The structure of the playing loop :
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
83 while(not EOF) {
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
84 fill audio buffer (read & decode audio) + increase a_frame
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
85 read & decode a single video frame + increase v_frame
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
86 sleep (wait until a_frame>=v_frame)
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
87 display the frame
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
88 apply A-V PTS correction to a_frame
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
89 check for keys -> pause,seek,...
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
90 }
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
91
132
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
92 When playing (a/v), it increases the variables by the duration of the
876
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
93 played a/v.
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
94 - with audio this is played bytes / sh_audio->o_bps
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
95 Note: i_bps = number of compressed bytes for one second of audio
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
96 o_bps = number of uncompressed bytes for one second of audio
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
97 (this is = bps*samplerate*channels)
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
98 - with video this is usually == 1.0/fps, but I have to note that
138
5f2805a2d5de even more cosmetics
gabucino
parents: 136
diff changeset
99 fps doesn't really matters at video, for example asf doesn't have that,
5f2805a2d5de even more cosmetics
gabucino
parents: 136
diff changeset
100 instead there is "duration" and it can change per frame.
132
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
101 MPEG2 has "repeat_count" which delays the frame by 1-2.5 ...
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
102 Maybe only AVI and MPEG1 has fixed fps.
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
103
138
5f2805a2d5de even more cosmetics
gabucino
parents: 136
diff changeset
104 So everything works right until the audio and video are in perfect
132
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
105 synchronity, since the audio goes, it gives the timing, and if the
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
106 time of a frame passed, the next frame is displayed.
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
107 But what if these two aren't synchronized in the input file?
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
108 PTS correction kicks in. The input demuxers read the PTS (presentation
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
109 timestamp) of the packages, and with it we can see if the streams
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
110 are synchronized. Then MPlayer can correct the a_frame, within
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
111 a given maximal bounder (see -mc option). The summary of the
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
112 corrections can be found in c_total .
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
113
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
114 Of course this is not everything, several things suck.
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
115 For example the soundcards delay, which has to be corrected by
876
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
116 MPlayer! The audio delay is the sum of all these:
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
117 - bytes read since the last timestamp:
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
118 t1 = d_audio->pts_bytes/sh_audio->i_bps
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
119 - if Win32/ACM then the bytes stored in audio input buffer
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
120 t2 = a_in_buffer_len/sh_audio->i_bps
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
121 - uncompressed bytes in audio out buffer
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
122 t3 = a_buffer_len/sh_audio->o_bps
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
123 - not yet played bytes stored in the soundcard's (or DMA's) buffer
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
124 t4 = get_audio_delay()/sh_audio->o_bps
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
125
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
126 From this we can calculate what PTS we need for the just played
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
127 audio, then after we compare this with the video's PTS, we have
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
128 the difference!
132
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
129
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
130 Life didn't get simpler with AVI. There's the "official" timing
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
131 method, the BPS-based, so the header contains how many compressed
1500
526047bdda07 *** empty log message ***
gabucino
parents: 994
diff changeset
132 audio bytes or chunks belong to one second of frames.
526047bdda07 *** empty log message ***
gabucino
parents: 994
diff changeset
133 In the AVI stream header there are 2 important fields, the
526047bdda07 *** empty log message ***
gabucino
parents: 994
diff changeset
134 dwSampleSize, and dwRate/dwScale pairs:
526047bdda07 *** empty log message ***
gabucino
parents: 994
diff changeset
135 - If the dwSampleSize is 0, then it's VBR stream, so its bitrate
526047bdda07 *** empty log message ***
gabucino
parents: 994
diff changeset
136 isn't constant. It means that 1 chunk stores 1 sample, and
526047bdda07 *** empty log message ***
gabucino
parents: 994
diff changeset
137 dwRate/dwScale gives the chunks/sec value.
526047bdda07 *** empty log message ***
gabucino
parents: 994
diff changeset
138 - If the dwSampleSize is >0, then it's constant bitrate, and the
526047bdda07 *** empty log message ***
gabucino
parents: 994
diff changeset
139 time can be measured this way: time = (bytepos/dwSampleSize) /
526047bdda07 *** empty log message ***
gabucino
parents: 994
diff changeset
140 (dwRate/dwScale) (so the sample's number is divided with the
526047bdda07 *** empty log message ***
gabucino
parents: 994
diff changeset
141 samplerate). Now the audio can be handled as a stream, which can
526047bdda07 *** empty log message ***
gabucino
parents: 994
diff changeset
142 be cut to chunks, but can be one chunk also.
132
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
143
1500
526047bdda07 *** empty log message ***
gabucino
parents: 994
diff changeset
144 The other method can be used only for interleaved files: from
526047bdda07 *** empty log message ***
gabucino
parents: 994
diff changeset
145 the order of the chunks, a timestamp (PTS) value can be calculated.
526047bdda07 *** empty log message ***
gabucino
parents: 994
diff changeset
146 The PTS of the video chunks are simple: chunk number * fps
526047bdda07 *** empty log message ***
gabucino
parents: 994
diff changeset
147 The audio is the same as the previous video chunk was.
526047bdda07 *** empty log message ***
gabucino
parents: 994
diff changeset
148 We have to pay attention to the so called "audio preload", that is,
526047bdda07 *** empty log message ***
gabucino
parents: 994
diff changeset
149 there is a delay between the audio and video streams. This is
526047bdda07 *** empty log message ***
gabucino
parents: 994
diff changeset
150 usually 0.5-1.0 sec, but can be totally different.
526047bdda07 *** empty log message ***
gabucino
parents: 994
diff changeset
151 The exact value was measured until now, but now the demux_avi.c
526047bdda07 *** empty log message ***
gabucino
parents: 994
diff changeset
152 handles it: at the audio chunk after the first video, it calculates
526047bdda07 *** empty log message ***
gabucino
parents: 994
diff changeset
153 the A/V difference, and take this as a measure for audio preload.
876
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
154
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
155 3.a. audio playback:
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
156 Some words on audio playback:
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
157 Not the playing is hard, but:
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
158 1. knowing when to write into the buffer, without blocking
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
159 2. knowing how much was played of what we wrote into
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
160 The first is needed for audio decoding, and to keep the buffer
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
161 full (so the audio will never skip). And the second is needed for
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
162 correct timing, because some soundcards delay even 3-7 seconds,
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
163 which can't be forgotten about.
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
164 To solve this, the OSS gives several possibilities:
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
165 - ioctl(SNDCTL_DSP_GETODELAY): tells how many unplayed bytes are in
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
166 the soundcard's buffer -> perfect for timing, but not all drivers
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
167 support it :(
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
168 - ioctl(SNDCTL_DSP_GETOSPACE): tells how much can we write into the
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
169 soundcard's buffer, without blocking. If the driver doesn't
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
170 support GETODELAY, we can use this to know how much the delay is.
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
171 - select(): should tell if we can write into the buffer without
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
172 blocking. Unfortunately it doesn't say how much we could :((
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
173 Also, doesn't/badly works with some drivers.
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
174 Only used if none of the above works.
132
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
175
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
176 4. Codecs. They are separate libs.
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
177 For example libac3, libmpeg2, xa/*, alaw.c, opendivx/*, loader, mp3lib.
1500
526047bdda07 *** empty log message ***
gabucino
parents: 994
diff changeset
178
526047bdda07 *** empty log message ***
gabucino
parents: 994
diff changeset
179 mplayer.c doesn't call the directly, but through the dec_audio.c and
526047bdda07 *** empty log message ***
gabucino
parents: 994
diff changeset
180 dec_video.c files, so the mplayer.c doesn't have to know anything about
526047bdda07 *** empty log message ***
gabucino
parents: 994
diff changeset
181 the codec.
132
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
182
551
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
183 5. libvo: this displays the frame.
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
184 The constants for different pixelformats are defined in img_format.h,
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
185 their usage is mandatory.
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
186
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
187 Each vo driver _has_ to implement these:
132
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
188
551
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
189 IMPORTANT: it's mandatorial that every vo driver support the YV12 format,
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
190 and one (or both) of BGR15 and BGR24, with conversion, if needed.
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
191 If these aren't supported, not every codec will work! The mpeg codecs
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
192 can output only YV12, and the older win32 DLLs only 15 and 24bpp.
1649
5b52297e559c typos, small fixes
arpi
parents: 1500
diff changeset
193 There is a fast MMX-optimized 15->16bpp converter, so it's not a
551
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
194 significant speed-decrease!
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
195
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
196 The BPP table, if the driver can't change bpp:
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
197 current bpp has to accept these
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
198 15 15
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
199 16 15,16
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
200 24 24
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
201 24,32 24,32
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
202
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
203 If it can change bpp (for example DGA 2, fbdev, svgalib), then if possible
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
204 we have to change to the desired bpp. If the hardware doesn't support,
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
205 we have to change to the one closest to it, and do conversion!
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
206
4588
84296c3c6ba4 applied David Holm's patch
gabucino
parents: 4582
diff changeset
207 control() - sends control requests to the device
84296c3c6ba4 applied David Holm's patch
gabucino
parents: 4582
diff changeset
208 VOCTRL_QUERY_VAA - this is used by the vidix extension
84296c3c6ba4 applied David Holm's patch
gabucino
parents: 4582
diff changeset
209 this is used by the vidix extension to fill a vo_vaa_t struct,
84296c3c6ba4 applied David Holm's patch
gabucino
parents: 4582
diff changeset
210 I do not know how this works since I'm not the author of this
84296c3c6ba4 applied David Holm's patch
gabucino
parents: 4582
diff changeset
211
84296c3c6ba4 applied David Holm's patch
gabucino
parents: 4582
diff changeset
212 VOCTRL_QUERY_FORMAT - queries if a given pixelformat is supported.
84296c3c6ba4 applied David Holm's patch
gabucino
parents: 4582
diff changeset
213 return value: flags:
5146
1941807a2188 libvo flags
alex
parents: 4588
diff changeset
214 0x1 - supported
1941807a2188 libvo flags
alex
parents: 4588
diff changeset
215 0x2 - supported without conversion (define 0x1 too!)
4588
84296c3c6ba4 applied David Holm's patch
gabucino
parents: 4582
diff changeset
216 0x4 - sub/osd supported (has draw_alpha)
84296c3c6ba4 applied David Holm's patch
gabucino
parents: 4582
diff changeset
217 0x8 - hardware handles subpics
84296c3c6ba4 applied David Holm's patch
gabucino
parents: 4582
diff changeset
218 0x100 - driver/hardware handles timing (blocking)
84296c3c6ba4 applied David Holm's patch
gabucino
parents: 4582
diff changeset
219
84296c3c6ba4 applied David Holm's patch
gabucino
parents: 4582
diff changeset
220 VOCTRL_RESET - reset the video device
84296c3c6ba4 applied David Holm's patch
gabucino
parents: 4582
diff changeset
221 This is sent on seeking and similar and is useful if you are
84296c3c6ba4 applied David Holm's patch
gabucino
parents: 4582
diff changeset
222 using a device which prebuffers frames that need to flush them
84296c3c6ba4 applied David Holm's patch
gabucino
parents: 4582
diff changeset
223 before refilling audio/video buffers.
84296c3c6ba4 applied David Holm's patch
gabucino
parents: 4582
diff changeset
224
551
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
225 init() - this is called before displaying of the first frame -
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
226 initializing buffers, etc.
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
227
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
228 draw_slice(): this displays YV12 pictures (3 planes, one full sized that
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
229 contains brightness (Y), and 2 quarter-sized which the colour-info
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
230 (U,V). MPEG codecs (libmpeg2, opendivx) use this. This doesn't have
132
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
231 to display the whole frame, only update small parts of it.
551
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
232
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
233 draw_frame(): this is the older interface, this displays only complete
133
1cb4ee3b4890 fixed small typos
arpi_esp
parents: 132
diff changeset
234 frames, and can do only packed format (YUY2, RGB/BGR).
132
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
235 Win32 codecs use this (DivX, Indeo, etc).
551
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
236
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
237 draw_alpha(): this displays subtitles and OSD.
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
238 It's a bit tricky to use it, since it's not a part of libvo API,
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
239 but a callback-style stuff. The flip_page() has to call
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
240 vo_draw_text(), so that it passes the size of the screen and the
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
241 corresponding draw_alpha() implementation for the pixelformat
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
242 (function pointer). The vo_draw_text() checks the characters to draw,
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
243 and calls draw_alpha() for each.
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
244 As a help, osd.c contains draw_alpha for each pixelformats, use this
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
245 if possible!
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
246
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
247 flip_page(): this is called after each frame, this diplays the buffer for
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
248 real. This is 'swapbuffers' when double-buffering.
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
249
986
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
250 6. libao2: this control audio playing
551
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
251
986
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
252 As in libvo (see 5.) also here are some drivers, based on the same API:
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
253
991
dab1e9e67d8c 1 typo corrected (any more, atmos?)
gabucino
parents: 986
diff changeset
254 static int control(int cmd, int arg);
986
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
255 This is for reading/setting driver-specific and other special parameters.
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
256 Not really used for now.
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
257
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
258 static int init(int rate,int channels,int format,int flags);
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
259 The init of driver, opens device, sets sample rate, channels, sample format
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
260 parameters.
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
261 Sample format: usually AFMT_S16_LE or AFMT_U8, for more definitions see
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
262 dec_audio.c and linux/soundcards.h files!
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
263
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
264 static void uninit();
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
265 Guess what.
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
266 Ok I help: closes the device, not (yet) called when exit.
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
267
994
84a887d85203 huje gabu :)
atmosfear
parents: 991
diff changeset
268 static void reset();
986
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
269 Resets device. To be exact, it's for deleting buffers' contents,
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
270 so after reset() the previously received stuff won't be output.
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
271 (called if pause or seek)
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
272
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
273 static int get_space();
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
274 Returns how many bytes can be written into the audio buffer without
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
275 blocking (making caller process wait). If the buffer is (nearly) full,
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
276 has to return 0!
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
277 If it never gives 0, MPlayer won't work!
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
278
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
279 static int play(void* data,int len,int flags);
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
280 Plays a bit of audio, which is received throught the "data" memory area, with
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
281 a size of "len". The "flags" isn't used yet. It has to copy the data, because
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
282 they can be overwritten after the call is made. Doesn't really have to use
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
283 all the bytes, it has to give back how many have been used (copied to
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
284 buffer).
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
285
4582
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
286 static float get_delay();
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
287 Returns how long time it will take to play the data currently in the
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
288 output buffer. Be exact, if possible, since the whole timing depends
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
289 on this! In the worst case, return the maximum delay.
986
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
290
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
291 !!! Because the video is synchronized to the audio (card), it's very important
4582
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
292 !!! that the get_space and get_delay functions are correctly implemented!
986
fadb8eeff7a8 commitus interruptus
gabucino
parents: 878
diff changeset
293
4582
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
294 6.a audio plugins
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
295 Audio plugins are used for processing the audio data before it
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
296 reaches the soundcard driver. A plugin can change the following
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
297 aspects of the audio data stream:
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
298 1. Sample format
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
299 2. Sample rate
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
300 3. Number of channels
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
301 4. The data itself (i.e. filtering and other sound effects)
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
302 5. The delay (almost all plugins does this)
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
303 The plugin interface is implemented as a pseudo device driver with
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
304 the catchy name "plugin". The plugins are executed sequentially
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
305 ordered by the "-aop list=plugin1,plugin2,..." command line switch.
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
306 To add plugins add an entry in audio_plugin.h the makefile and
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
307 create a source file named "pl_whatever.c". Input parameters are
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
308 added to audio_plugin.h and to cfg-mplayer.h. A good starting point
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
309 for writing plugins is pl_delay.c. Below is a description of what
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
310 the functions does:
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
311
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
312 static int control(int cmd, int arg);
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
313 This is for reading/setting plugin-specific and other special
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
314 parameters and can be used for keyboard input for example. All
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
315 plugins bust respond to cmd=AOCONTROL_PLUGIN_SET_LEN which is part
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
316 of the initialization of the plugin. When this command is received
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
317 the parameter pl_delay.len will contain the maximum size of data the
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
318 plugin can produce. This can be used for calculating and allocating
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
319 buffer space for the plugin. Before the function exits the parameter
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
320 pl_delay.len must be set to the maximum data size the plugin can
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
321 receive. Return CONTROL_OK for success and CONTROL_ERROR for fail,
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
322 other control codes are found in audio_out.h.
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
323
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
324 static int init();
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
325 This function is for initializing the plugin, it is called once
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
326 before the playing is started. In this function the plugin can read
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
327 AND write to the ao_plugin_data struct to determine and set input
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
328 and output parameters. It is important to write to the
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
329 ao_plugin_data.sz_mult and ao_plugin_data.delay_fix parameters if
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
330 the plugin changes the data size or adds delay. Return 0 for fail
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
331 and 1 for success.
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
332
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
333 static void uninit()
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
334 Called before mplayer exits. Used for deallocating dynamic buffers.
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
335
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
336 static void reset()
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
337 Called during reset can be used to empty buffers. Mplayer calls this
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
338 function when pause is pressed.
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
339
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
340 static int play()
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
341 Called for every block of audio data sent through the plugin. This
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
342 function should be optimized for speed. The incoming data is found
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
343 in ao_plugin_data.data having length ao_plugin_data.len. These two
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
344 parameters should be changed by the plugin. Return 1 for success and
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
345 0 for fail.
9c13e907f284 applied patch from Andres Johansson
gabucino
parents: 4161
diff changeset
346