]> git.sesse.net Git - vlc/blob - ChangeLog
* ./configure.in: added --enable-intfwin to enable the win32 interface and
[vlc] / ChangeLog
1 #===================#
2 # ChangeLog for vlc #
3 #===================#
4
5 HEAD
6
7   * ./configure.in: added --enable-intfwin to enable the win32 interface and
8     --with-bcbuilder to tell make where to find Borland C++ Builder.
9   * ./plugins/win32/intfwin.bpr: we now build intfwin.so at the right place.
10   * ./plugins/win32/Makefile: intfwin.so can be built using commandline.
11   * ./configure.in, ./include/threads.h, ./include/common.h: a custom defs.h
12     file isn't needed for the intfwin plugin anymore.
13   * ./INSTALL.win32: updated compilation instructions for the intfwin plugin.
14   * ./AUTHORS: added ipkiss.
15   * ./plugins/win32/mainframe.cpp: disabled the "hide interface" menu
16     item, not yet implemented.
17   * ./plugins/win32/about.dfm: replaced the outdated author list with a
18     "VideoLAN Team" entry.
19   * ./plugins/gtk/gtk.glade, plugins/gtk/gnome.glade, ./plugins/kde/kde.cpp:
20     replaced the outdated author list with a "VideoLAN Team" entry.
21   * ./debian/rules, ./debian/control: deactivated the vlc-kde package because
22     it does not work, and removed the vlc-a52 package because liba52 is
23     statically linked into vlc.
24   * ./debian/control: added more helpful package descriptions.
25   * ALL: changed version to 0.3.0. Yeah, it's coming.
26   * ./Makefile: fixed make dist.
27   * ./src/video_output/video_output.c: fixed a vout4 image starvation bug.
28   * ./plugins/dvd/dvd.c: we look for libdvdcss.so.2 as well as -.so.1.
29   * ./configure.in: BSD/OS fixes thanks to Steven M. Schultz.
30   * ./Makefile: renamed the `snapshot' rule to `dist'.
31   * ./Makefile: removed the `snapshot-nocss' rule which isn't needed anymore.
32   * ./Makefile.modules: modules now depend on Makefile.opts.
33   * ./configure.in: added (hopefully) explicit messages on how to get
34     libdvdcss and link vlc with it.
35   * ./plugins/dvdread/input_dvdread.c: removed inclusion of dvd_udf.h.
36   * ./plugins/win32/*: Added management for secondary config dialogs
37   * ./plugins/ogg/*: added preliminary files for an Ogg/Vorbis decoder a
38     contributor is currently working on.
39   * ALL: removed libdvdcss from the vlc tree.
40   * ALL: removed libdvdread from the vlc tree.
41   * ./acconfig.h: removed this file.
42   * ./plugins/dvd/dummy_dvdcss.c: merged this file into dvd.c.
43   * ./AUTHORS: moved a few gentlemen to the libdvdcss AUTHORS file.
44   * ./plugins/gtk/gtk_callbacks.c: use the dvd_device config option.
45   * ./po/ja.po: added Japanese translation from Fumio Nakayama
46     <endymion@ca2.so-net.ne.jp>.
47   * ./plugins/gtk/gtk_callbacks.c: fixed disc ejection code.
48   * ./include/threads.h: new pthread implementation for WinNT/2K/XP. This
49     implementation shouldn't be subject to race conditions as it is using
50     SignalObjectAndWait() from the Win32 API. As this should be somehow slower
51     than the old method (still used on Win9x), you can specify that you want
52     to use the old method with the "fast_pthread" config option.
53   * ./include/videolan/vlc.h: added a new p_main_sys global variable. This
54     variable is a pointer to an OS specific structure which is defined in
55     *_specific.h. This structure can be filled by the already existing
56     System_Init() function and is a nice way to avoid too many #ifdefs.
57   * ./include/defs.h.in: got rid of the DVD_DEVICE macro. We now use the
58     dvd_device config option. This creates a small memory leak as we don't free
59     the string obtained from config_GetPszVariable, but I think we can live
60     with it for now.
61   * ./configure.in: the SSE plugins are disabled on the mingw32 build as they
62     don't work (because memalign is not implemented on win32, and malloc only
63     aligns on an 8 bytes boundary).
64   * ./INSTALL.win32: fixed a small mistake.
65   * ./include/config.h: fixed config directory name for windows.
66   * ./plugins/win32: the network dialog now respects the preferences settings.
67   * ./src/input/input_ext-plugins.c: compilation fix. :-ppppp
68   * ./plugins/memcpy/fastmemcpy.h: AltiVec-enabled version of fastmemcpy.
69   * ./plugins/macosx/vout_macosx.c: use ImageBuffer instead of ScreenBuffer in
70     OS X video output (should be faster).
71   * ./src/interface/main.c: check that channels have been created before
72     the call to network_ChannelJoin.
73   * ./plugins/win32/*: fixed a few bugs in the preferences.
74   * ./plugins/win32/*: better auto-resizing of the main window.
75   * ./plugins/win32/*: the disc dialog now respects the preferences settings.
76   * ./src/misc/configuration.c: small compilation fix.
77   * ./plugins/beos/vout_beos.cpp: added a test for the nooverlay option.
78   * ./include/config.h: changed directory of the config file for BeOS to be
79     consistant with OS standard.
80   * ./configure.in: BeOS, liba52 and chroma plugin compilation fixes.
81   * ./plugins/dvd/dvd_access.c: removed a warning.
82   * ./src/misc/configuration.c: Solaris fixes by Meuuh.
83   * ./FAQ: removed outdated stuff.
84   * ./plugins/directx/vout_events.c: fixed yet another bug related to the event
85     thread creation.
86   * ./plugins/directx/vout_events.c: removed a few debug messages.
87   * ./extras/Win32_msvc/*: Microsoft Visual Studio C++ 6 project files. This
88     is useful mainly for debugging as the hardware accelerated plugins can't
89     be compiled with msvc.
90   * ./plugins/downmix/ac3_downmix_sse.c, ./plugins/downmix/ac3_downmix_3dn.c:
91     Win32 compilation fixes when downmixsse and downmix3dn are declared as
92     plugins.
93   * ./plugins/directx/vout_events.c: fixed the waiting on the event thread
94     creation in the directx plugin.
95   * ./Makefile: updated the "package-win32" rule.
96   * ./install-win32: all txt files are now converted to dos format (CRLF).
97   * ./doc/win32/Cross-Compile-Howto.txt: VLC-Win32 Cross-Compile Howto,
98     courtesy of Bill Eldridge.
99   * ./plugins/beos/vout_beos.cpp: improved overlay detection, default colour
100     space selection.
101   * ./plugins/gtk/gtk_preferences.c: allow the user to resize the configuration
102     windows.
103   * ./plugins/gtk/gtk_preferences.c: moved config_GetIntVariable out of the
104     loop.
105   * ./plugins/gtk/gtk_preferences.c: you can now set a maximum height for the
106     configuration windows in the gtk and gnome plugins. This patch _doesn't
107     change_ the look of the interface unless this interface tries to use more
108     space than allowed, in which case scrollbars are added to make the
109     navigation easy. Note that this setting only affects the default size the
110     interface will use, the user is then free to change the size of the window
111     as he wants.
112   * ./plugins/gtk/gtk_preferences.c: tooltips are now triggered only in
113     specific places. This is a lot less intrusive and annoying for the users.
114   * ./plugins/win32: fixed the bug on exiting the vout pressing 'q'.
115   * ./plugins/beos/*: implemented an "always-on-top" feature for the interface
116     window, RGB16 Overlay supported again, resizing is now implemented
117     consistantly.
118   * ./plugins/win32: subtitles should work, now.
119   * ./plugins/access/udp.c: disabled the server argument in udpstream: because
120     it confuses users and is not of any practical use.
121   * ./src/interface/main.c: fix for sparc.
122   * ./plugins/dvd/dvd_access.c: don't try to stat() the dvd drive letter on
123     win32.
124   * ./plugins/directx/vout_directx.c: disabled YUV overlay double buffering for
125     now, as it seems to actually be slower.
126   * ./include/threads.h: temporary fix in vlc_cond_signal() for win32 (I really
127     should use SignalObjectAndWait() on WinNT so we can avoid race conditions
128     in the pthread code). This fixes a problem noticed on WinXP where vlc would
129     freeze regularly and eat-up all the CPU (fun no?).
130   * ./src/input/input_programs.c: when unselecting an ES, we must ged rid of
131     p_es->p_pes so that it is regererated when we select this ES again. It made
132     vlc segfault when switching from some stream to another, or when switching
133     program in satellite input.
134   * ./plugins/access/udp.c: UDP access plug-in can now receive MPTS (Multiple
135     Program TS) and switch programs.
136   * ./plugins/macosx/*: audio and video output go to time-constrained
137     scheduling [OS X port].
138   * ./plugins/gtk/gtk_preferences.c: some dirty ifdefs for a nicer gnome
139     interface (gnome buttons, gnome dialogs).
140   * ./po/nl.po: translation of user interface messages to Netherlands.
141   * ./plugins/gtk/gnome.c, ./plugins/gtk/gtk.c: new options "gtk_hide_toltips"
142     or "gnome_hide_tooltips". Tooltips are enabled by default. This option is
143     only considered on module initialization.
144   * ./configure.in: GNU make detection.
145   * ./extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib: deleted
146     non-working fullscreen menu item [OS X].
147   * ./plugins/access/http.c, ./plugins/access/udp.c: udp and http no longer
148     modify p_input->psz_name.
149   * ALL: various little portability fixes.
150   * ./src/misc/configuration.c: changed the behaviour of the config file:
151     now all the config options are saved. <string> config options which have
152     no default value are also saved in the config file but as an empty string,
153     and config_LoadConfigFile will ignore empty config options, which also
154     means we cannot pass an empty string as a <string> config option. (this
155     shouldn't matter anyway).
156   * ./plugins/gtk/gtk_preferences.c: modified the gtk interface to save an
157     empty <string> option as a NULL pointer.
158   * ./src/misc/configuration.c: modified config_LoadConfigFile to consider an
159     empty <string> option as a NULL pointer.
160   * ./plugins/gtk/gtk_preferences.c: save button (inadvertently suppressed).
161   * ./plugins/win32: added toolbar icons (thanks xav), we can no longer edit
162     plugin names in the preferences :)
163   * ./plugins/win32: the tool button for playlist is now a toggle button.
164   * ./plugins/beos/InterfaceWindow.cpp: disabled controls if the playlist was
165     empty.
166   * ./plugins/win32/*: added a win32 interface plugin, developed with Borland
167     C++ Builder. To build the plugin, follow the instructions in
168     INSTALL-win32.txt.
169   * ./plugins/gtk/gtk_preferences.c: fixed an ugly structure, the tabs are not
170     verticaly expanded as they were, small enhancements.
171   * ./plugins/gtk/gnome.c, ./plugins/gtk/gtk.c, ./plugins/gtk/gtk_common.h: new
172     Tooltips structure.
173   * ./plugins/gtk/gtk_preferences.c: modifications of some widgets, the
174     structure, cosmetic changes.
175   * ./src/interface/main.c: typos, a couple of new descriptions.
176   * ./src/interface/main.c: moved the "display" option from main to the
177     relevant plugins. ( We now have the x11_display, xvideo_display,
178     xmga_display and ggi_display options ).
179   * ./INSTALL-win32.txt: fixed a little omission.
180   * ./src/plugins/gtk/*: fixed a bug that made vlc segfault when choosing a
181     program, change to another and come back to the first one.
182   * ./src/plugins/gtk/*: added gtk and gnome interfaces for satellite input. We
183     should find a way to hide the button if satellite support is not compiled.
184   * ./plugins/beos/vout_beos.cpp: implemented correct scaling and used new
185     window size variables. Beta always on top for the interface window. New
186     cursor handling.
187   * ./plugins/macosx/aout_macosx.c: fixed a problem in the MacOS X aout which
188     caused the previously played audio frames to be played when there were no
189     new frames available.
190   * ./plugins/macosx/vout_macosx.c: MacOS X vout now uses the height/width
191     calculated in video_output.c.
192   * ./configure.in: Win32 fix.
193   * ./configure.in: miscellaneous fixes for the OS X port.
194   * ./src/video_output/video_output.c: the calculation for the initial video
195     window dimensions is now done in video_output.c and made available into
196     p_vout->i_window_height/width. This allows to get rid of duplicated code
197     and unify the behaviour of the video output plugins. (not all the plugins
198     have been modified because I didn't want to break anything).
199   * ./src/misc/configuration.c: moved GetConfigurationFromCmdLine() into
200     configuration.c and renamed it to config_LoadCmdLine().
201   * ./src/misc/configuration.c: config_GetHomeDir doesn't use getpwuid_r
202     anymore as this was creating some problems on solaris. This function now
203     uses getpwuid and is called only once to store the home directory into the
204     p_main structure.
205   * ./plugins/satellite/*: added satellite input. It works with WinTV Nova
206     card, and siemens 0.9.4 drivers from www.linuxtv.org.
207   * ./src/interface/intf_msg.c: fixed stupid bug in stupid
208     ConvertPrintfFormatString() function.
209   * ./plugins/win32/waveout.c: fixed the "waveout not closing" bug. We need to
210     reset the waveout device before closing it.
211   * ./src/input/mpeg_system.c: fixed a bus error on UltraSparc.
212   * ./plugins/sdl/vout_sdl.c: Win32 and Solaris compilation fix.
213   * ./plugins/beos/vout_beos.cpp: improved scaling, correct aspect ratio even
214     in full screen mode, duplicate code reduces and framework for Overlay and
215     OpenGL modes in place.
216   * ./src/misc/modules_plugin.h: kludge to allow the ALSA module to be
217     compiled as a plugin. Please test.
218   * ./include/modules.h: fixed a C++ warning.
219   * ./plugins/vcd/input_vcd.c: VCD raw device fix, courtesy of Steven Schultz.
220   * ./configure.in: better IPv6 detection. IPv6 is disabled under MacOS X (no
221     inet_pton call).
222   * ./src/input/input_programs.c: fixed some bugs in program management:
223     selected ESs must be attached to the selected program.
224   * ./plugins/aa: aalib output plugin courtesy of Sigmund Augdal.
225   * ./configure.in: fixed a few bashisms.
226   * ./src/misc/configuration.c: fixed build under Solaris.
227   * ./TODO: updated todo list.
228   * ./plugins/dvd/dvd_access.c: fixed a memory leak.
229   * ./plugins/mpeg_vdec/vpar_pool.c: fixed a memory leak.
230   * plugins/win32/waveout.c: fixed typo.
231   * ./configure.in: BeOS compilation fixes.
232   * ./debian/rules: activated (broken) KDE interface.
233   * ./plugins/access/http.c: fixed a segfault.
234   * ./plugins/alsa/aout_alsa.c: fixed a segfault.
235   * ./include/common.h: fixed the compilation fix for Borland C++ :)
236   * ./include/common.h: compilation fix for Borland C++.
237   * ./plugins/macosx/aout_macosx.c: MacOS X aout now uses AudioConverter for
238     int->float.
239   * ./plugins/macosx/*:Various MacOS X intf improvements and bug fixes.
240   * ./plugins/chroma/i420_rgb8.c: fixed a warning.
241   * ./plugins/filter/deinterlace.c: fixed chroma deinterlacing.
242   * ./plugins/kde/kde.cpp: the KDE interface compiles again.
243   * ./plugins/mpeg_system/mpeg_es.c: fixed a segfault I introduced today.
244   * ./plugins/network/ipv4.c: cosmetic fix.
245   * ./src/interface/main.c: fixed a typo in the --help output.
246   * ./src/misc/netutils.c: fixed a segfault in the vlcs communication; still
247     unstable but solving other bugs won't do any good without rewriting the
248     whole playlist code. Which I'm doing right now.
249   * ./configure.in: MacOS X compile fixes.
250   * ./src/input/input.c: skip "//" if we find "://" in a resource we have to
251     play : this allows us touse the syntax udpstream://host.
252   * ./extras/MacOSX_dvdioctl: removed outdated files.
253   * ./plugins/fx/scope.c: fixed an infinite loop error.
254   * ./plugins: fixed segfaults in various demux plugins.
255   * ./plugins/sdl/vout_sdl.c: SDL_VIDEODRIVER can be specified from the
256     command line; try "--vout sdl:aalib"
257   * ./configure.in: fixed linking of the ipv4 plugin.
258   * ./configure.in: DirectX plugin is now correctly detected and configured.
259   * ./BUGS: updated bug list.
260   * ./configure.in: ./configure --help should be a lot clearer now.
261   * ./plugins/chroma/i420_rgb8.c: plain C 8 bpp transformation.
262   * ./plugins/chroma/i420_rgb16.c: plain C 24/32 bpp transformations.
263   * ./plugins/ggi/ggi.c: support for 8 bpp displays.
264   * ./plugins/sdl/vout_sdl.c: support for 8 bpp displays.
265   * ./plugins/x11/xcommon.c: support for 8 bpp displays.
266   * ./src/video_output/video_output.c: fixed a segfault.
267   * ./plugins/x11/xcommon.c: added an alternate fullscreen method. With this
268     method, _nothing_ is allowed to be displayed on top of the video
269     (especially not taskbars, etc...). Of course this can also be annoying
270     sometimes, this is why it's an option.
271   * ./src/misc/configuration.c: small fix for the config file. The parser
272     assumes that the config file is divided into sections (a section is the
273     config data for a plugin and begins with something like [foo]), so the
274     comment for the beginning of the section must be after the section marker
275     and not before.
276   * ./plugins/beos/vout_beos.cpp: tidied code and prevented curruption on
277     window not containing the video. Video window now returns to correct size
278     and position after toggling full screen.
279   * ./configure.in: more modules are plugins.
280   * ./src/misc/configuration.c: changed ~/.VideoLan/vlc to ~/.videolan/vlcrc,
281     and a few cosmetic changes (sorry Gildas for the butchery).
282   * ./plugins/chroma/i420_rgb16.c: C version of the I420 to RV15/16 chroma.
283   * ./src/misc/configuration.c: this the last piece of the new configuration
284     module. You can now save your configuration options (only from the
285     gtk/gnome interface for now). The config file will be saved as
286     ~/.VideoLan/vlc.
287   * ./plugins/spudec/spu_decoder.c: we now analyze the subtitle image
288     data to find the border color and the inner colors when there was
289     no way to find the palette data (network stream).
290   * ./plugins/mpeg_system: fixed a parsing bug I introduced yesterday.
291   * ./Makefile: fixed OS X vlc.app compilation dependencies.
292   * ./configure.in: fixed the endianness check under Solaris.
293   * ./src/input/input.c: strings are now initialized to "" instead of NULL.
294   * ./plugins/spudec/spu_decoder.c: we now properly support the subtitle
295     palette information we get from the DVD. Subtitles rox !
296   * ./src/video_output/vout_subpictures.c: removed all DVD-specific routines
297     and put them into spu_decoder.c.
298   * ./plugins/audio_output/aout_spdif.c: removed an ugly loop.
299   * ./plugins/audio_output/aout_spdif.c: moved iec958/spdif encapsulation from
300     ac3_spdif to aout_spdif. It will eventually allows to use ac3_adec or a52
301     for spdif output.
302   * ./plugins/dvd/dvd_access.c: fixed chapter selection at startup.
303   * ./src/input/input_dec.c: p_es->p_demux_data is available in
304     p_config->p_demux_data so that the input can pass information directly to
305     the decoder. First application: aspect ratio for DVD is read from the ifo
306     (should fix the buf with aspect ratio in anamorphic DVDs).
307   * ./plugins/dvd/dvd_es.c: the DVD plugin also copies the spu yuv palette in
308     p_demux_data so that the spudec can display subtitle with the right color
309     (sam !).
310   * ./plugins/gtk/gtk_menu.c: removed duplicate code and useless lock in gtk.
311   * ./plugins/vcd/input_vcd.c: fixed EOF and Stop segfault in VCD input:
312     input_BuffersEnd was being called twice.
313   * ./AUTHORS: updated Tony Castley's e-mail.
314   * ./plugins/beos/vout_beos.cpp: new resizing and scaling code. More in line
315     with BeOS standards.
316   * ./plugins/a52/a52.c: a52 plugin updated to use liba52-0.7.3 (which is now
317     available in debian :)
318   * ./src/interface/main.c: new configuration option to choose audio output
319     format at runtime. It allows to select spdif pass-through decoder with
320     --ac3_adec and to remove the ugly b_ac3 in main.h. As a consequence --spdif
321     doesn't work anymore: you should use --ac3_adec pass.
322   * ./src/interface/main.c: return the option name in error message for
323     unknown option intead of the argument.
324   * ./plugins/gtk/gtk_preferences.c: gtk config interface modified so you can
325     only have one instance of a plugin config dialog box displayed at one time.
326   * ./plugins/gtk/gtk_preferences.c: new GTK configuration interface. This
327     interface is generated dynamically at run-time from the configuration data
328     contained in each plugin.
329   * ./src/misc/configuration.c: config_PutPszVariable and config_GetPszVariable
330     are now thread safe.
331   * ./src/misc/configuration.c: few modifications/optimizations to the config
332     module.
333   * ./include/config.h: got rid of all the _VAR macros in config.h.
334   * ./plugins/vcd/input_vcd.c: added missing include (MacOS X port).
335   * ./plugins/dvd/*: fixed EOF segfault at end of DVD.
336   * ./src/input/input.c: buffer manager is renintialised at area change.
337   * ./plugins/dvd/dvd_access.c, ./plugins/vcd/input_vcd.c: we now exit more
338     cleanly on initialization error.
339   * ./plugins/dvd/*: rewrote most functions in DVD plugin. Some old bugs might
340     have been solved in the operation. The plugin some be more readable now,
341     and should produce fewaer segfaults (I hope so :p)
342   * ./plugins/vcd/input_vcd.c: added some tests in open.
343   * ./plugins/alsa/aout_alsa.c: spdif support in the ALSA plugin.
344   * ./plugins/vcd/input_vcd.c: when reaching the end of a track, moves to the
345     following one.
346   * ./src/interface/main.c: disabled the GNOME segfault dialog in debug
347     mode. We want nice, clean segfaults, with huge core files and a lot
348     of rattle noise.
349   * ./plugins/dvd/dvd.c: I hope you liked this bug: DVD demux was always used.
350   * ./plugins/dvd/dvd_demux.c: fixed demux plugin selection.
351   * ./plugins/vcd/input_vcd.c: take the lock on stream in VCDInit. Please
352     test, as I don't have any VCD to do it.
353   * ./plugins/ac3_adec/ac3_parse.c: ac3dec is now less verbose.
354   * ./src/interface/interface.c: fixed a deadlock when seeking the
355     stream using the keyboard arrows.
356   * ./plugins/gtk/gtk_display.c: removed an occurance of former angle item in
357     gtk.
358   * ./plugins/dvd/input_dvd.c, ./plugins/dvdread/input_dvdread.c: fixed a bug
359     in ES management introduced lately in DVD/DvdRead.
360   * ./plugins/dvd/*: beginning of reorganisation in DVD plugin source files,
361     in order to try to make it easier to understand. There is some work left
362     though :p.
363   * ./plugins/vcd/vcd.c: decreased the score for VCD plugin, as the VCD demuxer
364     was used even for DVD :p. It should make autodetection work.
365   * ./plugins/vcd/input_vcd.c: modified vcd input for the new input III. Still
366     have problems with end of tracks.
367   * ./plugins/vcd/vcd.c: modified the command line, as stef did for the DVD.
368   * ./plugins/dvd/input_dvd.c: DVD demux was no longer selected under win32.
369   * ./plugins/dvd/dvd_summary.c, ./plugins/dvdread/input_dvdread.c: DVD angle
370     is now handled through a program structure, so that the interface needs
371     nothing specific to change angle.
372   * ./src/input/input_clock.c: fixed a bug in clock management where ES without
373     a program couldn't get timestamped.
374   * ./plugins/gtk/*: fixed program management in gnome/gtk. Program now also
375     appears in popup.
376   * ./plugins/gtk/gtk_menu.c: in interface, only display ES associated with
377     the selected program, or with no program at all.
378   * ./src/input/input.c: fixed typo in the win32 change to the input parser.
379   * ./plugins/dvd/input_dvd.c, ./plugins/dvdread/input_dvdread.c: more complete
380     command line parsing for DVD, hopefully working this time.
381   * ./plugins/network/ipv6.c: IPv6 network module, courtesy of Alexis Guillard
382     <alexis.guillard@bt.com>, for BT.
383   * ./src/interface/main.c: --6 and --4 options to force IPv6 or IPv4 (FIXME:
384     it should be -6 and -4 but I don't know how to do it with the new
385     configuration module).
386   * ./src/misc/netutils.c: channel manager now uses a socket from the network
387     plug-in and is more portable (and probably broken, too :)
388   * ./plugins/mpeg_system/mpeg_ps.c, ./plugins/mpeg_system/mpeg_ts.c:
389     input_ReadPS and input_ReadTS are now in mpeg_system.c to be more easily
390     reused by plug-ins other than mpeg_ps and mpeg_ts.
391   * ./src/audio_output/audio_output.c: we now make sure the aout plugin buffers
392     always contain between AOUT_BUFFER_DURATION/2 and AOUT_BUFFER_DURATION*3/2
393     worth of audio. This should solve the audio buffer underruns.
394   * ./src/input/input.c: fix for the bug in input when filename contains a '@'
395     character.
396   * ./src/input/input.c: simplified the win32 specific changes to the input
397     parser. (I think we can safely assume that no access plugin name will have
398     a length of one character).
399   * ./plugins/dvd/dvd.c: DVD access plugin is only called if specified under
400     windows (no automatic detection).
401   * ./plugins/dvd/input_dvd.c: replaced setenv with putenv.
402   * ./plugins/gtk/gtk_open.c: fixed a bug in gtk.
403   * ./plugins/dvd/input_dvd.c: new command line for DVD, to get rid of global
404     options input_title or so.
405   * ./Makefile: added network to the list of the plugins directories.
406   * ./plugins/dvd/input_dvd.c: fixed DVD input under Win32.
407   * ./src/input/input.c: fixed input parser under win32, chich couldn't
408     understand that c:\windows\bureau is a valid file and doesn't need to be
409     accessed with the plugin 'C' :-)
410   * ./AUTHORS: added xav.
411   * ./include/videolan/vlc.h: got rid of int_types.h and did a few changes
412     Ipkiss will need. Hope I did not break other platforms.
413   * ./include/common.h: fixed compilation problem related to ssize_t.
414   * ./include/common.h: various Win32 compilation fixes.
415   * ./include/input_ext-plugins.h: DVD compiles, but doesn't work yet.
416   * ./plugins/network/ipv4.c: fixed some typos in my previous Win32 multicast
417     commit.
418   * ./plugins/dummy/input_dummy.c: fixed `vlc vlc:quit'.
419   * ./src/input/input.c: initialized uninitialized variables.
420   * ./src/input/input.c: initialize p_access_module & p_demux_modules to NULL
421     when input thread is created.
422   * ./po/no.po: Norwegian translation by Sigmund Augdal. BerdÃ¥ ka pø tüt.
423   * ./src/misc/modules.c: shortcuts for --intf work again, gvlc launches the
424     Gtk interface, qvlc launches the Qt interface, etc.
425   * ./plugins/fx/scope.c: we now have sound together with --aout scope.
426   * ./plugins/dvd/dvd.c, ./plugins/dvdread/dvdread.c: removed numerous
427     deadlocks.
428   * ./plugins/network/ipv4.c: multicast under Win32 now works with the new
429     input.
430   * ./plugins/dvd/dvd.c, ./plugins/dvdread/dvdread.c: dvd and dvdread support
431     for input III.
432   * ./src/input/*, ./plugins/network/*, ./plugins/access/*: Input III
433     (Episode 1). Major rewrite of the buffer core functions, modularity of
434     access plugins (file, udp, http), modularity of network stack (ipv4, soon
435     ipv6), autodetection of the type of stream.
436   * ./plugins/mpeg_vdec/vpar_headers.c: we no longer crash when the next
437     stream doesn't have the same image size as the previous one.
438   * ./src/audio_output/aout_pcm.c: another overrun fix; please test.
439   * ./configure.in: fixed a plugins/dsp.so compilation issue under OpenBSD.
440   * ./plugins/dsp/aout_dsp.c: OpenBSD compilation fix.
441   * ./src/video_output/video_output.c: fixed a segfault on exit.
442   * ./src/input/input.c: BeOS network support (no idea if it works when you
443     don't have BONE, though).
444   * ./include/common.h: BeOS compile fixes.
445   * ./plugins/beos/vout_beos.cpp: fixed BeOS video output.
446   * ./src/misc/configuration.c: fixed uninitialized variable in
447     config_Duplicate().
448   * ./src/audio_output/audio_output.c: char pointers obtained by
449     config_GetPszVariable need to be freed.
450   * ./src/interface/main.c: forgot to add the declaration of server_port.
451   * ./src/input/input.c: multicast now works under Win32, but this is a _bad_
452     kludge.
453   * ./include/threads.h: support for the State Threads Library, a userland
454     threads library (http://state-threads.sourceforge.net/). Useless to most
455     people, but can be handy to debug stuff. Activate with `--enable-st'.
456   * ./plugins/ac3_spdif/ac3_spdif.c, ./plugins/dvdread/dvdread.c,
457     ./plugins/dvd/dvd.c: adaptation to new configuration scheme for dvd,
458     dvdread and spdif.
459   * ./plugins/lirc/lirc.c: removed CVS garbage.
460   * ./plugins/gtk/gtk_menu.c: fixed a compile issue on IA64.
461   * ./plugins/fx/scope.c: new toy plugin, an audio scope module.
462   * ./src/audio_output/aout_spdif.h: replacement header for aout_common.h.
463   * ./src/audio_output/audio_output.c: fixed a quite old bug in the audio
464     output which made the sound stutter when wrapping around the audio output
465     fifo.
466   * ./src/audio_output/audio_output.c: lots of simplifications in the audio
467     output, got rid of b_stereo.
468   * ./plugins/gtk/*: added a menu in the GTK and gnome interfaces to change
469     the current program in multi-program streams (such as ones provided by a
470     DVB-S card).
471   * ./src/misc/configuration.c: new configuration architecture for vlc.
472   * ./src/interface/intf_msg.c: fixed array over-run bug in intf_MsgUnsub.
473   * ./configure.in: don't try to grok altivec with mingw32.
474   * ./configure.in: --with-directx-path should now indicate the path where the
475     actual headers are (before the headers had to be in an include subdir). By
476     the way you can download these header files from the videolan web site.
477   * ./src/misc/modules_plugin.h: if symbol foo isn't found in the
478     plugin, we always try to open _foo, whatever the architecture.
479   * ./plugins/lirc/lirc.c: non-blocking patch from Sigmund Augdal
480     <sigmunau@stud.ntnu.no>; hope this time my enhancements don't break
481     everything :-)
482   * ./configure.in: gtk*-config detection fix for FreeBSD.
483   * ./configure.in: removed a bashism.
484   * ./plugins/x11/xcommon.c: support for systems without shm.h.
485   * ALL: QNX compilation fixes here and there; the qnx plugin still doesn't
486     work.
487   * ./Makefile: the win32 port now uses a more recent version of gtk+.
488   * ./plugins/gtk/gtk.c: the log window is now black with colourful text.
489   * ./plugins/gtk/gnome.c: ported the log window to the GNOME interface.
490   * ./src/interface/intf_msg.c: messages are sent to the queue even if
491     -vvvv* wasn't specified.
492   * ./plugins/vcd/cdrom_tools.c: MacOS X VCD support.
493   * ./plugins/lirc/lirc.: various fixes, thanks to Sigmund Augdal.
494   * ./plugins/text/logger.c: rewrote an ugly loop.
495   * ./plugins/gtk/gtk.c: added a Gtk+ window containing all the log
496     messages; updated in real time. To open it, go to "view"->"messages".
497   * ./src/interface/intf_msg.c: got rid of TRACE and intf_DbgMsg which were
498     seldom used anyway.
499   * ./src/interface/intf_msg.c: all intf_*Msg functions now write to stderr.
500   * ./src/interface/intf_msg.c: implemented a message queue interface plugins
501     can subscribe to.
502   * ./plugins/text/logger.c: wrote the logger interface plugin. Usage:
503     vlc -I logger:filename.log.
504   * ./src/video_output/vout_subpictures.c: lots of fixes in the SPU renderer.
505   * ./src/video_output/video_output.c: fixed a typo in aspect ratio
506     calculation.
507   * ./plugins/macosx/vout_macosx.c: MacOS X vout improvements.
508   * ./plugins/macosx/intf_macosx.c: MacOS X intf now returns, allowing vlc to
509     terminate properly.
510   * ./Makefile: added a new make target: package-macosx.
511   * ./plugins/gtk/gtk_playlist.c: Win32 compilation fixes (mingw includes
512     dirent).
513   * ./configure.in: configure now checks for ddraw.h and not directx.h.
514   * ./plugins/directx/vout_directx.c: don't include directx.h anymore (this
515     file isn't part of the directx sdk).
516   * ./plugins/waveout/waveout.c: moved all the stuff from aout_waveout.c
517     directly into waveout.c (I don't know what I was thinking about when I
518     created these two files ;-)
519   * ./plugins/waveout/waveout.c: until we fix the audio buffer underrun
520     problem, waveout will be the default audio output on win32 (instead of
521     directx).
522   * ALL: got rid of *_Probe functions because most of them were duplicates
523     of the real _Init or _Create functions. That's 1000 lines of code gained.
524   * ./src/misc/modules.c: we try not to keep the global lock in module_Need,
525     which should speed up output spawning.
526   * ./plugins/dummy/input_dummy.c: fixed vlc:quit command.
527   * ./plugins/gtk/gtk_playlist.c: compilation fix.
528   * ./plugins/macosx/*: preliminary fixes for the vout4 port.
529   * ./plugins/gtk/*: Win32 fixes.
530   * ./plugins/beos/*: BeOS fixes from Rudolf Cornelissen.
531   * ./src/interface/main.c: --desync now really accepts a value in ms.
532   * ./plugins/vcd/input_vcd.c: fixed a crash when not opening a VCD.
533   * ./src/video_output/vout_subpictures.c: fixed subtitles under BeOS and
534     other architectures which don't support overlay.
535   * ./plugins/a52/a52.c: compilation fix (include stdint.h).
536   * ./plugins/a52/a52.c: fixed a SEGV.
537   * ./plugins/beos/vout_beos.cpp: ported the BeOS RGB video output to
538     vout4. The overlay video output still needs to be written though.
539   * ./plugins/a52/*: just renamed the liba52_adec plugin into a52 to comply
540     with the naming convention used by the other plugins.
541   * ./plugins/lirc/lirc.c: IR remote control plugin by Sigmund Augdal
542     <sigmunau@stud.ntnu.no>, activate with --enable-lirc.
543   * ./configure.in: put liba52_adec in a builtin for PIC/non-PIC reasons.
544   * ./plugins/liba52_adec/*: new AC3 decoder plugin using liba52 from Aaron
545     Holtzman and Michel Lespinasse.  This plugin isn't used by default, you
546     have to specify: --ac3_adec liba52.
547   * ./src/misc/modules.c: changed module_Need to make it possible to
548     have several modules with the same shortcut name.
549   * ./plugins/gtk/gtk_open.c: fixed a bug in the network dialog.
550   * ./src/misc/modules_plugin.h: added mstrtime() to module_symbols_t so we
551     can compile the mpeg_vdec plugin with TRACE mode enabled.
552   * ./plugins/ac3_spdif/ac3_spdif.c: fixed ac3_spdif which has been broken
553     recently.
554   * ./plugins/ac3_adec/ac3_adec.c: check frequency in ac3_adec and change fifo
555     if needed.
556   * ./src/audio_output/audio_output.c: moved initialisation of p_aout from
557     plugins to audio_output.c; if audio output rate is specified at launch
558     time, we try to use it by default.
559   * ./plugins/chroma/i420_rgb16.c: MMX YUV to RGB transformation for 15bpp.
560   * ./plugins/directx/vout_directx.c: added double-buffering for the directx
561     plugin in overlay mode.
562   * ./plugins/directx/vout_directx.c: several directx bug-fixes: implemented
563     the right behaviour on exit, fixed bug preventing the creation of several
564     windows  (the wall filter is working now :-)), fixed unnecessary background
565     redraws (it made the video flicker), fixed bug where we were losing the
566     video display because of lost surfaces in video memory, when using hardware
567     overlay, the output window will now specify "(using hardware overlay)".
568   * ./plugins/x11/xcommon.c: we don't use DPMS functions if they are
569     not available.
570   * ./plugins/win32/waveout.c: added a new very simple audio plugin for
571     Win32. This plugin uses the waveOut API which is a lot easier to use for
572     streaming stuff than directsound. (you don't have to take care of
573     underflows anymore because it doesn't use circular buffers). If you are
574     having a lot of underflows, this plugin is currently better adapted than
575     the directx plugin.
576   * ./src/audio_output/audio_output.c: moved some initialization stuff in
577     audio_out.c so we can now the caracteristics of the audio stream before
578     calling aout_Open().
579   * ./configure.in, Makefile: configure and Makefile tweaking for dvdread
580     module.
581   * ./src/misc/modules_plugin.h: fixed a missing function initialization
582     which made decoder plugins segfault in GetChunk calls.
583   * ./configure.in: proper soundcard.h check from Yves Duret.
584   * ./plugins/mpeg_adec/mpeg_adec.c: enabled --stereo option for streams that
585     pretend to be mono while they are not.
586   * ./plugins/ac3_adec/ac3_adec.c: fixed an alignment issue in the ac3 decoder.
587   * ./src/input/input_dec.c: decoders do not necessarily use bit stream (see
588     mad plug-in).
589   * ./plugins/mad/mad_adec.c: mad PTS should finally be accurate.
590   * ./configure.in: some configure changes.
591   * ./plugins/mad/mad_adec.c: libmad_input now takes one frame at a time (see
592     mad_adec.h for defines)
593   * ./plugins/mad/mad_libmad.c: audio_linear_dither() gives better sound
594     quality then s24_to_s16_pcm(), but also makes audio artefacts louder so
595     disabled it for now.
596   * ./plugins/mad/mad_libmad.c: cleaned up libmad_output.
597   * ./plugins/mad/mad_adec.c: cleaned up InitThread.
598   * ./plugins/mad/mad_adec.h: made buffer size match libmad's expectations.
599   * ./plugins/mad/DESIGN: updated documentation.
600   * ./plugins/directx/vout_events.c: fixed crashes on exit in the directx
601     plugin.
602   * ./src/video_output/vout_pictures.c: vout_PlacePicture is now accepting
603     picture width=height=0.
604   * ./configure.in: added extra checks for strange compilers such as
605     Borland C++ which do not support all gcc options. Note that vlc does
606     not compile with bcc32 yet, but is getting closer and closer to.
607   * ./plugins/win32: skeleton for the win32 interface Ipkiss is developing.
608   * ./config.guess ./config.sub: latest GNU versions.
609   * ./configure.in: when possible, xvideo is compiled as a plugin.
610   * ./vlc.spec: fixed a few minor inaccuracies.
611   * ./debian/control: vlc-gui is no longer depended on, but rather recommended.
612   * ./src/interface/main.c: --spumargin flag; use this to force displaying
613     subtitles at the bottom of the screen instead of putting them in the
614     middle, for instance: `--spumargin 5'.
615   * ./plugins/qnx/qnx.c, ./plugins/macosx/macosx.c, ./plugins/beos/beos.cpp:
616     converted the plugin initialization code of the macosx, beos and qnx
617     code. (please note that they should still not compile as they need
618     to be adapted to the new Vout4 architecture)
619   * ./plugins/directx/vout_directx.c: major rewrite of the directx video
620     plugin to adapt it to the new vout4 architecture. This plugin has also
621     been through a major clean-up and it is now much more robust and optimized.
622   * ./plugins/gtk/gtk_playlist.c: fixed a few problems with the win32 build.
623   * ./src/interface/main.c: replaced the "overlay" command line option with
624     "nooverlay". The former was confusing and useless because overlays were
625     used by default anyway.
626   * ./vlc.spec: imported MandrakeSoft's new spec file.
627   * ./debian/control: fixed build-dependencies for vlc-mad.
628   * ./debian/rules: fixed the vlc-arts and vlc-mad package builds.
629   * ./plugins/gtk/{gtk|gnome}.c: the gnome/gtk interface should no longer user
630     p_input->stream before it has been initialized.
631   * ./src/input/input.c: stream lock is initialized in input_CreateThread
632     instead of initThread, to have it initialized when we call it in the
633     interface.
634   * ./src/audio_output/audio_output.c: added support for S8 and U16 aout.
635   * ./debian/control: fixed Debian build-depends.
636   * ./include/config.h: changed RELEASE to HAVE_RELEASE because RELEASE
637     is already defined in <scsi/scsi.h> under Linux.
638   * ./plugins/mad/mad_adec.c: fixed issues in the PTS handling of the mad
639     plug-in (incomplete).
640   * ./src/input/input_ext-dec.c: more precise way to retrieve a PTS from the
641     bit stream.
642   * ./INSTALL.libmad: configure, build and install instructions for libmad
643     library and mad plugin.
644   * ./plugins/mad/mad_adec.c: smooth sound (not tested on iPaq).
645   * ./src/audio_output/aout_common.c: le coup de grâce: all the code in audio
646     output is now factorized (except for ac3 spdif) in aout_common.c/.h.
647   * ./src/audio_output/aout_common.h: aout thread functions are declared with
648     a macro.
649   * ./src/audio_output/audio_output.c: HUGE cleanings in audio output: removed
650     AOUT_INTF_*_FIFO, which where not used.
651   * ./src/audio_output/aout_common.c: factored S16StereoPlay, U8MonoPlay, and
652     so on.., in a single function aout_FillBuffer (unsigned 8bit may be broken,
653     but I have no stream to test with :(
654   * ./configure.in: a few fixes for the Win32 build.
655   * ./src/video_output/video_output.c: fixed all the problems related to
656     ToggleFullScreen().
657   * ./src/misc/modules.c: fixed a compile issue under platforms without
658     HAVE_DYNAMIC_PLUGINS.
659   * ./src/interface/intf_eject.c: MacOS X port.
660   * ./plugins/chroma/i420_rgb16.c: 24/32 bpp software YUV.
661   * ./plugins/ggi/ggi.c: activated double buffering.
662   * ./src/video_output/vout_pictures.c: we create more Xv pictures to
663     get smoother rendering.
664   * ./plugins/mad/mad_libmad.c: removed aout_CreateFifo from mad_adec.c
665     InitThread() and added it to mad_libmad.c.
666   * ./src/interface/intf_eject.c: BSD compilation fix suggested by Steven M.
667     Schultz.
668   * ./src/audio_output/aout_s16.c: beginning of code factorization in
669     aout_s16 (more cleaning will come). As for libmad, I have tried to create
670     the aout fifo in libmad_output, to open it with the right sample rate, but
671     strangely it didn't work.
672   * ./src/input/input.c: fixed a few segfaults caused by the dummy plugin.
673   * ./plugins/mpeg_adec/mpeg_adec.c: fixed a segfault due to misuse of
674     DecoderError.
675   * ./plugins/x11/xcommon.c: replaced XFlush with XSync. This must be the
676     fourth time someone has to commit this, so I added a reminder :-)
677   * ./plugins/mpeg_system/input_ts.c: hopefully fixed a bug in TS input, that
678     caused a segfault when there was no network stream.
679   * ./src/interface/intf_eject.c: BSD/OS port by Steven M. Schultz.
680   * ./include/modules_inner.h: replaced _X with __VLC_SYMBOL because _X was
681     already a system macro under MacOS X.
682   * ./plugins/dummy/dummy.c: fixed vlc:loop, vlc:quit, etc. entries.
683   * ./plugins/glide/glide.c: activated double buffering.
684   * ./plugins/mga/xmga.c: started writing an xmga plugin; doesn't work yet.
685   * ./src/input/input.c: fixed the input memory leak, and the insane thread
686     spawning we got with vlc:loop.
687   * ./src/misc/intf_eject.c: disc ejection routine courtesy of Julien Blache,
688     currently Linux-only.
689   * ./src/audio_output/aout_ext-dec.c: better communication between audio
690     decoder and output: aout plugins are now opened directly in the right
691     mode (works with mpeg_adec and ac3_adec, not tested with mad).
692   * ./src/audio_output/audio_output.c: first attempt to implement mono output
693     (doesn't work yet).
694   * ./plugins/dvdread/input_dvdread.c: DVDRead plugins works again more or
695     less ; major bugs remain but it is usable. It is selected by default if
696     you have it compiled.
697   * ./plugins/mpeg_vdec/vpar_headers.c: fixed a bug in QuantMatrixExtension,
698     many thanks to "Thomas L. Wood" <twood@lucent.com> !
699   * ./debian/control: updated list of supported architectures.
700   * ./share/*: added 16x16 and 32x32 versions of PNG icons.
701   * ./plugins/mga/mga.c: removed the mgammx module and put the code in
702     the chroma_i420_ymga module instead. This introduces a slight
703     performance issue as we now need to memcpy() the Y plane, but I have
704     some vout4 enhancements on their way which make this point moot.
705   * ./debian/changelog: imported official Debian changelog.
706   * ./debian/control: activated the vlc-mad and vlc-arts packages; package
707     builds should now work again.
708   * ./plugins/dvd/dvd.c: solved a symbol resolution issue when vlc was
709     compiled without libdvdcss which overflowed the return stack.
710   * ./plugins/ggi/ggi.c: ported the GGI plugin to vout4.
711   * ./plugins/glide/glide.c: ported the Glide plugin to vout4 (untested).
712   * ./src/input/input.c: prepared everything for multi-input mode; since
713     no interface is yet prepared to handle this, I changed them so that
714     they just use the first available input for now. This may break other
715     things, but I promise I'll eventually repair everything :-)
716   * ./plugins/mga/mga.c: pipeline and cache optimizations.
717   * ./plugins/mga/mga.c: MMX-accelerated version of the MGA plugin.
718   * ./plugins/mpeg_vdec/Makefile: little workaround for PA-Risc compilation.
719   * ./plugins/mad/mad_libmad.c: optimized libmad_output() for smoother sound.
720     It is still not optimal.
721   * ./plugins/fb/fb.c: ported the framebuffer video output to vout4.
722   * ./src/audio_output/aout_s16.c: fixed a segfault. It may have unexpected
723     side effects because I don't know this part of the code, but at least
724     it doesn't crash anymore.
725   * ./plugins/beos/beos.cpp: first attempt at porting the BeOS plugin to the
726     new video output and module systems. Doesn't work nor even compile yet.
727   * ./configure.in: we now check the gtk-config version.
728   * ./plugins/mga/mga.c: we use the MGA_VID_FSEL ioctl to select the
729     frame to be displayed. Unfortunately, increasing the number of
730     frames doesn't seem to work and makes the picture stutter...
731   * ./Makefile: fixed a bug when no builtins were selected.
732   * ./plugins/mga/mga.c: ported the MGA video output to vout4. Only does YV12
733     for the moment, and there is a strange bug with some streams which gives
734     only a green image. Needs to be looked at.
735   * ./plugins/x11/xcommon.c: fixed a few typos.
736   * ./plugins/mad/DESIGN: updated documentation.
737   * ./plugins/mad/TODO: updated TODO list.
738   * ./plugins/mad/BUGS: updated documentation.
739   * ./plugins/mad/mad_libmad.h: removed unused prototype from headerfile.
740   * ./configure.in: fix for obscure architectures like hppa where target_os
741     isn't properly detected.
742   * ./include/video_output.h: got rid of pf_setpalette; I'll find a nicer way.
743   * ./plugins/mga.c: fixed MGA module compilation. Doesn't work yet, though.
744   * ./include/common.h: hton64 is now an inline function.
745   * ./src/video_output/vout_pictures.c et al.: vout4 now automatically
746     detects when two chroma formats are the same, such as UYVY/Y422, or
747     roughly equivalent, such as I420/YV12. Plugins need not worry about
748     conversion anymore.
749   * ./BUGS: added a list of known bugs. Please add your findings!
750   * ./MODULES: added a short description of each module. Maybe we should
751     add more details to make this file really useful.
752   * ./doc/bugreport-howto.txt: wishful thinking...
753   * ./Makefile: added a workaround for the fact that .c files don't depend
754     on <videolan/vlc.h>.
755   * ./plugins/memcpy/memcpy.c: all memcpy modules are now built from the same
756     single file.
757   * ./src/interface/main.c: added the --nommx, --no3dnow, --nommxext, --nosse
758     and --noaltivec options to vlc.
759   * ./configure.in: removed the --disable-mmx option, now useless because
760     of the vlc --no* options.
761   * ./src/interface/main.c: fixed a crash caused by the memcpy module
762     being released too early.
763   * ./include/video.h: more vout4 changes, including margin support, more
764     FOURCC formats recognized, transparent support of identical or almost
765     identical FOURCC formats.
766   * ./include/video_output.h: added a vout_Render function to video output
767     modules which is to be executed before vout_Display.
768   * ./include/common.h: this header is back.
769   * ./plugins/chroma/i420_rgb.c: planar YUV 4:2:0 to packed RGB conversion
770     functions, mostly taken from vout3's yuv functions, but heavily modified
771     to use FAST_MEMCPY and to handle image dimensions which are not multiples
772     of 16. Not all functions have been written yet, though.
773   * ./plugins/chroma/i420_yuy2.c: planar YUV 4:2:0 to packed YUV conversion
774     functions, various targets such as 4:2:2 YUYV, YVYU, UYVY, or 2:1:1 YUYV,
775     with accelerated MMX versions.
776   * ./plugins/chroma/i422_yuy2.c: same as i420_yuy2.c but takes planar YUV
777     4:2:2 pictures in input. With accelerated MMX versions as well. This plugin
778     makes it possible to display 4:2:2 files on most video cards without the
779     quality loss of 4:2:0 downsampling.
780   * ./plugins/filter/*: thanks to the vout_Render function, all filters now
781     output their data perfectly in sync.
782   * ./plugins/dvdread/Makefile: fix to prevent unnecessary target rebuilds.
783   * ./plugins/sdl/vout_sdl.c: support for YV12, UYVY, YUY2 and YVYU overlays.
784   * ./plugins/x11/xcommon.c: support for I420, YV12, YUY2 and Y211 overlays.
785   * ./ChangeLog: imported the 0.2.92 changes, unrolled current CVS changes.
786   * ./include/config.h et al.: this file is no longer generated.
787   * ./include/video.h: we use the FOURCC definition of a chroma format to
788     describe picture types (see http://www.webartz.com/fourcc/).
789   * ./plugins/dvdread/input_dvdread.c: compilation fix by Eyal Lebedinsky.
790   * ./plugins/x11/xcommon.c: fixed the XShm operations order.
791   * ./plugins/x11/xcommon.c: small optimizations.
792   * ./plugins/x11/xcommon.c: removed unused code.
793   * ./plugins/x11/xcommon.c: your old window position and size are now restored
794     when you come out of fullscreen mode.
795   * ./plugins/esd/esd.c: fixed detection of the esd plugin.
796   * ./plugins/mpeg_system/input_ts.c: fixed the ts plugin's input type
797     detection.
798   * ./plugins/x11/xcommon.c: fixed the BadCursor error in the x11 and xvideo
799     plugins. For real this time (unlike my 2001/08/03 fix :p).
800   * ./plugins/filter/wall.c: made the wall filter work a bit better. It now
801     spawns a 3x2 mosaic, but this will eventually be configurable, Ã  la
802     `--filter wall:3x3'.
803   * ./plugins/arts/arts.c: fixed the aRts audio output plugin.
804   * ./configure.in: removed duplicate function checks.
805   * ./Makefile.modules: added extra magic so that the module Makefiles are now
806     ridiculously simple. And I mean *simple*. Check it! This will make a
807     possible switch to full autoconf/automake a lot easier.
808   * ./include/modules_inner.h: added the vlc version name to the plugin
809     symbols, to be sure we only load plugins with the same version number. A
810     nasty consequence is that you need to rebuild your tree after midnight if
811     you are using a CVS tree :-)
812   * ./include/modules_export.h: got rid of modules_export.h by #defining
813     exported functions in the same header as their prototype.
814   * ./include/videolan/vlc.h: added modules_inner.h and other commonly used .h
815     files to common.h so there are less and less files to include, and renamed
816     common.h to <videolan/vlc.h>.
817   * ./src/misc/tests.c: first modifications to the module handling system
818     towards my ultimate goal to get rid of the *_Probe functions. Got rid of
819     TestMethod and TestCPU, as well as src/misc/tests.c.
820   * ./plugins/chroma/yv12_rgb8.c, ./plugins/chroma/yv12_rgb16.c: wrote the
821     chroma plugin handling functions. No YUV functions have been ported yet
822     because it'ls a lot of work, but the core system works, I tried it with a
823     naive yv12->rgb16 plugin (which will disappear when the real functions are
824     ready).
825   * ./plugins/dvd/dvd_summary.c: made a lot of functions one-liners to avoid
826     wasting too many output lines.
827   * ./plugins/dvd/input_dvd.c: fixed a segfault in DVDInit.
828   * ./plugins/gtk/fixfiles.sh: Added a fixfiles.sh script to be run after Glade
829     has generated its C files.
830   * ./plugins/kde/*: did some work on the KDE interface to make it suck a bit
831     less. It still segfaults, but at least it runs and it looks less ugly.
832   * ./plugins/sdl/vout_sdl.c: RGB SDL rendering works again, though in 16bpp
833     only.
834   * ./plugins/vcd/linux_cdrom_tools.c: made this file independent of any vlc
835     structure so that it'll be easily put in a library. Maybe libdvdcss?
836   * ./plugins/vcd/input_vcd.c: fixed VCD date display.
837   * ./plugins/x11/*: merged vout_xvideo.c, vout_x11.c and vout_common.c into
838     xcommon.c.
839   * ./plugins/x11/xcommon.c: wrote non-Shm XVideo output.
840   * ./plugins/x11/xcommon.c: made X11 output work again. Still pretty unstable,
841     only works for 16bpp.
842   * ./po/fr.po: additional french translation. Any taker for the rest?
843   * ./src/video_output/video_output.c: fixed a segfault when the allocated
844     pictures were not direct buffers.
845   * ./share/*: replaced 48x48 .xpm images with 32x32 ones to conform to Debian
846     policy (Closes Debian bug #126939).
847   * ./Makefile: removed the automatic ./configure launch when running
848     `make all' for the first time.
849   * ./plugins/filter/distort.c: --filter distort:ripple (Ok, ok, I promise it's
850     the last one !! :-)
851   * ./configure.in: fixed compilation with dvdcss disabled.
852   * ./configure.in: fixed compilation with plugins disabled.
853   * ./plugins/dvd/input_dvd.c, ./plugins/vcd/input_vcd.c: removed useless
854     variables in the VCD and DVD plugins.
855   * ./plugins/vcd/input_vcd.c: fixed a function which was returning
856     "struct foo" in the VCD plugin.
857   * ./plugins/x11/xcommon.c: fixed the old Â« XVideo eats more and more CPU Â»
858     bug I mistakenly reintroduced in my first vout4 commit.
859   * ./src/misc/modules: we now stop at the first ':' when looking for a module
860     name, to easily pass information to the modules. Possible example:
861     --vout sdl:software, implementation of such an option is left as an
862     exercise.
863   * ./plugins/filter/filter.c: merged filter_bob and filter_bob422 into
864     filter_bob. Use --filter bob to deinterlace 422 into 420 as well.
865   * ALL: factorized code common to most filters and the video output, optimized
866     a few filters by aligning data and reading 64 bits at a time.
867   * ./plugins/filter/transform.c, ./plugins/filter/distort.c: two new
868     absolutely useless, CPU-eating, resource-wasting, but fun filters: enjoy
869     `transform', which performs flips and 90° rotations, and `distort', which
870     performs animated image effects (currently only a naive sine wave is
871     implemented). Usage examples: --filter transform:hflip,
872     --filter transform:vflip, --filter transform:90, --filter transform:180,
873     --filter transform:270, --filter distort:wave.
874   * ./plugins/x11/xcommon.c: added missing XSync() in the XVideo plugin.
875   * ./plugins/filter/deinterlace.c: pathetic attempt at a 4:2:2 renderer and
876     deinterlacer, combining the most awful line dropping techniques of both BOB
877     and 422 to 420 downscaling. Don't worry, it should only survive for a
878     couple of days.
879   * ./plugins/filter/wall.c: new stupid plugin: "--filter wall" for split-image
880     playback :-) (will evolve into a real image wall plugin when I have time)
881   * ./plugins/filter/bob.c, ./plugins/filter/invert.c: filter plugins. Not very
882     polished (please don't look at how the dates are calculated!), but worth a
883     try. Use the following flags: "--filter invert" for inverse video,
884     "--filter bob" for BOB deinterlacing
885   * ./src/video_output/vout_pictures.c: buffer choice optimizations - vout4
886     should eat even less CPU now.
887   * ./src/video_output/video_output.c: fixed aspect ratio handling.
888   * ./src/interface/main.c: additional fixes for OSes with no gettext (thanks
889     to ej0).
890   * ./configure.in: don't try to use gettext if we don't have GNU gettext. This
891     may change in the future though (most GNU software seems to include a local
892     copy of gettext in case the operating system doesn't provide it).
893   * ./debian/rules, ./debian/control: added vlc-arts to the debian package
894     generation.
895   * ./po/ru.po: (very old) russian translation courtesy of Valek Filippov
896     <frob@df.ru>.
897   * ./po/fr.po: fixed a charset issue in the french translation.
898   * ./config.guess, ./config.sub: updated these files from GNU's latest
899     versions.
900   * ./po/vlc.pot: added vlc.pot skeleton for translators.
901   * ./src/interface/intf_channels.c, ./include/keystrokes.h: removed unused
902     files.
903   * ./include/common.h: put common_win32.h back into common.h -- it wasn't that
904     big and we should not multiply header files.
905   * ./src/interface/main.c: added gettext support by Thomas Graf
906     <reeler@reeler.org>, may be broken on other platforms but we'll only see
907     it when I'm finished with vout 4 :-)
908   * ./src/video_output/*: new video output version 4, featuring direct to YUV
909     buffer decoding, non-ugly subtitle blending, XVideo and SDL video output.
910   * ./plugins/spudec/*: renamed spu_dec to spudec and mad_adec to mad to stay
911     coherent with other plugins. Also, renamed mpeg to mpeg_system.
912   * ./AUTHORS: added jobi.
913   * ./plugins/x11/vout_common.c: voutFactored code common to vout_x11.c and
914     vout_xvideo.c.
915
916 0.2.92
917 Mon, 31 Dec 2001 19:50:40 +0100
918
919   * Added a missing call to DecoderError() in mpeg_adec.c.
920   * Fixed a segfault in the aRts plugin.
921   * Fixed a bug in DecoderError.
922   * Next Generation Buffer Manager.
923   * All decoders enter DecoderError() in case of error, even if they
924     haven't allocated all their data. This prevents the input from getting
925     stuck if a decoder has failed its initialization.
926   * Backported lool's fix for the Gtk+ playlist crash.
927   * If $DISPLAY isn't set, don't try to run the Gtk+ interface.
928   * Fixed a segfault in input_dvd.c:DVDInit.
929   * Fixed a PPC compilation issue.
930   * Mouse wheel seek patch for XVideo courtesy of Peter Surda.
931   * Ported to SDL.
932   * Backported a VCD crash fix from the main branch.
933   * Fixed compilation with dvdcss disabled.
934   * Bug fixes in the VCD input.
935   * The SDL plugin now says whether we are using software or hardware YUV
936     in its window title.
937   * Added --with-dll-path option for my automated Win32 package builds.
938   * Initialize SDL before opening the SDL audio output.
939   * Prevent two SDL video outputs or audio outputs to be spawned at the
940     same time to avoid ugly crashes.
941   * TS input: bugfix in DecodePAT and minor optimizations elsewhere.
942   * TS input: we now check that the contents of the PAT has changed
943     before updating it, instead of just relying on its version number.
944   * Disabled broken ALSA audio output. Closes Debian bugs #110869 and #119846.
945   * Fixed build dependencies on libasound2-dev. Closes Debian bug #121057.
946   * Changed configure.in so that libXv_pic is used instead of libXv.a when
947     available. Closes Debian bug #111790.
948   * CPU detection under BeOS.
949   * Fixed XVideo port selection.
950   * Fixed 4:2:2 software rendering.
951   * Removed cruft I forgot in aout_alsa.c.
952   * Minor compile fix under Hurd.
953   * Fixed a potential segfault if the subtitle stream was encountered
954     before the video stream.
955   * Fixed potential compilation issues under eg. BSD/OS.
956   * Fixed unnecessary target remake (recursive make is harmful !).
957   * Fixed a potential BeOS linking issue.
958   * Fixed a minor bug in input.c.
959   * Fixed an issue in Makefile.dep causing to rebuild unnecessary files
960     in the gtk/gnome plugins.
961   * Removed cruft from configure.in.
962   * Fixed major bugs in the PSI decoder.
963   * Fixed possible segfault with --input.
964   * Fix for EOF of ES-only streams.
965   * MPEG-1 aspect ratio patch, courtesy of Vladimir Chernyshov
966     <greengrass@writeme.com>.
967   * Seeking patch for X11, courtesy of Peter Surda
968     <shurdeek@panorama.sth.ac.at>.
969   * Fixed a segfault on exit when no fast_memcpy module was found.
970   * Workaround for a bug in the GLIBC dlopen() code.
971   * Fixed win32 compilation.
972   * New libmad plug-in, courtesy of Jean-Paul Saman. We now have sound on
973     iPAQ Familiar Linux.
974   * Borrowed MPlayer's fast memcpy() routines. Best is autodetected, choose
975     "--memcpy <whatever>" to choose one from c, mmx, mmxext or 3dn.
976   * Added versioned build-dep to libasound2-dev (Closes Debian bug #121057).
977   * Updated Gtk/GNOME interfaces to use "udpstream" instead of "ts".
978   * More checks for GTK headers.
979   * Fixed a crash when pausing.
980   * Fixed numerous bugs in ES selection.
981   * Fixed stupid bug in vout_Manage. It sometimes called SetDSequenceMatrix
982     when there was no valid sequence.
983   * Hopeless fix for the input netlist corruption bug.
984   * Implemented simple BDirectWindow (DMA) support.
985   * DeleteDecoderConfig wasn't freeing (anymore) the packets left in the
986     decoder fifo. This bug was creating an io_vec starving on title change
987     when playing DVDs.
988   * Removed a bug in the Makefile that made the CVS-snapshots building fail.
989   * Added "#include <string.>" to include/threads.h.
990   * Removed the mutex the vout and intf thread (were supposed to use)
991     for syncronizing acces to the p_vout->p_sys structure.
992   * Added error checking in pthread wrapper; as a result, intf_msg.h must
993     now be included *before* threads.h.
994   * Changed all files to include intf_msg.h before threads.h; while I was
995     at it, I update the copyright notices.
996   * Removed the obsolete darwin plug-in.
997   * Fixed a deadlock (bug reported by marcari).
998   * Various (sometimes hopeless) fixes to try to improve xvideo stability.
999   * Documentation updates.
1000   * Updated man page.
1001   * dvd:<device>[@<raw device>] to avoid device namespace collision under
1002     win32.
1003   * Fixed a compilation issue under Win32.
1004   * Fixed a potential packet corruption in the DVD input.
1005   * Changed the protocol version for communication between vlc and vlcs
1006     from 12 to 13 (due to change from ts:// to udpstream://)
1007   * Big clean-up to allow compiling every module as plugins.
1008   * Added bytes_swap.h to provide ntoh() and htol() on Win32. With this
1009     change we don't have to link winsock2 with every plugin anymore. This
1010     should also give us a slight speed increase.
1011   * Added #define WIN32_LEAN_AND_MEAN in threads.h to speed-up compilation
1012     on Win32.
1013   * Modified ac_downmix_3dn and sse so they compile with the latest gcc for
1014     Win32.
1015   * Support for libdvdread.
1016   * Added "Video" menu hint to debian/*menu (Closes Debian bug #121036).
1017   * Major rewrite of the network layer. only supported syntax is:
1018     udp[stream]:[//][serveraddr:[serverport]][@[bindaddr][:bindport]]
1019   * Don`t use long long, use u64/s64 (int_types.h).
1020   * Fixed a stale pointer in mpeg_vdec_Run().
1021   * (Hopefully) fixed the network connect() bug under UNIX.
1022   * aRts audio output courtesy of Emmanuel Blindauer <manu@agat.net>.
1023   * Fix to the esd plugin when esd-config --cflags is nonempty.
1024   * --channels puts gtk/gnome in multi-channel network mode.
1025   * The network window of the interface reports the values of the environment
1026     variables.
1027   * Channels mode excludes vls configuration.
1028   * The vlc does not try to bind vls.via.ecp.fr by default when you select
1029     channels mode.
1030   * Fixed MacOS X 10.1 network input, thanks to Mathias Kretschmer
1031     <mathias@research.att.com>.
1032   * Fixed a few crashes due to race conditions in the decoder spawning.
1033   * Removed unused code here and there.
1034   * Fixed a bug in altivec detection on MacOS X.
1035   * It seems that the 'focus' bug under WinME is solved.
1036   * Updated the INSTALL-win32.txt file.
1037   * The ./configure script is more friendly for Win32 users.
1038   * Moved warning message to debug message in spdif pass-through plugin.
1039   * Changed a bit the wait time. It works better here, please test.
1040   * The default file-translation mode was not being set under win32.
1041   * Fixed heap corruption issues in ac3dec (thanks reno).
1042   * Fixed a crash when using `--input dvd /dev/dvd' instead of `dvd:/dev/dvd'.
1043   * configure should no longer assume AltiVec is supported when it actually
1044     isn't with buggy compilers and/or pre-set $CFLAGS.
1045   * Commited my little release-howto (only useful to core vlc developers).
1046   * Closing Debian bug #119369 which was fixed a while ago.
1047   * Decoder modularization.
1048
1049 0.2.91
1050 Mon, 12 Nov 2001 17:14:29 +0100
1051
1052   * Added FAQ.
1053   * New --channelserver switch.
1054   * Documentation updates.
1055   * ipkg script for Familiar Linux 0.5 & bug fix in debian/rules.
1056   * Disabled DirectX audio output for the time being.
1057   * Added Oct's NSIS installer script. It will probably not work for you,
1058     but I need it to build the Win32 auto installer.
1059   * Automatic handling of the Channel Server's response in network mode.
1060   * GetMACAddress takes the interface defined in the environment variable
1061     vlc_iface instead of eth0.
1062   * Fixed bug with MPEG audio in TS streams.
1063   * Fixed compilation (and quite probably runtime) issues under IA64
1064     due to mixed int/void* casts.
1065   * Merged DVD netlist with input netlist to remove duplicated code.
1066   * BSD/OS VCD patch, courtesy of Steven M. Schultz <sms@TO.GD-ES.COM>.
1067   * Win32 network fix.
1068   * imdctsse should now compile and work in plugin and under BeOS.
1069   * Kludge to have less discontinuity after a zero scr in DVD.
1070   * Fixed some win32 64-bit issues.
1071   * Fixed some win32 compile issues.
1072   * Don't use long long, use u64/s64 (int_types.h).
1073   * Move function that translates language codes into country name in src/misc
1074     so that every plugin can use it.
1075   * Changed the name of a function in dvd_udf.c to fit with the forthcoming
1076     libdvdread plugin.
1077   * Corrected Ã  long time bug (around 0.2.81 I think), that created a
1078     corruption in ifo data. This was the reason why some DVDs that worked with
1079     0.2.80 no longer worked with newer version of vlc. They should work again
1080     now.
1081   * New --enable-release config option.
1082   * Removed deprecated code and structures.
1083   * Maybe corrected aspect ratio issue in fullscreen xvideo.
1084   * Fixed support for SPU and LPCM streams over network.
1085   * Added a new drawer to the control window to support Title / Chapter
1086     selection, Subtitle selection, Audiochannel/Language selection,
1087     Angle selection.
1088   * New --volume option (untested, like usual :).
1089   * Reimported Intf_Controller, connected "File/Open/File" to
1090     Intf_Controller::file:Open (OS X).
1091   * The intf is no longer accessed indirectly from vout_Destroy.
1092   * Made it possible to open a File after vlc was started (you can use vlc now
1093     without starting it from the command line) under OS X.
1094   * Cleaned up playlist handling in Intf_Vlc_Wrapper.
1095   * Modified the pf_close kludge in input.c so that we don't segfault when
1096     pf_init fails.
1097   * Changed chapter selection buttons aspect to try and differentiate them
1098     from title selection ones.
1099   * Changes to the BeOS interface to remove unwanted volumes from the Disk
1100     Menu.  Readonly filesystems like NTFS were being incorrectly added.
1101   * Do not resample audio output if delta is short enough.
1102   * Fixed a segfault on exit under Windows 2000.
1103   * Enabled http button in gtk/gnome interface.
1104   * Use memalign for aligned data (instead of a greek malloc).
1105   * Some optimizations in imdct (all data are now aligned).
1106   * SSE downmix now works for windows.
1107   * SSE imdct is desactivated for windows (MINGW32 doesn't know how to aligned
1108     data).
1109   * Fixed '-' input.
1110   * New interface for MacOS X, courtesy of Florian G. Pflug.
1111   * BeOS interface changes to include menu for Title and chapter navigation.
1112   * Improved more "BeOS" CD detection.
1113   * VLC FAQ TBU.
1114   * Synced dummy_dvdcss with Stef's changes to libdvdcss.
1115   * configure now compiles the VCD plugin if linux/cdrom.h is present.
1116   * Added VCD input plugin for Linux.
1117   * Fixed ATTR_ALIGN configure test.
1118   * Fixed compilation problems with OpenBSD.
1119   * xvideo.so is now built in by default. Mixing PIC and non-PIC code was not
1120     very nice.
1121   * Fixed compilation errors in src/interface/main.c when the compiler did
1122     not support SSE or 3DNow! inline assembly.
1123   * Qt fix in vlc.spec courtesy of Christopher Johnson <cjohnson@mint.net>.
1124   * Fixed error reporting on an unknown argument parsing.
1125   * Fixed a deadlock in the TS input.
1126   * Resizing the video out window in BeOS now retains the scaling.
1127   * Tidied up the BeOS code to remove interface messages not required.
1128   * Fixed an error in the ts://server[:port][/broadcast] input parsing.
1129   * Minor video parser optimization.
1130   * SDL now displays an error message on 422 streams.
1131   * Chroma 4:2:2 and 4:4:4 support in the decoder.
1132   * Fixed bugs in the C YUV transform with 4:2:2 format.
1133   * Fixed bugs in RPM spec files.
1134   * Fixed a bug in configure where ix86 machines were improperly detected.
1135
1136 0.2.90
1137 Wed, 10 Oct 2001 15:00:29 +0200
1138
1139   * XVideo module now compiled as built-in for Debian packages, to avoid
1140     PIC and non-PIC code collision (Closes Debian bug #111790).
1141   * MacOS X port : replaced -traditional-cpp (deprecated) with -no-cpp-precomp.
1142   * MacOS X port : native QuickTime video output, courtesy of Florian G.
1143     Pflug <fgp@phlo.org>. Use it with -I macosx_qt.
1144   * Fixed bugs in the altivec detection, courtesy of Michel Lanners
1145     <mlan@cpu.lu>.
1146   * Added HTTP url drop (from a WWW browser) to the gtk/gnome interface.
1147   * Added User-Agent header in the HTTP input.
1148   * Fixed an input segfault which occured using ES input.
1149   * Enhanced --with-tuning.
1150   * Added an endianness check for cross-compilations.
1151   * We now check for sys/times.h.
1152   * Repaired dummy input broken yesterday.
1153   * Minor ShowBits() optimization.
1154   * Fixed a bug in vlc.spec.
1155   * New --disable-plugins option ; make all plug-ins built-in.
1156   * Changes to ensure the BeOS compile still works.
1157   * Added HTTP virtualhost support in the HTTP input.
1158   * Enabled mouse clicks in the GGI plugin.
1159   * Fixed a warning in input_es.c.
1160   * Don't connect on INADDR_ANY, patch courtesy of Mathias Kretschmer
1161     <mathias@research.att.com>.
1162   * Cleaned up sam's mess with input's pf_open and pf_close (not completely).
1163   * With -vvv modules now show up their scores.
1164   * HTTP input support.
1165   * Borrowed Mandrakesoft's vlc.spec and libdvdcss.spec.
1166   * New configure option --with-tuning=[arch], extending --enable-pentiumpro ;
1167     for Pentium, use --with-tuning=pentium, for PowerPC 604 use
1168     --with-tuning=604, and so on.
1169   * Dramatically improve compilation time, with a negligible performance
1170     tradeoff.
1171   * Removed -march=pentiumpro ; should now work on pentium-class machines.
1172   * Removed --enable-stats configuration directive. Stats are now activated
1173     at runtime with --stats.
1174   * New intf_StatMsg() call.
1175   * Vout picture heap is now 8 pictures instead of 5 (better synchro).
1176   * Tremendous enhancements in statistics display.
1177   * Better capabilities handling.
1178   * Error checks in debug mode : pthread ERRORCHECK_MUTEX and MALLOC_CHECK_=2.
1179   * "added support for an unusual construct at the start of some
1180     slices", says walken :-).
1181   * In spdif ac3 is selected by default
1182   * Video output grows to respect acpect ratio instead of shrinking (not
1183     in x11 because it takes cpu to resize a picture).
1184   * Disable dpms in xvideo.
1185   * Better handling of the buffer of the sound driver to try to remove
1186     sratches in spdif.
1187   * Fix bad dates in ac3 spdif "decoder" (playing with the bit stream is very
1188     funny).
1189   * Thanks to Stef for his ideas, Meuuh for his bit stream, and Sam for his
1190     trolls :)
1191   * Fixed bugs in the MacOS X port.
1192   * Faster configure script and as-yet untested Darwin patches.
1193   * Test for Altivec C extensions.
1194   * If memalign isn't available, fall back on valloc.
1195   * Fixed a stupid mistake in NormScan().
1196   * By default, use the real size of the stream for the video output size.
1197   * Altivec IDCT and motion compensation, courtesy of Michel Lespinasse for
1198     mpeg2dec (untested).
1199   * Fixed many alignment issues.
1200   * Miscellaneous updates to configure, especially for cross-compilation.
1201   * Fixed the BeOS slider overflow problem.
1202   * Corrected BeOS Slider and button status behaviour.
1203   * Simplified Code in the vout_beos ready for another developer to implement
1204     more advanced video output.
1205   * Fixed typos, courtesy of Michel Lanners <mlan@cpu.lu>.
1206   * Fixed a netlist packet leak in demuxPSI (Mark Gritter
1207     <mgritter@kealia.com>).
1208   * Removed the nuts message "unable to allocate memory" when the netlist got
1209     empty.
1210   * Various fixes for GCC 3.0.
1211   * Reworked jlj's patch for field pictures.
1212   * Fixed numerous bugs with the Altivec IDCT (still not compiling).
1213   * MPEG audio emphasis fix, courtesy of Matthieu Lochegnies
1214     <lochegm1@cti.ecp.fr>.
1215   * ac3dec uninitialized data structure fix, courtesy of Damian Ivereigh
1216     <damian@cisco.com>.
1217   * Altivec IDCT and motion compensation, based on Paul Mackerras's mpeg2dec.
1218   * Local minor optimizations in IDCT.
1219   * Removed a hopeless kludge in input_clock.c.
1220   * Fixed a problem with field streams not working with new video decoder.
1221   * IP Multicast support, courtesy of Mathias Kretschmer
1222     <mathias@research.att.com>.
1223   * Removed O_NONBLCK in aout_Play because we don't use it and some drivers
1224     (e.g. esssolo1 have problems with this) ;
1225   * Added warning messages.
1226   * Fixed build dependencies for architectures not supporting libasound2
1227     (Closes Debian bug #109722).
1228   * Install doesn't explode if libdvdcss hasn't been compiled.
1229   * Attempt to fix the SDL detection under *BSD.
1230   * Removed /usr/local/include, because it is unsafe in a cross-compilation
1231     environment.
1232   * The win32 port is once again using msvcrt.dll instead of msvcrt40.dll.
1233   * Fixed a synchro bug (typo) in video_output.c.
1234   * Added documentation to use VLC as a netscape plug-in and do some
1235     (buggy) web streaming.
1236   * Totally rewrote the video decoder (inspired by walken's mpeg2dec),
1237     implying - performance boost ; - fixed the "Dual Prime Arithmetic" bug ;
1238     - 3DNow! motion compensation module.
1239   * AC3dec statistics do not show up with --enable-stats, because I doubt
1240     they're understandable by a normal human being, and they pollute the output.
1241   * Minor changes to the (non-working) ncurses interface.
1242   * Fixed a packet leak in DemuxPSI.
1243   * Added gnome.h check and cleaned the error messages in the configure script.
1244   * Tiny small optim in LPCM decoder.
1245
1246 0.2.83
1247 Wed, 22 Aug 2001 15:18:01 +0200
1248
1249   * Split ChangeLog into ChangeLog and ChangeLog.libdvdcss.
1250   * Added --xvadaptor flag to select the XVideo adaptor to use.
1251   * Added support in ./configure for the cprof profiler.
1252   * Activated -D_FILE_OFFSET_BITS=64 -D__USE_UNIX98 on all platforms, fixes
1253     issues under Solaris and QNX.
1254   * Additional checks for SSE-specific (non-MMXEXT) instructions, as
1255     reported in lucky.openbsd.misc.
1256   * GNU/Hurd configuration and compilation fixes.
1257   * Fixed a crash in subtitle rendering.
1258   * Activated old crappy subtitle rendering in overlay mode (ugly but
1259     probably better than having no subtitles at all).
1260   * Added proper Conflicts: rules in debian/control.
1261   * configure.in fixes for BSD/OS.
1262   * Added vlc:loop playlist command to go back at the beginning.
1263     Usage: vlc file1.mpeg file2.mpeg ... fileN.mpeg vlc:loop
1264   * Fixed a bug in the gtk interface which caused vlc to go amok after
1265     having met a zero-sized area.
1266   * 'snapshot*' rules do not depend on 'clean', and don't use /tmp anymore.
1267
1268 0.2.82
1269 Tue,  7 Aug 2001 12:39:16 +0200
1270
1271   * Got Makefile to launch ./configure almost properly. $(MAKECMDGOALS) rules !
1272   * Various debian scripts fixes.
1273   * Added -lmsvcrt40 to the win32 flags for proper execution under Wine.
1274   * Fixed broken soname setting under Solaris (and OS X, sort of).
1275   * Made the illegal instruction report more explicit.
1276   * Fixed the sdl video output plugin that was broken 2 days ago.
1277   * Tidied the snapshot-* Makefile rules.
1278   * Tidied the modules Makefiles.
1279   * Removed useless stuff in the debian/ directory.
1280   * Removed the "make all" kludge in the Makefile.opts rule. I hope this
1281     patch is harmless on all systems.
1282   * Added a dummy libdvdcss so that the DVD plugin can be used without
1283     libdvdcss. It will try to dlopen() libdvdcss at runtime, though,
1284     and will use the dummy functions only if it couldn't find a valid
1285     libdvdcss. This is probably only useful to package maintainers.
1286   * Made the remote command plugin usable even with no stream.
1287   * Fixed a deadlock in the remote command plugin.
1288   * Fixed a deadlock in the SPU decoder.
1289   * Minor bug fix to aout_directx.c.
1290   * Big rewrite of the DirectX audio plugin. The audio output is now (almost)
1291     perfect on Win32.
1292   * Fixed a bug in ac3dec_CreateThread() in ac3_decoder_thread.
1293   * On Win32, open() will now open files in binary mode by default.
1294   * A few minor changes to vout_xvideo.c.
1295   * Fixed a segfault in yuv_End() in video_yuvmmx.c.
1296   * Fixed the "Gdk-ERROR **: BadCursor" bug in the x11 and xvideo plugins.
1297   * Fixed a segfault in SetBufferPicture() in video_output.c.
1298   * Fixed a segfault in PSEnd in input_ps.c.
1299   * The video decoder thread is now also reniced to a lower priority on
1300     Win32 (like in the Linux version). This slightly increases the
1301     responsiveness of vlc.
1302   * Modified input_dvd so you can now go directly to the selected chapter
1303     when you change the title.
1304   * Implemented the Probe function in the Xvideo plugin. Xvideo is now the
1305     default video output plugin when it is supported.
1306   * Now use SDL_CFLAGS for searching SDL/SDL.h.
1307   * Don't miserably die in `make` when ./configure hasn't be run.
1308   * Fixed a bug when compiling KDE plug-in without Qt plug-in.
1309   * Now taking into account $KDEDIR.
1310   * Made SDL configure error messages more explicit.
1311   * --disable-sdl is now correctly taken into account.
1312   * Changed the order of evaluation of sdl-config and sdl11-config.
1313   * Finally fixed SDL*/SDL.h check.
1314   * VC++/Intel compiler fixes by Jon Lech Johansen <jon-vl@nanocrew.net>.
1315   * Better gtk-config detection.
1316   * Removed duplicate checks in configure.in.
1317   * Fixed a typo in vlc.spec.
1318
1319 0.2.81
1320 Sat, 28 Jul 2001 04:13:57 +0200
1321
1322   * Removed useless variables in configure.in which caused all subsequent
1323     compilation tests to fail.
1324   * Additional fixes to the sdl-config detection.
1325   * Added a make uninstall rule.
1326   * New --with-dvdcss flag.
1327   * Fixed a bug in aout spdif with dolby stereo (use of obsolete PTS).
1328   * Format asm functions for gcc, fixed the segfaults with imdct_sse.
1329   * Now using gcc -pipe.
1330   * (Hopefully) fixed the #@!$ field pictures bug.
1331   * Fixed the MMX YUV plugin issues with gcc 2.96 and 3.0.
1332   * Updated TODO, cosmetic changes.
1333   * Now use sdl-config for SDL.
1334   * Fixed a stupid bug in buffer management with field pictures.
1335   * Fixed a reinit bug after a discontinuity - such as seek().
1336   * The spdif audio output won't kill itself anymore at the beginning.
1337   * New and theoretically better Win32 pthread implementation.
1338   * dvd_ifo.c now takes into account error messages from UDFFindFile.
1339   * Fixed the "quit" event handling in directx/vout_events.c.
1340   * Temporarily disabled aout_Probe() in aout_SDL (libSDL bug).
1341   * ncurses compilation fix by Michael Mondragon <mammon@lokmail.net>.
1342   * Fix for large inline functions and gcc 3.0.
1343   * Fixed the gnome plugin so that it does not include gtk headers.
1344   * Tuned constants, since it seems to make people happy.
1345   * Fixed the "paused movie won't restart" bug.
1346   * Removed the outdated generic decoder.
1347   * Rewrote the video decoder so that it can use multiple processors (--smp).
1348   * Fixed a bug in the video decoder initialization.
1349   * Grayscale mode now turns off chroma IDCT decoding.
1350   * Kludged so that times displayed in the scrollbar are finally correct
1351     for MPEG-2 streams.
1352   * FreeBSD compilation fix by Ã˜yvind Kolbu <oyvindk@world-online.no>.
1353   * QNX RTOS plug-in by Jon Lech Johansen <jon-vl@nanocrew.net>.
1354   * Added IDEALX developer documentation in doc/.
1355   * Reactivated SDL parachute in non-debug mode (memory leak otherwise).
1356   * Fixed GetChunk for chunks < 4 bytes.
1357   * The Win98 DVD input is finally working.
1358   * Put a readv() function in input_iovec.h, the input_es plugin now compiles
1359     (Win32).
1360   * Modified input_ts to use readv() in input_iovec.h (Win32).
1361   * Fixed an initialisation bug in vout_directx.c.
1362   * Right clicking on the mouse displays the navigation menu (DirectX plugin).
1363   * Fixed audio/video synchro bug with esd, should fix buggy sound due
1364     to 44100-48000 Hz conversions.
1365   * The Win32 GetMessage function has been isolated in a thread. This has
1366     been done because this function can block the thread. Thanks to this
1367     change, you can now move your window without any video and audio
1368     interruption.
1369   * Plugins are now compiled in plugins/* and libraries in lib/*.
1370   * The KDE UI compiles again but does not work yet.
1371   * ALSA plugin message corrections.
1372   * Calculation modules can now be calledwith a shorter name
1373     (eg. '--downmix mmx' instead of '--downmix downmixmmx').
1374   * Fixed insane verbosity of the SDL plugin.
1375   * Fixed the segfault in vout_UnloadFont.
1376   * The Xvideo plugin now closes the video window when it XVideoGetPort
1377     fails in vout_Create.
1378   * Fixed alignement in imdct asm functions.
1379   * 16 byte alignement for data (needed for SSE).
1380   * Optimization in SSE downmix.
1381   * Probably fixed the "X eats more and more CPU" bug. Please test.
1382   * mingw32 cross-compilation issue fixed.
1383   * Small optimization in vpar_blocks.c, sparing a few memset() calls.
1384   * Additional error checking in vout_sdl.c.
1385   * Minor manpage fix, conforming to Debian policy version 3.5.5.0
1386     (Closes Debian bug #99561).
1387   * Portablility fix: We now control the name to be used in the assembler
1388     code for a C function or variable.
1389   * Reenabled all the accelerated modules on Win32.
1390   * Bugfix for chapters change in DVD.
1391   * A few bug fixes for the directx plugin.
1392   * Removed the custom usleep function for win32 as we don't really need
1393     this accuracy, and it was eating cpu resources.
1394   * Elementary Stream input plugin (use it with --input es). Only works with
1395     video streams at the moment.
1396   * Added command line option '--stdout <filename>' which redirects stdout
1397     and stderr to the specified file. This option should mainly be useful
1398     on Win32.
1399   * On Win32, vlc now has an icon associated to the .exe file, and is a full
1400     GUI application (you don't have this annoying dos command box anymore)
1401   * Added INSTALL-win32.txt for specific details to the Win32 port.
1402   * Compile fix for newer versions of MacOS X by Colin Simmonds
1403     <colin_simmonds@Mac.lover.org>.
1404   * Win32 network support by Boris Dorès <babal@via.ecp.fr>.
1405   * Fixed an alignment issue in the ifo parser. The Matrix problem should
1406     be solved.
1407   * Minor cosmetic fixes and warning removals here and there.
1408   * FreeBSD (and probably QNX) shared memory handling fix.
1409   * Unrolled two loops in dvd_netlist.c to prevent message flooding.
1410   * DVD input stuttering fix by Jon Lech Johansen.
1411   * Removed a lock that caused late frames in DVDRead.
1412   * Added gprof profiling support with --enable-profiling.
1413   * DirectX enhancements by Gildas Bazin, such as software rendering.
1414   * Another failed attempt at profiling vlc under Linux: ported the
1415     threads API to GNU Pth. Activate with --enable-pth. It doesn't seem to
1416     spawn new threads for me, maybe someone will have better luck.
1417   * Makefile optimizations.
1418   * Automatic build of libdvdcss if not found.
1419   * The DVD netlist no longer stops when the fifo is empty ; it just waits
1420     until there are free vectors again.
1421   * Exported the CSS part of the dvd plugin into a library. See
1422     ChangeLog.libdvdcss for a separate changelog.
1423   * Slight modification in input_dvd since Getiovec wasn't at the right place.
1424   * Send escape packet when changing title, not to be stuck in some decoder.
1425   * The position in the title is now reset when we change title to
1426     prevent a title from being unavailable because we're stuck at the end.
1427   * Fixed a bug with 1-chapter-long titles that displayed chapter 0.
1428   * Added a _temporary_ field in p_main to know whether the audio stream is
1429     AC3 (ugly). It allows a vlc launched in spdif mode to play mpeg or lpcm
1430     audio.
1431   * Cleaned the title property messages to get rid of the ugly stars.
1432   * Added LPCM support. It should work with stereo LPCM.
1433   * Fixed a warning when compiling main.c.
1434   * Checked that OS supports SSE instructions on PIIIs (to avoid illegal
1435     hardware instructions on Linux 2.2.x).
1436   * Fixed a bug in synchro reinitialization: we no longer have a shift each
1437     time we restart the synchro (for SCR discontinuity for instance)
1438   * In DVD mode, we reinit the synchro only if the SCR are not continuous
1439     (instead of each cell).
1440   * Tried to improve AC3 spdif to prevent desynchronization.
1441   * Lots of DirectX plugin fixes by Gildas Bazin.
1442   * Compilation fix in message queue mode.
1443   * Another FreeBSD compilation fix.
1444   * SDL compilation fix for FreeBSD.
1445   * Fixed compilation of motion modules as plugins.
1446   * Applied old FreeBSD patch for dvd input by German Tischler.
1447   * Found what was causing the slowdowns: a namespace collision. Put all
1448     plugins into builtins again.
1449   * Put most builtins in plugins again due to performances issues.
1450   * Fixed the painfully slow build process (at last!).
1451   * Added new dummy input plugin.
1452
1453 0.2.80
1454 Tue,  5 Jun 2001 04:41:06 +0200
1455
1456   * BeOS interface compilation fix by Rene Gollent.
1457   * DirectX plugin compilation fix by Gildas Bazin.
1458   * Removed %ebx spill in the iMDCT plugins.
1459   * Change to the set out of the BeOS code to allow more logical updates.
1460   * Moved modules_builtins.h.in into src/misc. Please remove
1461     include/modules_builtins.h in your local tree.
1462   * DirectX plugin by Gildas Bazin <gbazin@netcourrier.com>.
1463   * Fixed a double malloc/free bug in DVDRead.
1464   * Win32 plugin support by Gildas Bazin <gbazin@netcourrier.com>.
1465   * BeOS fixes. renamed iovec.h to input_iovec.h because of namespace issues.
1466   * Miscellaneous Win32 fixes by Gildas Bazin <gbazin@netcourrier.com>.
1467   * Win2000 DVD input by Jon Lech Johansen <jon-vl@nanocrew.net>.
1468   * Applied patch from Jon Lech Johansen <jon-vl@nanocrew.net> to compile
1469     vlc with MS and Intel C/C++ compilers.
1470   * Updated the gtk/gnome interface to work in network mode.
1471   * Fixed some bugs in interface (language menus in ts, misnamed fields).
1472   * Play/Stop work in network mode to start/stop decoding of the stream.
1473   * Fixed the BeOS compile typo.
1474   * The ALSA plugin is back.
1475   * A gift for Gildas: plugins don't rely on backlinking any more.
1476   * Changes and bugfixes to make network work in VLAN Broadcast mode.
1477   * Bugfix in the interface to access the network specific features.
1478   * Some base of synchro in ac3 spdif.
1479   * Fixed a bug with Previous chapter button in gnome.
1480   * Added a wrapper for readv() on platforms which don't support it.
1481   * Win32 compilation fixes, esp. the MAC retrieval.
1482   * Fixed a warning for *BSD compilation.
1483   * Patch by Eugenio so that the OS X interface and video output handle the
1484     aout and vout banks.
1485   * Applied Eugenio's fix to the DVDioctl driver. I didn't test it, but
1486     it should not hang the kernel anymore.
1487   * Ported most dvd_ioctl.c functions to the DVDioctl driver: ReportAgid,
1488     ReportChallenge, ReportKey1, ReportASF, InvalidateAgid, SendChallenge,
1489     SendKey2. They should comply with the "Mt. Fuji Commands for Multimedia
1490     Devices" paper.
1491   * Unification of gnome/gtk intefaces: now all the files are in plugin/gtk.
1492   * Updated BeOS interface with new changes for playlist management.
1493   * More cleanings in gtk interface.
1494   * The dvd plugin reads again blocks of 32 sectors to gain speed.
1495   * Added two functions which retrieve the MAC Address under Windows.
1496   * 3D Now! imdct.
1497   * We now do pthread detection for FreeBSD like the XMMS guys do. It
1498     works even better.
1499   * FreeBSD pthread fixes.
1500   * AC3 IMDCT and downmix functions are now in plugins, --imdct and
1501     --downmix options added.
1502   * Bugfixes, cleanings in gtk.
1503   * Initialization bugfixes in input_dvd.
1504   * Added a b_stopped flag to interface playlist to have a stop function in
1505     interface plugins.
1506   * Updated the Gtk+ interface so that it has the same features as the
1507     Gnome one.
1508   * Beginning of SSE/3DNow! support for imdct and downmix.
1509   * Ported alsa interface for alsa 0.9beta
1510   * Fixed a deadlock in spudec.
1511   * Added SPU cropping.
1512   * Gnome interface segfault fix.
1513   * BeOS interface segfault fix by Rene Gollent <rgollent@u.arizona.edu>.
1514   * Fixed an aspect ratio issue in the SPU decoder, and optimized the
1515     SPU renderer.
1516   * Speed optimization in the handling of the unusual ephemer DVD subtitles.
1517   * Little optimization to bozo's UnalignedShowBits fix.
1518   * Race fix in the packet cache by Jon Lech Johansen <jon-vl@nanocrew.net>.
1519   * Fixed a bug in UnalignedShowBits that makes some unaligned streams
1520     not wotk correctly (for instance VLS' generated TS streams)
1521   * Added support for some terribly braindead DVD subtitles in Kenshin
1522     which do not have a "stop display" command. Anime fans rejoice!
1523   * Fixed the BeOS interface to use p_aout_bank instead of p_main->p_aout.
1524   * Coding-style butchery (mostly tabs).
1525   * Changed the level arg in intf_WarnMsg so that it makes more sense.
1526   * Beginning of the backport of Gnome to Gtk.
1527   * Improved ac3 spdif output ( and made it work again :)).
1528   * Added p_input->stream.p_selected_area->i_tell in input TS so that the
1529     slider work with Transport Stream files.
1530   * Moved b_fullscreen from p_vout->p_sys to p_vout and unified way of
1531     toggling fullscreen.
1532   * Tuned the Gnome interface appearance, added a Preferences window and
1533     a Jump window, added Oct's playlist.
1534   * Fixed a few warnings with gcc 3.0.
1535   * aout and vout are now allocated in banks, making it possible to have
1536     several of them at the same time.
1537   * configure now checks for MMX and MMX EXT support in the assembler.
1538   * Removed all MMX code from the main program and moved it to the
1539     existing idct modules (Closes: Debian bug #96036).
1540   * KDE interface.
1541   * FreeBSD CSS decryption support.
1542   * Fixed a segfault in TS input (psi packets with adaptation field).
1543   * Corrected vlc-howto.sgml thanks to Arnaud Gomes-do-Vale
1544     <arnaud@carrosse.frmug.org>.
1545   * Fixed a remaining buffer overflow in the Gnome interface and applied
1546     the patches to the Gtk+ interface.
1547   * Fixed a segfault in the SPU decoder initialization.
1548   * Mandatory step for video output IV and the audio output quality
1549     fix: the output threads are now spawned when a decoder needs one,
1550     so it can decide the audio frequency or the video window size.
1551   * Fixed a few buffer overflows in the Gnome interface.
1552   * The module bank is now a global variable. The video output bank and
1553     the audio output bank might follow (when they exist).
1554   * Coding style and organization fixes to the spdif decoder.
1555   * autoconf and Makefile changes by Arnaud Gomes-do-Vale
1556     <arnaud@carrosse.frmug.org>.
1557   * DVD title change no longer restarts the input.
1558   * BeOS crash fix by Wade Majors <guru@startrek.com>.
1559   * Slight modification in ClockManageRef: after a synchro reinit, we still
1560     do the mwait and re-init last-cr.
1561   * New audio output using direct AC3 pass-thru.
1562   * Fix for a buffer overflow in the Gnome interface by Shane Harper
1563     <shanegh@optusnet.com.au>.
1564   * DVD chapter change fixed.
1565   * Fixed a bug in TS input, which should be much smoother now.
1566
1567 0.2.73
1568 Sat, 28 Apr 2001 07:02:35 +0200
1569
1570   * Removed debug instructions in the audio output.
1571   * Coding style fixes here and there.
1572   * Miscellaneous QNX compile fixes.
1573   * Changed --enable-debug into --enable-trace.
1574   * Beginning of the mingw32 port by Gildas Bazin <gbazin@netcourrier.com>.
1575   * Changed broadcast handling.
1576   * Added a vlc-howto in sgml format in the doc directory.
1577   * Fixed the continuous 'seeking position' bug in network mode.
1578   * Support for `ts://foo:42' style input source.
1579   * rc interface plugin for vlc control through /dev/stdin courtesy
1580     of Peter Surda <shurdeek@panorama.sth.ac.at>.
1581   * Misc XVideo fixes (aspect ratio, mouse pointer, blue areas).
1582   * AC3 decoder enhancements.
1583   * Fixed an alignment issue in the bitstream callback.
1584   * Got rid of asprintf.
1585   * Better angle handling (on the fly selection).
1586   * Bugfixes in CSS.
1587   * Various changes and bugfixes in the Gnome interface.
1588   * XVideo fullscreen mode by David Kennedy <dkennedy@tinytoad.com>.
1589   * X11 fullscreen mode by David Kennedy <dkennedy@tinytoad.com>.
1590   * Fixed build process when no plugins or no builtins were chosen.
1591   * Makefile changes to get around MacOS X's brain-damaged gcc.
1592   * FreeBSD configure and Makefile patches, courtesy of Espen
1593     Skoglund <esk@ira.uka.de>.
1594   * Cosmetic change in css decryption.
1595   * Added basic angle support.
1596   * Corrected some bugs in gnome interface: language menu are now
1597     synchronized and menus have less chances to change when opened.
1598   * Network channel change is now available again.
1599   * Fixed optional PES size bug, courtesy of Steve Brown <sbrown@cortland.com>.
1600   * MacOS X icon is now correctly added to the app.
1601   * Fixed a compilation issue in the DVDioctl driver.
1602   * Added a call to ranlib after a built-in module compilation.
1603
1604 0.2.72
1605 Mon, 16 Apr 2001 14:33:53 +0200
1606
1607   * New improved packet allocator.
1608   * Additional Makefile cleaning for built-in modules.
1609   * Fixed Makefile for Solaris target.
1610   * Fixed the 0.2.71 IFO parsing bug.
1611   * All Debian packages are now lintian-clean.
1612   * Fixed XVideo plugin linking.
1613   * Updated TODO list.
1614   * Built-in modules support almost finished.
1615   * A few Makefile fixes for BeOS.
1616   * XVideo patches by Shane Harper <shanegh@optusnet.com.au>.
1617   * Beginning of the built-in modules support.
1618   * Got rid of the sleep() hack in beos_specific.cpp.
1619   * Fixed a segfault when launched without argument under Darwin.
1620   * Fix for Darwin program path handling.
1621
1622 0.2.71
1623 Fri, 13 Apr 2001 08:13:26 +0200
1624
1625   * Merged 6 months of CVS logs to the ChangeLog file.
1626   * Fixed a lintian error in debian/rules.
1627   * XVideo resize patch by Shane Harper <shanegh@optusnet.com.au>.
1628   * Added udf fix by Billy Biggs.
1629   * Added checks in dvd_ifo.
1630   * Cleanings in gnome interface : the interface should depend on the
1631     input method.
1632   * Intf: TS streams in menu
1633   * TS input: only one audio & spu ES selected at a time
1634   * Removed the build of the vlc app from the install target.
1635   * Added an icon to the MacOS X vlc.
1636   * "make vlc.app" now correctly updates vlc.app
1637   * Fixed BeOS menu problem.
1638   * Added a field to p_input->stream to inform the interface of a stream.
1639     change (useful in network mode).
1640   * Added error checks in dvd input.
1641   * Changed the way ifo are read.
1642   * Fixed a bug in area management.
1643   * Fixed a warning in netutils.c.
1644   * Created darwin_specific.c to store the program path at boot time.
1645     (XXX: check that it didn't break the OS X port)
1646   * Removed redefinition of NULL in src/audio_decoder/adec_layer?.c.
1647   * Updated icons.
1648   * BeOS icon and MIME resources courtesy of Wade Majors <guru@startrek.com>.
1649   * Updated Makefile.in to make vlc.app by default on Mac OS X & Darwin, added
1650     clean code for it as well.
1651   * Hacked main.c to disregard argv[1] when compiled for OSX & run as a full
1652     app (ie., double clicked and not launched from command line).
1653   * Cleaned up debug spew left in modules.c and video_text.c.
1654   * Created macosx_common.h in plugins/macosx/ to hold common stuff.
1655   * Updated & cleaned up intf_macosx.c and vout_macosx.c - added Open menu
1656     function support and a no-frills About box.
1657   * Fixed icons location and Debian desktop menus.
1658   * Fixed a memory leak in gtk_callbacks.c (thanks to Dae).
1659   * Disabled message queue by default.
1660   * A few other changes in the CSS code, the BeOS issues should be fixed.
1661   * Corrected an awful typo in the version name.
1662   * Removed deprecated stuff from config.h.
1663   * Fixed the whitespace/tab issues in the Makefile.
1664   * X and Xv output: added autohide cursor as in SDL.
1665   * X and Xv: keys 1 to 0 change channel.
1666   * SDL: keys F1 to F10 change channel.
1667   * Ported the 0.2.0's channel changing functions.
1668   * Fixed the lock segfault bug with some compilers.
1669
1670 0.2.70
1671 Sat,  7 Apr 2001 05:52:00 +0200
1672
1673   * Fixed headers for FreeBSD compilation.
1674   * Fixed debian/rules for non-x86 packages (Closes: Debian bug #88583).
1675   * Deleted BBitmap[0] directly after overlay creation as no longer needed
1676     as overlay now owns Bits()
1677   * Fixed MPEG-1 mux_rate parsing.
1678   * Fixed MPEG-1 stuffing.
1679   * Don't create BBitmap drawing thread if using overlays
1680   * Changes to BeOS interface with file selection support
1681   * Fixed a boolean_t/int mix.
1682   * Increased FIFO_SIZE.
1683   * Fixed all alignment issues
1684   * Networked TS input
1685   * Working menus for run-time audio/spu/title/chapter selection with gtk
1686     interface.
1687   * Port of the interface menus to gnome plugin.
1688   * Gtk playlist
1689   * Tried to fix the "stream jumps at will" bug.
1690   * Fixed most of the bugs in gnome interface menus
1691   * Added radio checks in menu items.
1692   * Bug fixes and enhancements in the Gtk+/Gnome interfaces.
1693   * Borrowed config.guess and config.sub from SDL [MacOS X port] ;
1694   * Changed files so that the MacOS X port compiles & runs [MacOS X port] ;
1695   * If SDL/GTK/DSP is not available, don't compile the associated module.
1696   * Gtk+ interface: fixed a precision issue in the scale.
1697   * Qt interface: somebody pop up us the menu!!
1698   * Fixed Debian sparc build for real (Closes: Debian bug #89285).
1699   * vlc core compiles under QNX RTOS. Now if anyone feels like tidying
1700     it and writing output and interface plugins...
1701   * Split audio output into several separate files to make it easier
1702     to debug. Removed a few redundancies as well.
1703   * Support for Darwin CoreAudio, courtesy of Colin Delacroix [MacOS X port] ;
1704   * Added warnings for ac3 mantissa (we still have problems with AC3 on
1705     MacOS X) ;
1706   * Renamed WriteResource to avoid a namespace clash with Darwin's
1707     WriteResource.
1708   * Compile Darwin module by default on Darwin system. [MacOS X port]
1709   * Use $QTDIR for the qt module ;
1710   * SDL fixes and enhancements by Shane Harper <shanegh@optusnet.com.au>
1711   * Header cleaning: filled all empty authors fields, added CVS $Id stuff.
1712   * Fixes to aout_darwin.c by Colin Delacroix <colin@zoy.org>.
1713   * Fixes to configure.in, Makefile.in and main.c (Altivec detection)
1714     by Eugenio Jarosiewicz <ej0@cise.ufl.edu>.
1715   * Added a SYNCHRO_START in DVDRead for each cell change to fix
1716     multi-angle streams
1717   * Changed seek function to prevent jump-at-will and to remove two bugs in
1718     sector computing.
1719   * Initialize some values in netlist (payload_discard wasn't which caused
1720     frame dropping)
1721   * Come back of multi-sector read which should make reading faster
1722   * Language & Inteface support for BeOS interface
1723   * XVideo plugin courtesy of Shane Harper <shanegh@optusnet.com.au>
1724   * Makefile.in and configure.in fixes by Nilmoni Deb <ndeb@ece.cmu.edu>
1725   * A few syntax fixes in the plain X11 plugin
1726   * Various bug fixes in dvd_netlist. Some bugs seem to remain though.
1727   * New function input_ToggleES for interaction with interface.
1728   * Changes in gnome interface : navigation menus are now splited, there
1729     are radio item in menus and the code should be better.
1730   * First step for dvd_ifo rewritting. Now allocation/disallocation is
1731     being done as it has to be.
1732   * Fixed a bug in title management that make dvd like Seven work.
1733   * vout_beos now uses double buffering for YCbCr overlay.
1734     This (for some reason) improves audio/video sync
1735   * Fixes for the Qt plugin compilation under Debian
1736   * Heavy butchering in the CSS and DVD ioctl code to put all architecture-
1737     dependent code in dvd_ioctl.c
1738   * Added almost fully-functional /dev/dvd driver for MacOS X in
1739     extras/DVDioctl.
1740   * Fall back to one-packet-once reading in dvd input since multi-block
1741     seems to have a bug that make the vlc crash on title/audio/spu change. I
1742     hope that this bug will be fixed soon for the performance is poorer now
1743   * Add-ons and changes in gnome interface:
1744     o menu subdivision is done only if there are over 20 items,
1745     o in DVD mode next/prev apply to title,
1746     o in DVD mode, added a box with button to navigate through chapters.
1747   * Additional enhancements to the OS X DVD ioctl module
1748   * Big cleaning of the BeOS DVD ioctl code, got rid of all Linuxisms
1749   * Compilation fixes for the BeOS DVD ioctls
1750   * XVideo plugin enhancements by Shane Harper <shanegh@optusnet.com.au>
1751   * Added the GNU getopt library, which gets compiled in when getopt_long
1752     isn't available on the desired platform.
1753   * Replaced the `--warning' flag with the standard cumulative `-v' flag.
1754     `-v' is like `--warning 3', and `-vvvv' is like `--warning 0'
1755     (`--warning' is still valid for those used to it)
1756   * Cleaning in configure.in and Makefile.in, the Solaris port now
1757     builds and runs properly.
1758   * Code cleanup: removed a few tabulations.
1759   * Fixed inline asm routines to remove all read/write operands.
1760   * Added <string.h> to most files to prevent warnings under FreeBSD.
1761   * Added "break;" after "default:" in case switches to prevent
1762     warnings when compiling with GCC 3.0pre.
1763   * Sync MOSX dev/CVS tree : code support for MacOS X audio, video and
1764     interface (courtesy of Eugenio Jarosiewicz & Colin Delacroix) ;
1765   * Cleaning code and a small fix to make quit work on OSX
1766   * Disable x11 plugin if X11 headers are not found.
1767   * Misc fixes in the DVD input.
1768   * Fixed CSS authentication under Linux.
1769   * Playlist now refreshes when a file is opened.
1770   * XVideo plugin background is now black instead of white.
1771
1772 0.2.63
1773 Mon,  5 Mar 2001 00:41:16 +0100
1774
1775   * Got rid of the CONTRIBUTORS list, and switched AUTHORS to a
1776     linux-kernel like author list.
1777   * Updated TODO list.
1778   * Fixed a segfault in the BeOS interface when --noaudio was specified.
1779   * Title and Chapter selection in the Gnome and Gtk+ interfaces.
1780   * Fixed a bug in audio selection
1781   * Tried to fix an issue in size computing.
1782   * Commited BeOS changes by Richard Shepherd and Tony Castley.
1783   * Added boolean_t b_YCbr to vout_thread_s structure to flag YUV-YCbCr
1784     decoding needed instead of YUV-RGB
1785   * Will be removed later when video_output.c rewritten
1786   * vout_CreateThread() initialises b_YCbr to zero
1787   * New BeOS video plugin that supports hardware overlays and new
1788     MediaPlayer compatible interface
1789   * Added YUV-YCbCr transforms
1790   * Fixed bugs in title/chapter handling once more, especially for size
1791     detection and location of main movie.
1792   * Support for multitrack DVD : now the stream is given to input as it has
1793     to be ; however, all the tracks are displayed one after the other ; I
1794     think we need to decode navigation ES to choose the track
1795   * Fixed behaviour at end of device.
1796   * Added DVD/VCD button and menu for quick DVD device selection to the
1797     Gnome and Gtk+ interfaces, so that vlc can play a DVD even when
1798     launched from a GUI.
1799   * Added debian/* files to help generating CSS-enabled non-US packages,
1800     and changed plugins/dvd/* to reflect this change.
1801   * Added .xpm icons (fixes lintian warnings).
1802   * --help output and manpage are now in sync (Closes Debian bug #87478).
1803   * Fixed Build-dpends entry in debian/control (Closes Debian bug #83707).
1804   * Completely changed title and chapter initialization. Now we have real
1805     title units.
1806   * Fixed size for a majority of DVD.
1807   * More consistency in the p_input->stream management.
1808   * Made input_SelectES() and input_UnselectES() not block the input thread
1809     for a long time.
1810   * Changed debian/control to fix Debian bug #83707
1811   * Added a --disable-css configure option
1812   * Moved some code here and there in the DVD plugin to make it easier
1813     for me to build the Debian CSS-free packages.
1814   * Fixed miscellaneous alignment problems (alpha/sparc ports) ;
1815   * Added a fps display when toggling 'i' ;
1816   * Fixed a bug in the video parser where one picture buffer was not
1817     released at quit time ;
1818   * Broke the mux_rate calculation, but hey guys ! it was already broken and
1819     nobody noticed it.
1820   * New function for DVD reading, that is able to read multiple blocks
1821     (I've chosen 32 now), that doesn't use any memcpy anymore and is also much
1822     faster. It is ready now for cell positioning in multi-angle DVD (to come
1823     soon).
1824   * DVD specific netlist adapted to 2048 bytes long blocks that contain
1825     several data_packets.
1826   * Modification in mpeg_system.c to use p_payload_start instead of
1827     p_buffer (necessary for DVD plugin). It does not break other plugins
1828     since they set p_payload_start to p_buffer
1829   * New field i_read_once in input_thread_s to be able to read more than
1830     the TS related 7 packets ; i_read_once is set to INPUT_READ_ONCE by
1831     defaults but plugins can change it during initialisation.
1832   * Bug fix with frequential downmix
1833   * Additional optimizations to the subtitle decoder
1834   * The GGI video output should now be faster. Also, right-mouse-clicking
1835     works in GGI mode as well.
1836   * Optimizations done to the SPU decoder. Now the RLE is expanded at
1837     decoding time, not rendering time. The main loop in vout_RenderSPU
1838     is now 20 lines long.
1839   * The Gtk+ interface is now built as a Debian package as well. The Gnome
1840     package depends on it because of the icon and menu entry.
1841   * Added an intf_WarnHexDump() function to do raw hexadecimal dumps of
1842     memory areas. For debugging purposes or for real men, as you wish.
1843   * Lots of tidying in dvd_ioctl.c, a few comments added.
1844   * Better error handling in the subpicture decoder.
1845   * Tidied video_spu.c. More to come later.
1846   * Fixed subtitle displaying. Will soon work in overlay mode as well.
1847   * Disabled slice-level resynchro since it's probably buggy.
1848   * Fixed a structural major bug in the macroblock structure management.
1849   * Added debug messages.
1850   * Fixed a compile problem in debug mode.
1851   * Added functions and hooks to display dates instead of off_t.
1852   * Added a 'd' keystroke to dump the stream contents (for debugging
1853     purposes).
1854   * New ES detection based on .ifo for DVD module. It might fail (I have
1855     found one DVD for which ifo seems false).
1856   * Title and chapter selection on the command line (see -t and -T options)
1857     It will allow to watch some DVD that went through menus by default.
1858   * Beginning of menus in gnome interface.
1859   * Fix bug in ac3dec for mono streams
1860   * BeOS: new video output method, the vlc now uses BBitmap instead of
1861     BDirectWindow (better performances)
1862   * BeOS: added resizing
1863   * BeOS: added beta support for overlay
1864   * Added a plain Gtk+ port of the Gnome interface, for the gnome-impaired
1865     people. Gtk+ is now compiled by default, while Gnome isn't (you will
1866     have to add --enable-gnome when running configure)
1867   * Replaced -lcurses with -lncurses in configure.in.
1868   * Added DemuxPSI, DecodePAT and DecodePMT. Never tested which streams
1869     where PAT or PMT are splitted in more than one section.
1870
1871 0.2.62
1872 Fri,  2 Mar 2001 17:32:24 +0100
1873
1874   * DVD plugin is still non-functional when you don't have DVD ioctls,
1875     but at least it compiles under BeOS as well.
1876   * Minor cosmetic changes here and there.
1877   * Added the BeOS code for vlc_mutex_destroy() and vlc_cond_destroy()
1878   * Minor optimizations in the video decoder.
1879   * Move ac3 globals variables into structures
1880   * Fixed a bash-ism in configure.in
1881   * Fixed a segfault in input.c when no input plugin was found for
1882     a given file.
1883   * Fixed a deadlock in the Gnome interface. Next time I'll initialize
1884     my mutexes, I promise.
1885   * Added Oct to the authors list in intf_gnome.glade :)
1886   * Second step in area management ; everything is in place now to have
1887     title handling; it is coming :)
1888   * Ported Glide and MGA plugins to the new module API. MGA never worked,
1889     so this didn't make it work better.
1890   * Started thinking about built-in modules, and added some code to
1891     make it easier eventually.
1892   * Added Oct in the AUTHORS file.
1893   * Fixed a mistake in configure.in.
1894   * All your base are belong to us.
1895   * Fixed a bug in src/misc/modules which prevented loading modules
1896     when launched from the Tracker.
1897   * Fixed a similar bug in src/video_output/video_text.c.
1898   * BeOS CSS support, thanks to Markus Kuespert <ltlBeBoy@beosmail.com>
1899     who ported the Linux DVD ioctls. We can now read encrypted DVDs
1900     under BeOS ! Woohoo.
1901   * First serie of changes in DVD module for the forthcoming interface menus.
1902     There is a new capability in input type modules for setting the
1903     attributes of a new area. It is set to NULL for PS and TS plugins.
1904     It should be called for every title change, chapter change,
1905     audio mode change or spu channel change.
1906   * Kludge of the kludge, removing an oddity in YUV initialisation, and
1907     activating YUV overlay on startup whenever hardware acceleration is
1908     available. Thanks for bearing with us, stay tuned.
1909   * mux_rate parsing.
1910   * Changed video decoder's error messages into warnings.
1911   * Add dither fix
1912   * Drag and drop support under BeOS.
1913   * Change in the code to detect beginning of movie. It is much better now
1914     but still fails with some DVD for which the movie is not the first
1915     Program.
1916   * Beginning of ideas to handle chapters and ES selection
1917   * configure.in and Makefile.in patches for better SDL support and
1918     support for $(bindir) $(datadir) and $(libdir) stuff, courtesy
1919     of Arkadiusz Miskiewicz <misiek@pld.ORG.PL>
1920   * Ported ggi.so to the new modules API. As for the other modules, only
1921     the "q" key works. Moreover, VLC doesn't exit cleanly if you close the
1922     GGI window.
1923   * Deactivated non-working widgets in the Gnome interface.
1924   * Added CONTRIBUTORS file.
1925   * Ported the framebuffer plugin to the new module API. As for most of the
1926     other video output modules, keyboard doesn't work. Except ^C to quit.
1927   * UDF filesystem support so that we know the location of the first video
1928     related file with 100% reliability (great change that should make DVDs
1929     with binaries and extra stuff work with vlc).
1930   * Correction of a bug in ifo reading that falsified the adress of
1931     video titles.
1932   * Changed the method for selecting title at start. It is _not_ reliable
1933     though, but it is better than the preceding one.
1934   * Tried to fix the BeOS interface and video output. Any BeOS developers
1935     listening ? I can't even test that code, it probably wants additional
1936     fixing.
1937   * Added a workaround in modules.c for broken libc's which happen to truncate
1938     filenames in dentry structures when using 64bits offsets. The kind of
1939     stuff you only see in RedHats <g>.
1940   * Made the SDL error messages a bit more useful.
1941   * The Gnome menu is now created when mouse is released, not when it
1942     is pressed. It may sound stupid, but it really makes a difference.
1943
1944 0.2.61
1945 Fri, 16 Feb 2001 08:09:59 +0100
1946
1947   * Fixed package building (both RPMs and .debs).
1948   * Fixed `make snapshot' rule.
1949   * Added some magic to filename detection. To read a DVD you now just
1950     need to run 'vlc dvd:/dev/hdc' for instance. Same for file:// URIs.
1951   * Fixed a segfault in the slider when no stream was playing.
1952   * Made the slider go from 0 to 100 (instead of 99 :)
1953   * The vlc now doesn't exit when finished playing. As a side effect of
1954     the playlist code being very recent, it continuously loops.
1955   * Fixed a segfault in the input thread creation, as well as a possible
1956     deadlock. This happened mostly when opening non-existing files.
1957   * Created input_SetStatus to do input_SetRate's job. input_SetRate will
1958     be used to set an arbitrary rate, for people who want to read DVDs at
1959     1/2.71828 times the actual speed.
1960   * Stubs for the ncurses control interface. No working code yet, but the
1961     holes just need to be filled.
1962   * Improved X11 support. Still not as functional as before.
1963   * The output window now states the method name, so that people know whether
1964     they are using X11 or SDL.
1965   * The Gnome interface is now drag'n'drop aware, you can drop a file
1966     on it just like Xine does (or so I guess).
1967   * New more recent css authentication code.
1968   * Beginning of udf support (not in Makefile)
1969   * Removed useless includes in intf_gnome.c
1970   * Made the vout_sdl.c functions static
1971   * Ported vout_x11.c to the modules API; code isn't very nice yet though
1972   * X11 output works again. It's just the output, but it works; I now need
1973     to clean the code and add event handling.
1974   * Should have fixed the dependency generater for some plugins.
1975
1976 0.2.60
1977 Wed, 14 Feb 2001 08:33:46 +0100
1978
1979   * Started porting the X11 vout (still disabled)
1980   * A few unnoticeable changes in the Gnome intf
1981   * Changes in the way stream size in DVD mode is calculated. It is no
1982     longer such an ugly kludge and is much more accurate.
1983   * Changes in DVDSeek so that the interface slider is in 0 when we are at
1984     the beginning of the strem.
1985   * Try to detect the beginning of the movie in the middle of the title. It
1986     works for most of the DVDs but will begin in the middle of the movie
1987     with some others.
1988   * Calculate only the first title key in css mode because it might take a
1989     long time with some title. The search stops now when we have a key once
1990     whereas it did stop only when we had it twice before. It should not
1991     cause problems.
1992   * Really fixed MC segfault bug.
1993   * Adaptation of DVD module to navigation slider. The seek has to be
1994     done on a multiple of 2048, and shopuld take care of the offset to the
1995     beginning of the stream. It works with most of my DVDs by fails to
1996     detect size of some streams.
1997   * Change of the order of call to ifo and css functions in input_dvd.c,
1998     because we can't read ifo files before authentification on some DVDs.
1999   * Changed location of some css tables.
2000   * We read ifo date and decrypt css keys for all titles now. It takes quite a
2001     long time to initialize with some DVDs (if you have 42 titles for
2002     instance). The key decryption might give a false value if the title is
2003     less than 10 Mb ; I'm working on that :)
2004   * Quick patch to avoid a segfault when arbitrarily seeking the stream.
2005   * Added --intf option to vlc
2006   * Started cleaning vout_sdl.c
2007   * The dummy plugin works again
2008   * Added a slider to the Gnome interface so that we can browse through streams
2009   * Removed enhancement because of an incompatibility with slow motion.
2010   * We can now seek at position 0 :p ;
2011   * Tried to enhance picture dating on timebase discontinuities.
2012   * Fixed pause bug.
2013   * Much cleaning in css code. It should work fine now.
2014   * Fixed my old stupid bug that disabled sound after having played the
2015     first playlist item.
2016   * Added `Prev' and `Next' buttons to the interface, with the beginning of
2017     a playlist window (still empty).
2018   * Added `Slow' and `Fast' buttons to the interface and popup menu.
2019   * Removed tests against i_rate and i_new_rate calculation from the
2020     plugins and hid this complexity into input_ext-intf.c
2021   * The pure Gnome part of the Gnome interface has been rewritten from
2022     scratch, and the .glade file included as well. You can edit it by
2023     installing glade-gnome and doing `glade plugins/gnome/intf_gnome.glade',
2024     or directly by hand if you grok XML.
2025   * Files can now be loaded into vlc using the `Open' buttons. But for the
2026     moment you still have to launch vlc with at least one file, because it
2027     quits when the end of the playlist is reached.
2028   * Idle screen was disabled because it eats a lot of CPU and is mostly
2029     useless for the moment. And it gets activated when pause lasts for too
2030     long.
2031   * Plugins have completely disappeared, we now only use the new module API.
2032   * All intf and vout modules are now independant. So far, only the Gnome
2033     intf module and the SDL vout module have been ported. configure.in has
2034     been modified to reflect the changes (x11 and dummy aren't compiled by
2035     default anymore, while SDL and Gnome are).
2036   * Right-clicking on the SDL video output window brings the Gnome menu.
2037   * Pause, Play, Exit, About work from the menu or from the interface window.
2038   * The old SDL keys still work.
2039   * Fixed a bug in #define that prevented from using ioctls
2040   * Some functions to prepare ifo commands utilisation to move in the
2041     structures of DVDs
2042   * Change in configure to avoid compiling css functions on BSD.
2043   * Added comments to src/interface/intf_plst.c and include/intf_plst.h
2044     so that people understand how the playlist works.
2045   * Updated the TODO list (34 items to do, 41 done !)
2046   * Portability : changed off64_t to off_t and activated appropriate
2047     GNU/Linux options ;
2048   * Changed fseek() to fseeko() for 64-bit offsets ;
2049   * Reset frame predictors on a stream discontinuity.
2050   * Implemented basic stream navigation function, and bound Jump forward
2051     and jump Backward in the SDL intf. Enjoy !
2052   * Pause function implemented ('p' key).
2053   * Fixed a compile probleme on machine without a dvd player :ppppp
2054   * Fixed two bugs in ifo and css that caused memory corruption and
2055     segfault when using sdl in dvd mode.
2056   * Moved the playlist handling from input/input.c to interface/interface.c
2057   * Fixed a few warnings at compile-time.
2058   * Fixed sound channel selection in playlist mode.
2059   * Added a color message in the plugin bank because on peut bien déconner
2060     cinq minutes, quand-même.
2061   * We now spawn a new input thread for each file.
2062   * Added a missing pf_close() because it's always cool to close files
2063     after we read them.
2064   * Solved bug with cssdescrambling. The vlc might segfault with dvd
2065     plugins. I will fix that soon.
2066   * Minor modification in pluginification.
2067   * Playlist works again (still the old wrong way like Meuuh doesn't
2068     like, but this is going to change within a few hours)
2069   * Input_ps, input_ts and input_dvd are now plugins, located in
2070     plugins/mpeg/ and plugins/dvd/
2071   * Fast/slow keys are now A/Z instead of A/S since S was already
2072     linked to the scale/noscale toggle.
2073   * `--dvd' doesn't work anymore, for the moment try to use :
2074     vlc --input dvd /dev/dvd
2075   * Module bank is now less verbose ; use `--warn 1' to turn back
2076     verbosity on
2077   * New method using netlist to read packets on DVD device by sectors of
2078     2048 bytes.
2079   * Some modifications in netlist to make it work with DVD.
2080   * Fixed Ã  bug in mpeg_system.c
2081   * We can now choose the speed of forward (between 32/1 and 1/8)
2082   * Functional fast forward and slow motion API ;
2083   * Dirty hack in the SDL intf to bind "a" (fAst forward), "s" (Slow motion)
2084     and "p" (Play).
2085   * Centralized clock management, preparing for stream navigation ;
2086   * Fixed a bug in the management of the first video PTS.
2087   * Fixed a bug in period calculation for progressive sequences.
2088   * Fixed a FIXME in SDL: p_vout->p_sys is no more used in intf_sdl.c
2089   * Used instead p_vout->i_changes like in x11
2090   * Disabled SDL parachute to let the vlc dump a core instead of staying stuck
2091   * Patched 2 debian bugs
2092     (see http://bugs.debian.org/cgi-bin/pkgreport.cgi?pkg=vlc)
2093   * Improved the snapshot generation
2094   * Mouse pointer hidden/shown with middle button in SDL output
2095   * Removed obsolete video_yuv_mmx.S
2096   * Updated the TODO list and wrote a small todo.pl parser to make it
2097     easier to see which items remain to be done
2098   * `make snapshot' now creates vlc-*.tar.gz and vlc-*-nocss.tar.gz
2099
2100 0.2.50
2101 Wed, 31 Jan 2001 04:30:37 +0100
2102
2103   * Version 0.2.50 for the Linux Expo
2104   * --overlay and --fulscreen options (only work with --vout sdl)
2105   * The vlc exits after the end of the stream, which prevents from having
2106     to kill it and relaunch it during a presentation.
2107   * Not a very nice hack, but will probably spare us a few user complaints: if
2108     no -a option is specified, the vlc will play the first audio type it finds,
2109     so there is no need to specify "-a ac3" for a DVD anymore.
2110   * CSS support kludged for current DVD input.
2111     It is very slow now but will be more adapted to the forthcoming DVD
2112     input.
2113     It should read the first title of many DVDs but has been tested with few.
2114   * Beginning of ifo commands to implement DVD navigation.
2115   * Fix for field pictures.
2116   * Hooks for fast forward and slow motion support.
2117   * Fixed backwards moves.
2118   * Tuned up optimizations.
2119   * Completely removed BIZARRE_OPTIMS.
2120   * Check for the needed headers for DVD ioctls
2121   * Some cleaning in the dvd authentification code
2122   * Various miscellaneous minor optimizations of the video parser.
2123   * Beginning of support for encrypted DVDs.
2124   * It only tests encryption and authenticates disc.
2125   * Really fixed GetChunk now.
2126   * 32-bit aligned bitstream (not that fast).
2127   * The motion compensation routines are now modules as well ; choose your
2128     implementation with `--motion motion', `--motion motionmmx' or
2129     `--motion motionmmxext'. Of course, the best implementation is chosen
2130     if you don't ask for any. There doesn't seem to be any performance hit
2131     due to the move to shared libs, which is a good thing. Please test
2132     actively if you have time, though.
2133   * Updated --help result, manpage, INSTALL document, and a few files.
2134   * Borrowed LiViD's MMX and MMX EXT IDCT. This might break things. Expect
2135     a performance increase.
2136   * Removed a few useless malloc() and unused variables in the audio SDL stuff
2137   * Prepared the work for built-in modules (not yet finished)
2138   * Small tweak in the copy handling, reduce CPU usage.
2139   * --aout sdl now works
2140   * Added SDL sound support. Sounds a bit laggy sometimes but my streams
2141     are ill.  please try.
2142   * Modified configure.in and all that stuff. Re-run configure
2143   * SDL audio, video and interface are all part of the same .so now.
2144   * Removed YUV old files :->
2145   * Reverted something that wasn't supposed to go into the cvs :p
2146   * Removed -fargument-noalias-global which causes problems with as (???).
2147   * Borrowed livid's latest libmmx and MMXEXT MC. Not in the Makefile => to
2148     test it, replace vdec_motion_inner_mmx.c by vdec_motion_inner_mmxext.c.
2149   * A few changes in the CPU extensions detection code, borrowed from the
2150     kernel and from mpeg2dec. I still don't know how to detect if code
2151     compiled with -mcpu=pentiumpro will run, since the cpuid arcanes are
2152     quite obtuse to me. Perhaps we should also have a way not to load modules
2153     if they have been compiled with a different CPU to avoid segfaults.
2154   * Add check for MMX EXT extensions, which doesn't work, which is a good
2155     thing since there is no MMX EXT IDCT yet :)
2156   * Change for the forthcoming fast forward and slow motion support.
2157   * Fixed the --aout, --idct and --yuv flags
2158   * Updated manpage and --(long)help output to reflect that change
2159   * Removed a few unneeded #includes here and there
2160   * Cosmetic changes in error messages in input.c
2161   * Now use of 64 bits offsets to parse the whole DVD. So we have all the
2162     available information
2163   * Fixed a bug in parsing of VTS attributes
2164   * Fixed a bug in input.c that made input plugin initialize even though
2165     no stream is reachable (thanks Sam)
2166   * Merged the YUV plugins in the same directory to avoid too much code
2167     duplication
2168   * YUV transformations now use the new module API ; now only the vout
2169     and interface still depend on the old plugin API
2170   * Changed TestMMX to TestCPU because we will be able to test for other
2171     specific extensions (3DNow, SSE) for the forthcoming IDCT we'll
2172     borrow to mpeg2dec (as usual :P)
2173   * Don't show "hiding module" messages anymore except in debug mode
2174   * Swapped C IDCT and Classic IDCT scores since the classic one seems
2175     to be faster ; anyway you should use the MMX one
2176   * Fixed a Makefile bug under BeOS
2177   * Tried to fix the cpuid code so that it compiles under BeOS (Polux, can
2178     you test it when you have time ?)
2179   * Fixed a bug in the frame rate handling ;
2180   * Fixed a bug in the DTS/PTS ordering. Our pts are _at last_ accurate.
2181   * Finally fixed repeat_first_field and co. (pas encore tout compris...)
2182   * Implemented video_parser bitstream callback for PTS/DTS.
2183   * Fixed close button support in SDL
2184   * Fixed --width and --height support in SDL
2185   * Fixed the bug-that-made-the-vlc-segfault-on-exit, which means that
2186     more than ever, Â« le client ne segfaulte pas Â».
2187   * There was still a problem upon quitting: sometimes the null packet
2188     wasn't big enough to reach a decoder breakpoint, so I now create 10
2189     of them (since I can't make it bigger) to be sure. Meuuh, what do
2190     you think ?
2191   * Fixed the Makefile to spare a few variables here and there.
2192   * Reduced module hide delay, removed loading of the audio output
2193     plugins since they are now modules.
2194   * Changed a few intf_Msg to intf_DbgMsg, and added "vout:", "intf:",
2195     and so on in a few other messages.
2196   * Removed unused includes in the idct modules.
2197   * Correction of bugs in ifo parsing. Now the structures should be well
2198     initialized. It remains some segfaults but it globally works.
2199   * DVD mode is enabled with option --dvd. For the moment, it only read
2200     the first vts and find the movie if it is at the beginning of the title
2201     set.
2202   * Beginning of dvd_input. Parsing of ifo file almost completed.
2203   * The IDCT functions are now located in modules : the classic IDCT,
2204     our optimized IDCT, and MMX IDCT.
2205   * Cosmetic changes for modules (pf_* instead of p_*)
2206   * Fixes to the BeOS and dummy modules
2207   * Changed default values :
2208     INPUT_PTS_DELAY down to 200 ms ;
2209     video heap down from 10 to 5 pictures ;
2210     decoder fifo size from 1023 to 511 PES ;
2211   * Fixed various bugs in 32 bit-versions of input_ext-dec.h ;
2212   * Fixed a bug in GetChunk() ;
2213   * Renamed GetByte, GetWord, ShowWord to _GetByte, _GetWord, _ShowWord ;
2214   * Moved decoder_fifo-specific code from programs.c to dec.c ;
2215   * Fixed bugs in program.c that prevented vlc to close all decoders ;
2216   * Gave sam a lesson for the use of the bitstream in spu_decoder.c :ppp ;
2217   * Made the video parser unlock the reference pictures before quitting
2218     (still one left, yaknow why ?)
2219   * Destroy fifo mutex and cond variables _after_ they are used for
2220     the last time. henri, that'll be one binouze.
2221   * Attempt to port the BeOS audio plugin to the new module API. Will
2222     probably need a few fixes to work or even compile.
2223   * Ported the alsa plugin to the news vlc module API
2224   * Fixed 32 bits bitstream bugs.
2225   * Moved the MPEG audio decoder to the new bitstream
2226   * Cleaning in the SPU decoder.
2227   * Moved swab32 from input_ext-dec.h to common.h. We probably won't need
2228     it anymore really soon, since ntohl() and htonl() seem to be properly
2229     optimized when gcc is passed the right optimization flags.
2230   * Fixed GetBits32 and RemoveBits32. I know the #ifdefs are useless since
2231     we only support u32 words, but it's a safe reminder. Comments appreciated
2232     on this fix since I may have b0rked something -- it runs well here though.
2233   * Changed code for handling b_die in bitstream ;
2234   * Moved input_ext-dec.h to input.h ;
2235   * New input_NullPacket function ;
2236   * Fixed init bugs in input and vpar ;
2237   * Placed a callback to the decoder in the bitstream structure ;
2238   * Fixed a purify bug in input_ps.c ;
2239   * Added -mcpu=pentiumpro in the Makefile.
2240   * Complete commenting of modules_core.h and small modifications
2241   * Separated MODULE_CONFIG_START and ADD_WINDOW (Henri, beware)
2242   * Fixed a very, very old bug that caused namespace collision between
2243     plugins (Henri, beware: call your aout_getplugin function like this,
2244     not alsa_aout_getplugin)
2245   * Removed the Debian specific clean rules from the Makefile, since they
2246     are already handled by the debian/rules script.
2247   * Tidied a few compilation rules (-lfoo should always be at the end)
2248   * Added 8bits palette SDL support.
2249   * Fixed a warning under FreeBSD (dlerror() is a const char*, not a char*).
2250   * Made configure script look for the bswap assembly instruction (using
2251     AC_TRY_COMPILE makes sure the compiler will really accept it).
2252   * Fixed colors' bug (TODO: write a function in vout that recalculate colors
2253     from RGB masks);
2254   * Cleaning of the fullscreen switch, still sucks but the surface is not
2255     reallocated and that's good (thanks to the magic function
2256     SDL_WM_ToggleFullScreen provided by sdl library :).
2257   * Added a missing mutex_unlock in video_output.c
2258   * Moved a mutex_destroy after the thread cancellation to prevent
2259     possible problems
2260   * Added a missing #ifdef in intf_msg.c which prevented compilation
2261     with --enable-debug
2262   * Fixed a bug in the input that prevented to quit properly in certain
2263     cases (some ES were not deleted because their index was skipped when
2264     the former one was deleted, well Meuuh should know what I mean)
2265   * Cleaning of SDL Lock/Unlock Surface.
2266   * All plugins now compile with -fPIC.
2267   * Made the audio_output API a bit simpler.
2268   * Got rid of modules_config.h.
2269   * Fixed `make install' rule.
2270   * Fixed warnings in the MMX YUV compilation.
2271   * Probably fixed a bug in the input : pp_foo structures were free()d at
2272     the end, but this was useless since the last call to realloc() is
2273     equivalent to free(), and two consecutive calls to free() aren't a
2274     goo idea.
2275   * We check that the version number match and that we don't already have
2276     a module by that name when loading a new module.
2277   * All public module_* functions now properly lock the module bank.
2278   * The audio_output now uses the new module API ; EsounD and DSP modules
2279     have been ported, which should be enough for Henri to port the ALSA one.
2280   * Added vlc_mutex_destroy and vlc_cond_destroy function, for pthreads.
2281     Used them before quitting, every lock and cond is destroyed
2282   * Checked the return value of malloc and realloc in input_programs
2283   * Fixed compilation pb under solaris 2.6
2284   * Should compile & run on Solaris with ./configure --disable-dsp
2285     (tested on puma)
2286   * Removed most SYS_SOLARIS #ifdef's in favour of more generic tests
2287   * Updated example ./configure line in INSTALL file
2288   * Now we only load modules that end with ".so"
2289   * null module is compiled by default
2290   * Fixed initialization of payload_start and payload_end
2291   * --enable-sdl and some others are now --with-sdl[=name] to supply an
2292     optional library name ;
2293   * Deleted all unnecessary #include <sys/uio.h> ;
2294   * /usr/include is now searched when looking for libraries and headers.
2295   * src/misc/modules.c is in a workable state now.
2296   * Splitted modules.h into modules.h and modules_core.h to enable
2297     clean compilation of the Null Module.
2298   * Added the Null Module, the module that does nothing but that is going
2299     to be of great help for debugging my module code.
2300   * Plugins are now called modules, because we will be able to compile
2301     them either as a dynamic plugin, or within the program. And, more
2302     important, I can commit this without having to break the vlc :)
2303   * Fixed pitch bug;
2304   * video_output.c : compute picture size even if b_need_render == 0;
2305   * Fixed a deadlock (the vout unlocked a mutex locked by another thread,
2306     grrrr, I'll kill someone) ;
2307   * Put config.h in front of others in audio_decoder.c.
2308   * Better display of the fps.
2309   * Removed i_iovec_start and i_iovec_end. Used i_data instead
2310   * Fixed THX Cimmarron bug (it was _not_ a synchro bug).
2311   * Fixed a bug in the DTS/PTS parsing ;
2312   * Fixed a bug in vpar_headers.c synchro handling introduced before ;
2313   * Enhanced synchro's handling of dates and frame structure changes.
2314   * Fixed a bug in the PSM decoder.
2315   * We now read the DTS (but we don't use it for the moment).
2316     NB : b_has_pts has disappeared for brevity reasons, use i_pts != 0 instead.
2317   * New synchro statistics and warnings.
2318   * Avoid calling SafeRead() with a null packet size.
2319   * Use of ptrdiff_t whenever necessary (IA-64 port) ;
2320   * Changed behaviour of preparsing code, faster startup ;
2321   * Fixed DecodePSM(), cannot test ;
2322   * Cleaned up ParsePES(), fixed a bug which could reject very small but
2323     valid PES packets ;
2324   * Fixed cosmetic bugs in vpar_synchro frame_rate display.
2325   * Changed subtitles palette.
2326   * SPU decoder now uses Meuuh's GetChunk() code.
2327   * Lots of cleaning in the SPU decoder.
2328   * Message queue is flushed before we spawn input.
2329   * Fixed so that it compiles with VDEC_SMP (no good sync yet though).
2330   * Using i_id instead of i_stream_id whenever possible ;
2331   * Fixed a bug in -c and -s options.
2332   * Fixed a compile pbm in debug mode (f34r d4 1-line fix)
2333   * Fixed AC3 and SPU PES reading (ph34r da one-byte patch)
2334   * Some 79 char wrap.
2335   * No need to add "\n" at the end of intf_*Msg() messages anymore.
2336   * Moved input_DecodePES() to input_dec.c ;
2337   * Fixed an segfault in input_programs.c ;
2338   * Added -fomit-frame-pointer optimization.
2339   * Fixed a *major* memory leak in the pre-parsing code. Hopefully it should
2340     be the last one.
2341   * New decoder spawning API input_dec.c ;
2342   * Moved p_input->pp_es -> p_input->stream.pp_es and clean up of
2343     input_programs.c & co ;
2344   * Fixed memory leaks.
2345   * Moved video_decoder's headers from include/ to src/video_decoder.
2346   * Temporarily removed b&w kludge.
2347   * Splitted up p_method_data/p_plugin_data ;
2348   * Cleaned up input_ts.c, added it into the Makefile.
2349   * Fixed various memory leaks.
2350   * Removed all arbitrary limits on the number of elementary streams.
2351   * Removed b_die and b_error from all decoders (obsoleted by decoder_fifo_t).
2352     All decoders should now exit cleanly (if it's not the case, it should be
2353     referenced as a bug).
2354   * Fixed a bug which prevented the input to exit normally (non-selected
2355     ES in the pp_selected_es array).
2356   * Added netlist support.
2357   * Added U8_Mono audio output
2358   * Fixed "-a [ mpeg | ac3 | lpcm | off ]" option
2359   * Only pre-parse the first 32 MB of data.
2360   * Added -a, -c and -s options. (-a doesn't work but I will let the people
2361     who thought it would be cleaner to put config in environment variables
2362     correct what's wrong in my code).
2363   * Now we only try to open plugins which are existing files
2364   * Big cleanup of the PS input plugin ;
2365   * Fixed a bug in AC3 initialization ;
2366   * PS streams are now pre-parsed (this can take a while) if possible ;
2367   * Move #define from audio_output.h to config.h
2368   * Change vlan_server_ip to vishnou's ip (but vlans not working yet)
2369   * GetChunk() : reads n bytes from the elementary stream and places them
2370     in a big buffer (a gift for Sam).
2371   * Quantic start in fullscreen fixed.
2372   * Input-II now correctly handles private stream 1 (AC3, DVDSPU).
2373   * Split the audio decoder into adec_generic, adec_layer1 and adec_layer2
2374     (no new code added)
2375   * Added SDLYUV support,
2376   * Fixed the ratio/position problem in YUV,
2377   * We now display CPU usage statistics for each thread.
2378   * Additional fix for Layer 1 mono
2379   * Indentation fixes
2380   * Fixed audio syncword detection for mpeg 1 streams (hopefully)
2381   * Fixed Layer 2 Mono decoding.
2382   * Hardware YUV overlay (SDL) with real colors ;p It may suck for non
2383     4:2:0 streams.
2384   * Removed vout code found in intf file to support fullscreen switching.
2385     Now only vout_SDL updates SDL data and intf only switch flags such as
2386     b_reopen_display and b_fullscreen in p_vout->p_sys.
2387   * Fixed a var name typo in input_programs.c which prevents vlc from
2388     compiling with --enable-debug option. (i_es_pid -> i_es_id :)
2389   * Autodetection of Overlay support
2390   * Fixed support for broken MPEG-1 files.
2391   * Cleaned up program and ES management by using input_programs.c whenever
2392     necessary.
2393   * Cleaned up decoder spawning.
2394   * Enhanced handling of stream discontinuities.
2395   * Fixed two typos in the Makefile (sam you owe me at least one beer)
2396   * Moved b_discontinuity to pgrm_descriptor_t, cleaned up CRDecode
2397     (needs some more cleaning for discontinuities)
2398   * Added pf_new_pes in plugins
2399   * Fix in the SCR parser for high values.
2400   * Fixed a bug with DVD's SCR (too close from the PTS).
2401   * Generation d'un makefile presque correct pour les vieilles versions de make
2402     Nettoyage: gestion des dependances pour les plugins, suppressions de pas
2403     mal de redondances, options de compilations coherentes, etc...
2404   * Code to manage es_descriptors and program_descriptors, from benny's
2405     input_psi.c
2406   * VLAN support modified.
2407   * We now correctly parse MPEG-1 SCR and there is no need to kludge to read
2408     the stream at the right pace.
2409   * Fixed a bug in the synchro with non-P5/B1 streams.
2410   * Support for MPEG-1 .mpg files.
2411   * Fixed a bug in the synchro with non-P5/B1 streams.
2412   * The input-II.
2413
2414 0.2.0
2415 Wed, 31 Jan 2001 04:30:37 +0100
2416
2417   * Version 0.2.0 pour la Linux Expo
2418   * Backport of the sdl plugin (minor correction in video_output as I made
2419     in unstable)
2420   * Ajout des options --fullscreen et --overlay
2421   * Added hardware YUV overlay support (SDL). Huge performance
2422     increase.
2423   * Fixed MPEG audio decoding for streams without b_data_alignment flags.
2424   * Fixed a bug in the SPU decoder which caused a segfault.
2425   * Support for 8bit soundcards.
2426   * YUV support for SDL.
2427   * We now open /dev/dsp in non-blocking mode.
2428   * Frame dropping enhancements for very slow machines.
2429   * Fixed a buffer overflow under BeOS.
2430   * Miscellaneous framebuffer fixes.
2431   * Miscellaneous SDL fixes.
2432   * MMX Y4Gray16 colorspace transformation.
2433   * Optimized grayscale mode.
2434   * Fixed volume control.
2435   * Splash screen.
2436   * Minor changes in the Debian files.
2437   * Fixed fps display.
2438   * Fixed MPEG1 video decoding. We don't read MPEG 1 PS files for the
2439     moment.
2440   * Fixed a 100% cpu usage bug, in the dummy aout.
2441   * Added a 'f' shortcut to switch between Windowed and Fullscreen
2442     mode.
2443   * Added --broadcast option for network input.
2444   * Screen is now emptied when framebuffer output exits.
2445   * Totally new frame dropping algorithm.
2446   * Fixed a bug in video_ouput.c which trashed more late pictures than
2447     necessary.
2448   * Fixed the DEBUG mode in the Makefile.
2449   * Fixed a bug in mwait() which made us wait too long.
2450   * The video_decoder can now be split into several threads to take
2451     advantage of the SMP machines.
2452   * Added --enable-debug, --enable-stats, and --disable-optims in the
2453     GNU configure stuff.
2454   * Added alsa audio support (plugin)
2455   * vlc is now compiled without the STATS mode by default.
2456   * Fixed a bug which made frames go backwards with some displays (the
2457     video_decoder thread is now niced).
2458   * Added intf_WarnMsg(), and made use of it in the most needed places.
2459
2460 0.1.99i
2461 Mon, 28 Aug 2000 02:34:18 +0200
2462
2463   * fixed the support for field pictures, which involved a few dozens
2464     bugs in the video parser and video decoder.
2465   * put names of authors under a lot of source files, for historical
2466     purposes.
2467   * fixed another input_file exit bug for the beos version.
2468   * fixed the aliases install.
2469   * renamed an inconsistent variable in src/input/input_file.c.
2470   * added support for I+ synchro (all Is and the first P).
2471   * fixed a motion compensation bug which generated some distortion
2472     on B images.
2473   * fixed a motion compensation bug for skipped macroblocks.
2474   * fixed a synchro bug for field images.
2475   * cleaned Octplane's crappy indentation.
2476   * fixed the --server option which didn't work if a ~/.vlcrc existed.
2477
2478 0.1.99h
2479 Tue, 22 Aug 2000 01:31:58 +0200
2480
2481   * fixed the sound issue under beos.
2482   * fixed a bug that was making the crash randomly under beos.
2483   * fixed a bug that was exhausting system ressources under beos.
2484   * improved the cond_var for beos.
2485   * added support for the SDL vout : the --display fullscreen allows
2486     fullscreen when possible. Disabled by default.
2487   * added sdlvlc (which probably should start in fullscreen, no ?)
2488   * removed sdlvlc :)
2489   * updated debian directory to build vlc-sdl.
2490   * removed CCFLAGS flags which were improperly used.
2491   * added hints for powerpc build.
2492   * fixed the input_file exit bug.
2493   * fixed a Makefile bug which removed the CVS directory.
2494   * removed the frame statistics output.
2495   * removed a verbose message in intf_sdl.c.
2496   * added a few sanity checks in the audio mpeg and ac3 decoders.
2497   * temporarily got rid of vlc.channels.
2498   * added notice in debian/control about unencrypted DVDs.
2499   * fixed PowerPC .deb build.
2500
2501 0.1.99g
2502 Wed, 16 Aug 2000 01:07:14 +0200
2503
2504   * removed all "*vlc" aliases except "gvlc" and "fbvlc". The other sucked.
2505   * new --synchro flag which lets you force which images are decoded.
2506   * removed an unused variable in the MMX YUVs.
2507   * fixed 32bpp MMX YUV, made the comments clearer, removed an emms.
2508   * now scaling is on by default, so that people won't tell that the vlc
2509     cannot do scaling :-)
2510   * fixed a few long lines.
2511   * fixed 8bpp YUV.
2512   * fixed the fscked up Bresenham algorithm in all YUV functions.
2513   * fixed a dumb bug in the Makefile that prevented inclusion of the
2514     -march=pentium directive. thanks Meuuh, blame sam.
2515   * fixed a warning in main.c.
2516   * separate Debian packages.
2517   * added request for ALSA support in the TODO list.
2518   * changed "pentiumpro" to "ppro" in the ./configure, it was misleading.
2519
2520 0.1.99f
2521 Tue,  8 Aug 2000 11:24:01 +0200
2522
2523   * plugin detection now works
2524   * "gvlc", "fbvlc", "ggivlc" aliases now work
2525   * fixed functions that weren't properly inlined
2526   * removed bloat from the MMX YUV plugin
2527   * vlc.init becomes ~/.vlcrc
2528   * removed float operations in the video decoder, and all emms asm functions
2529   * borrowed linuxvideo's MMX motion compensation
2530   * fixed an undefined symbol in the MMX YUV plugin
2531
2532 0.1.99e
2533 Thu, 20 Jul 2000 15:14:06 +0200
2534
2535   * new bitstream syntax and slight performance increase
2536   * BeOS build fix
2537   * removed the sample code from the reference decoder
2538
2539 0.1.99d
2540 Wed, 12 Jul 2000 01:24:40 +0200
2541
2542   * fixed RPM build
2543   * .deb is now more lintian-friendly
2544   * fixed vlc.spec to install nicely
2545   * PLUGIN_PATH and DATA_PATH now in include/*.h
2546   * removed a few useless warning messages
2547   * removed remaining header stuff related to the old non-free decoder
2548   * fixed the MGA build (doesn't work yet, though)
2549   * new plugin API
2550   * updated the INSTALL document
2551   * plugin auto-detection
2552   * fixed a few misspellings in the code
2553   * removed the default --enable-ppro option because it didn't work on K6-2
2554   * the framebuffer client now leaves the console in a working state
2555   * the dithered 8 bpp YUV transformation works again (blame bbp !)
2556   * the YUV transformations are now plugins as well
2557   * alternative symlinks like gvlc, fbvlc are now created at compile time
2558   * borrowed libmpeg2's GPLed MMX YUV transformations (16 and 32 bits)
2559   * fixed an endianness problem which occured on iMacs
2560   * fixed the build for the Mandrake distribution
2561
2562 0.1.99c
2563 Sun, 18 Jun 2000 18:54:48 +0200
2564
2565   * fixed Makefile.in for debug version
2566   * caught Delete Window event in Gnome and X11 modes
2567   * fixed man page
2568   * GGI output now works
2569   * fixed a segfault on exit for the Gnome plugin
2570   * fixed compile problems for BeOS
2571   * sound support almost works under BeOS
2572   * fixed a warning in ac3_exponent.c
2573   * automatic support for .rpm and .deb building
2574
2575 0.1.99b
2576 Sat, 17 Jun 2000 03:35:02 +0200
2577
2578   * fixed a bug preventing to quit when run with no arguments
2579   * new VLAN changing code
2580   * created the ChangeLog file :)
2581
2582 0.1.99a
2583 Thu, 15 Jun 2000 20:48:54 +0200
2584
2585   * first public release
2586