annotate DOCS/tech/general.txt @ 878:89c975198f61

ehh.
author gabucino
date Fri, 25 May 2001 17:37:12 +0000
parents 3e94ca839def
children fadb8eeff7a8
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 :)
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
76 The timing is solved odd, since it has/recommended to be done differently
138
5f2805a2d5de even more cosmetics
gabucino
parents: 136
diff changeset
77 for each of the formats, and sometimes can be done in many ways.
877
3e94ca839def *** empty log message ***
gabucino
parents: 876
diff changeset
78
878
gabucino
parents: 877
diff changeset
79 There are float variables called a_frame and v_frame, they store
gabucino
parents: 877
diff changeset
80 the just played A/V position in seconds.
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
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
132 audio bytes belong to one second of frames.
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
133 Of course this doesn't always work... why it should :)
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
134 So I emulate the MPEG's PTS/sector method on AVI, that is the
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
135 AVI parser calculates a fake PTS for every read chunk, decided by
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
136 the type of the frames. This is how my timing is done. And sometimes
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
137 this works better.
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
138
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
139 In AVI, usually there is a bigger piece of audio stored first, then
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
140 comes the video. This needs to be calculated into the delay, this is
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
141 called "Initial PTS delay".
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
142 Of course there are 2 of them, one is stored in the header and not
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
143 really used :) the other isn't stored anywhere, this can only be
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
144 measured...
876
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
145
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
146 3.a. audio playback:
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
147 Some words on audio playback:
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
148 Not the playing is hard, but:
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
149 1. knowing when to write into the buffer, without blocking
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
150 2. knowing how much was played of what we wrote into
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
151 The first is needed for audio decoding, and to keep the buffer
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
152 full (so the audio will never skip). And the second is needed for
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
153 correct timing, because some soundcards delay even 3-7 seconds,
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
154 which can't be forgotten about.
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
155 To solve this, the OSS gives several possibilities:
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
156 - ioctl(SNDCTL_DSP_GETODELAY): tells how many unplayed bytes are in
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
157 the soundcard's buffer -> perfect for timing, but not all drivers
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
158 support it :(
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
159 - ioctl(SNDCTL_DSP_GETOSPACE): tells how much can we write into the
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
160 soundcard's buffer, without blocking. If the driver doesn't
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
161 support GETODELAY, we can use this to know how much the delay is.
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
162 - select(): should tell if we can write into the buffer without
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
163 blocking. Unfortunately it doesn't say how much we could :((
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
164 Also, doesn't/badly works with some drivers.
1f26877717f1 *** empty log message ***
gabucino
parents: 551
diff changeset
165 Only used if none of the above works.
132
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
166
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
167 4. Codecs. They are separate libs.
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
168 For example libac3, libmpeg2, xa/*, alaw.c, opendivx/*, loader, mp3lib.
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
169 mplayer.c calls them if a piece of audio or video needs to be played.
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
170 (see the beginning of 3.)
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
171 And they call the appropriate demuxer, to get the compressed data.
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
172 (see 2.)
551
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
173 We have to pass the appropriate stream header as parameter (sh_audio/
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
174 sh_video), this should contain all the needed info for decoding
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
175 (the demuxer too: sh->ds).
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
176 The codecs' seprating is underway, the audio is already done, the video is
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
177 work-in-progress. The aim is that mplayer.c won't have to know
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
178 which are the codecs and how to use 'em, instead it should call
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
179 an init/decode audio/video function.
132
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
180
551
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
181 5. libvo: this displays the frame.
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
182 The constants for different pixelformats are defined in img_format.h,
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
183 their usage is mandatory.
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
184
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
185 Each vo driver _has_ to implement these:
132
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
186
551
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
187 query_format() - queries if a given pixelformat is supported.
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
188 return value: flags:
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
189 0x1 - supported (by hardware or conversion)
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
190 0x2 - supported (by hardware, without conversion)
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
191 0x4 - sub/osd supported (has draw_alpha)
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
192 IMPORTANT: it's mandatorial that every vo driver support the YV12 format,
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
193 and one (or both) of BGR15 and BGR24, with conversion, if needed.
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
194 If these aren't supported, not every codec will work! The mpeg codecs
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
195 can output only YV12, and the older win32 DLLs only 15 and 24bpp.
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
196 There is a fast MMX-using 15->16bpp converter, so it's not a
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
197 significant speed-decrease!
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
198
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
199 The BPP table, if the driver can't change bpp:
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
200 current bpp has to accept these
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
201 15 15
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
202 16 15,16
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
203 24 24
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
204 24,32 24,32
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
205
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
206 If it can change bpp (for example DGA 2, fbdev, svgalib), then if possible
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
207 we have to change to the desired bpp. If the hardware doesn't support,
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
208 we have to change to the one closest to it, and do conversion!
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
209
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
210 init() - this is called before displaying of the first frame -
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
211 initializing buffers, etc.
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
212
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
213 draw_slice(): this displays YV12 pictures (3 planes, one full sized that
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
214 contains brightness (Y), and 2 quarter-sized which the colour-info
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
215 (U,V). MPEG codecs (libmpeg2, opendivx) use this. This doesn't have
132
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
216 to display the whole frame, only update small parts of it.
551
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
217
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
218 draw_frame(): this is the older interface, this displays only complete
133
1cb4ee3b4890 fixed small typos
arpi_esp
parents: 132
diff changeset
219 frames, and can do only packed format (YUY2, RGB/BGR).
132
642d64c1cc33 translation by Gabucino
gabucino
parents:
diff changeset
220 Win32 codecs use this (DivX, Indeo, etc).
551
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
221
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
222 draw_alpha(): this displays subtitles and OSD.
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
223 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
224 but a callback-style stuff. The flip_page() has to call
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
225 vo_draw_text(), so that it passes the size of the screen and the
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
226 corresponding draw_alpha() implementation for the pixelformat
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
227 (function pointer). The vo_draw_text() checks the characters to draw,
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
228 and calls draw_alpha() for each.
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
229 As a help, osd.c contains draw_alpha for each pixelformats, use this
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
230 if possible!
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
231
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
232 flip_page(): this is called after each frame, this diplays the buffer for
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
233 real. This is 'swapbuffers' when double-buffering.
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
234
e6263c6d377a kommit, kommit
gabucino
parents: 404
diff changeset
235