comparison DOCS/tech/general.txt @ 133:1cb4ee3b4890

fixed small typos
author arpi_esp
date Sun, 18 Mar 2001 14:27:28 +0000
parents 642d64c1cc33
children eaec3aac23b7
comparison
equal deleted inserted replaced
132:642d64c1cc33 133:1cb4ee3b4890
105 mplayer.c calls them if a piece of audio or video needs to be played. 105 mplayer.c calls them if a piece of audio or video needs to be played.
106 (see the beginning of 3.) 106 (see the beginning of 3.)
107 And they call the appropriate demuxer, to get the compressed data. 107 And they call the appropriate demuxer, to get the compressed data.
108 (see 2.) 108 (see 2.)
109 109
110 5.a Codec controller: this is the greates hack in the whole :) 110 5.a Codec controller: this is the greatest hack in the whole :)
111 The libmpeg2 is so unstable, that I can't believe it. 111 The libmpeg2 is so unstable, that I can't believe it.
112 Of course I don't mean it bullshit :) rather it only accepts 112 Of course I don't mean it bullshit :) rather it only accepts
113 totally perfect, errorfree streams. If it founds error, it's 113 totally perfect, errorfree streams. If it founds error, it's
114 just a segfault ;) And don't start laughing, this is great this way, 114 just a segfault ;) And don't start laughing, this is great this way,
115 from the view of speed it would be 50-100% slower if stuffed full with 115 from the view of speed it would be 50-100% slower if stuffed full with
146 5.a draw_slice(): this displays YV12 pictures (3 frames, a full sized which 146 5.a draw_slice(): this displays YV12 pictures (3 frames, a full sized which
147 contains brightness, and 2 with 1/4 sizes, which contain the colour 147 contains brightness, and 2 with 1/4 sizes, which contain the colour
148 info). MPEG codecs (libmpeg2, opendivx) use this. This doesn't have 148 info). MPEG codecs (libmpeg2, opendivx) use this. This doesn't have
149 to display the whole frame, only update small parts of it. 149 to display the whole frame, only update small parts of it.
150 5.b draw_frame(): this is the older interface, this displays only complete 150 5.b draw_frame(): this is the older interface, this displays only complete
151 frames, and can do only packed format (YUV2, RGB/BGR). 151 frames, and can do only packed format (YUY2, RGB/BGR).
152 Win32 codecs use this (DivX, Indeo, etc). 152 Win32 codecs use this (DivX, Indeo, etc).