]> git.sesse.net Git - vlc/blob - ChangeLog
* VC++/Intel compiler fixes by Jon Lech Johansen <jon-vl@nanocrew.net>.
[vlc] / ChangeLog
1 #===================#
2 # ChangeLog for vlc #
3 #===================#
4
5 HEAD
6   * VC++/Intel compiler fixes by Jon Lech Johansen <jon-vl@nanocrew.net>.
7   * Better gtk-config detection.
8   * Removed duplicate checks in configure.in.
9   * Fixed a typo in vlc.spec.
10
11 0.2.81
12 Sat, 28 Jul 2001 04:13:57 +0200
13
14   * Fix in libdvdcss in the key caching code.
15   * Removed useless variables in configure.in which caused all subsequent
16     compilation tests to fail.
17   * Additional fixes to the sdl-config detection.
18   * Added a make uninstall rule.
19   * Changed libdvdcss API to force binary incompatibility. Yeah, this is
20     evil, but if we don't do it now we'll have to do it when more people
21     are using it.
22   * Fixed minor libdvdcss stuff such as the soname and compilation flags.
23   * New --with-dvdcss flag.
24   * Fixed a bug in aout spdif with dolby stereo (use of obsolete PTS).
25   * Format asm functions for gcc, fixed the segfaults with imdct_sse.
26   * Now using gcc -pipe.
27   * (Hopefully) fixed the #@!$ field pictures bug.
28   * Fixed the MMX YUV plugin issues with gcc 2.96 and 3.0.
29   * Updated TODO, cosmetic changes.
30   * Now use sdl-config for SDL.
31   * Fixed a stupid bug in buffer management with field pictures.
32   * Fixed a reinit bug after a discontinuity - such as seek().
33   * The spdif audio output won't kill itself anymore at the beginning.
34   * dvdcss_readv() optimisations for Win32.
35   * Fixed _win32_dvdcss_aread() to work around the WinASPI32 64kb transfer
36     size restriction.
37   * New and theoretically better Win32 pthread implementation.
38   * dvd_ifo.c now takes into account error messages from UDFFindFile.
39   * Fixed the "quit" event handling in directx/vout_events.c.
40   * Temporarily disabled aout_Probe() in aout_SDL (libSDL bug).
41   * ncurses compilation fix by Michael Mondragon <mammon@lokmail.net>.
42   * Fix for large inline functions and gcc 3.0.
43   * Fixed the gnome plugin so that it does not include gtk headers.
44   * libdvdcss segfault fixes.
45   * Tuned constants, since it seems to make people happy.
46   * Fixed the "paused movie won't restart" bug.
47   * Removed the outdated generic decoder.
48   * Rewrote the video decoder so that it can use multiple processors (--smp).
49   * Fixed a bug in the video decoder initialization.
50   * Grayscale mode now turns off chroma IDCT decoding.
51   * Kludged so that times displayed in the scrollbar are finally correct
52     for MPEG-2 streams.
53   * FreeBSD compilation fix by Øyvind Kolbu <oyvindk@world-online.no>.
54   * QNX RTOS plug-in by Jon Lech Johansen <jon-vl@nanocrew.net>.
55   * Added IDEALX developer documentation in doc/.
56   * Reactivated SDL parachute in non-debug mode (memory leak otherwise).
57   * Fixed GetChunk for chunks < 4 bytes.
58   * The Win98 DVD input is finally working.
59   * Fixed 2 Win32 bugs in libdvdcss (in _win32_dvdcss_readv), one of them
60     should have prevented the Win9x dvd input from working.
61   * Moved the "if(Win2k)" out of the loop in _win32_dvdcss_readv.
62   * Put a readv() function in input_iovec.h, the input_es plugin now compiles
63     (Win32).
64   * Modified input_ts to use readv() in input_iovec.h (Win32).
65   * Fixed an initialisation bug in vout_directx.c.
66   * Right clicking on the mouse displays the navigation menu (DirectX plugin).
67   * Fixed audio/video synchro bug with esd, should fix buggy sound due
68     to 44100-48000 Hz conversions.
69   * The Win32 GetMessage function has been isolated in a thread. This has
70     been done because this function can block the thread. Thanks to this
71     change, you can now move your window without any video and audio
72     interruption.
73   * libdvdcss enhancements by Billy Biggs <vektor@dumbterm.net>. This breaks
74     vlc's DVD input (looks like decoders are expecting data too early and
75     DVD input can't cope with it due to decryption). Needs to be investigated.
76   * Plugins are now compiled in plugins/* and libraries in lib/*.
77   * The KDE UI compiles again but does not work yet.
78   * ALSA plugin message corrections.
79   * Calculation modules can now be calledwith a shorter name
80     (eg. '--downmix mmx' instead of '--downmix downmixmmx').
81   * Fixed insane verbosity of the SDL plugin.
82   * Fixed the segfault in vout_UnloadFont.
83   * The Xvideo plugin now closes the video window when it XVideoGetPort
84     fails in vout_Create.
85   * Fixed alignement in imdct asm functions.
86   * 16 byte alignement for data (needed for SSE).
87   * Optimization in SSE downmix.
88   * Removed unnecessary translations in the win32 code from block offsets to
89     byte offsets. This was overflowing some variables.
90   * Reduced the complexity of the Win9x ASPI functions because we only need
91     to handle DVD drive access.
92   * Win32 code now handles seeking in areas above 2.1 Go on DVDs.
93   * Probably fixed the "X eats more and more CPU" bug. Please test.
94   * mingw32 cross-compilation issue fixed.
95   * Small optimization in vpar_blocks.c, sparing a few memset() calls.
96   * Additional error checking in vout_sdl.c.
97   * Minor manpage fix, conforming to Debian policy version 3.5.5.0
98     (Closes Debian bug #99561).
99   * Portablility fix: We now control the name to be used in the assembler
100     code for a C function or variable.
101   * Reenabled all the accelerated modules on Win32.
102   * Bugfix for chapters change in DVD.
103   * A few bug fixes for the directx plugin.
104   * Removed the custom usleep function for win32 as we don't really need
105     this accuracy, and it was eating cpu resources.
106   * Elementary Stream input plugin (use it with --input es). Only works with
107     video streams at the moment.
108   * Added command line option '--stdout <filename>' which redirects stdout
109     and stderr to the specified file. This option should mainly be useful
110     on Win32.
111   * On Win32, vlc now has an icon associated to the .exe file, and is a full
112     GUI application (you don't have this annoying dos command box anymore)
113   * Added INSTALL-win32.txt for specific details to the Win32 port.
114   * Compile fix for newer versions of MacOS X by Colin Simmonds
115     <colin_simmonds@Mac.lover.org>.
116   * Additional MacOS X DVD ioctl work by Eugenio Jarosiewicz
117     <ej0@cise.ufl.edu>.
118   * Win32 network support by Boris Dorès <babal@via.ecp.fr>.
119   * Fixed an alignment issue in the ifo parser. The Matrix problem should
120     be solved.
121   * Minor cosmetic fixes and warning removals here and there.
122   * FreeBSD (and probably QNX) shared memory handling fix.
123   * First libdvdcss version (0.0.1).
124   * Unrolled two loops in dvd_netlist.c to prevent message flooding.
125   * DVD input stuttering fix by Jon Lech Johansen.
126   * Removed a lock that caused late frames in DVDRead.
127   * Added gprof profiling support with --enable-profiling.
128   * Fully working Windows DVD ioctl support by Jon Lech Johansen.
129   * DirectX enhancements by Gildas Bazin, such as software rendering.
130   * Merged dvdcss_init and dvdcss_open into dvdcss_open, and dvdcss_close
131     and dvdcss_end into dvdcss_close. libdvdcss API now has 7 functions.
132   * Another failed attempt at profiling vlc under Linux: ported the
133     threads API to GNU Pth. Activate with --enable-pth. It doesn't seem to
134     spawn new threads for me, maybe someone will have better luck.
135   * Makefile optimizations.
136   * Automatic build of libdvdcss if not found.
137   * The DVD netlist no longer stops when the fifo is empty ; it just waits
138     until there are free vectors again.
139   * Exported the CSS part of the dvd plugin into a library.
140   * Slight modification in input_dvd since Getiovec wasn't at the right place.
141   * Send escape packet when changing title, not to be stuck in some decoder.
142   * The position in the title is now reset when we change title to
143     prevent a title from being unavailable because we're stuck at the end.
144   * Fixed a bug with 1-chapter-long titles that displayed chapter 0.
145   * Added a _temporary_ field in p_main to know whether the audio stream is
146     AC3 (ugly). It allows a vlc launched in spdif mode to play mpeg or lpcm
147     audio.
148   * Cleaned the title property messages to get rid of the ugly stars.
149   * Added LPCM support. It should work with stereo LPCM.
150   * Fixed a warning when compiling main.c.
151   * Checked that OS supports SSE instructions on PIIIs (to avoid illegal
152     hardware instructions on Linux 2.2.x).
153   * Fixed a bug in synchro reinitialization: we no longer have a shift each
154     time we restart the synchro (for SCR discontinuity for instance)
155   * In DVD mode, we reinit the synchro only if the SCR are not continuous
156     (instead of each cell).
157   * Tried to improve AC3 spdif to prevent desynchronization.
158   * Lots of DirectX plugin fixes by Gildas Bazin.   
159   * Compilation fix in message queue mode.
160   * Another FreeBSD compilation fix.
161   * SDL compilation fix for FreeBSD.
162   * Fixed compilation of motion modules as plugins.
163   * Applied old FreeBSD patch for dvd input by German Tischler.
164   * Found what was causing the slowdowns: a namespace collision. Put all
165     plugins into builtins again.
166   * Put most builtins in plugins again due to performances issues.
167   * Fixed the painfully slow build process (at last!).
168   * Added new dummy input plugin.
169
170 0.2.80
171 Tue,  5 Jun 2001 04:41:06 +0200
172
173   * BeOS interface compilation fix by Rene Gollent.
174   * DirectX plugin compilation fix by Gildas Bazin.
175   * Removed %ebx spill in the iMDCT plugins.
176   * Change to the set out of the BeOS code to allow more logical updates.
177   * Moved modules_builtins.h.in into src/misc. Please remove
178     include/modules_builtins.h in your local tree.
179   * DirectX plugin by Gildas Bazin <gbazin@netcourrier.com>.
180   * Fixed a double malloc/free bug in DVDRead.
181   * Win32 plugin support by Gildas Bazin <gbazin@netcourrier.com>.
182   * BeOS fixes. renamed iovec.h to input_iovec.h because of namespace issues.
183   * Miscellaneous Win32 fixes by Gildas Bazin <gbazin@netcourrier.com>.
184   * Win2000 DVD input by Jon Lech Johansen <jon-vl@nanocrew.net>.
185   * Applied patch from Jon Lech Johansen <jon-vl@nanocrew.net> to compile
186     vlc with MS and Intel C/C++ compilers.
187   * Updated the gtk/gnome interface to work in network mode.
188   * Fixed some bugs in interface (language menus in ts, misnamed fields).
189   * Play/Stop work in network mode to start/stop decoding of the stream.
190   * Fixed the BeOS compile typo.
191   * The ALSA plugin is back.
192   * A gift for Gildas: plugins don't rely on backlinking any more.
193   * Changes and bugfixes to make network work in VLAN Broadcast mode.
194   * Bugfix in the interface to access the network specific features.
195   * Some base of synchro in ac3 spdif.
196   * Fixed a bug with Previous chapter button in gnome.
197   * Added a wrapper for readv() on platforms which don't support it.
198   * Win32 compilation fixes, esp. the MAC retrieval.
199   * Fixed a warning for *BSD compilation.
200   * Patch by Eugenio so that the OS X interface and video output handle the
201     aout and vout banks.
202   * Applied Eugenio's fix to the DVDioctl driver. I didn't test it, but
203     it should not hang the kernel anymore.
204   * Ported most dvd_ioctl.c functions to the DVDioctl driver: ReportAgid,
205     ReportChallenge, ReportKey1, ReportASF, InvalidateAgid, SendChallenge,
206     SendKey2. They should comply with the "Mt. Fuji Commands for Multimedia
207     Devices" paper.
208   * Unification of gnome/gtk intefaces: now all the files are in plugin/gtk.
209   * Updated BeOS interface with new changes for playlist management.
210   * More cleanings in gtk interface.
211   * The dvd plugin reads again blocks of 32 sectors to gain speed.
212   * Added two functions which retrieve the MAC Address under Windows.
213   * 3D Now! imdct.
214   * We now do pthread detection for FreeBSD like the XMMS guys do. It
215     works even better.
216   * FreeBSD pthread fixes.
217   * AC3 IMDCT and downmix functions are now in plugins, --imdct and
218     --downmix options added.
219   * Bugfixes, cleanings in gtk.
220   * Initialization bugfixes in input_dvd.
221   * Added a b_stopped flag to interface playlist to have a stop function in
222     interface plugins.
223   * Updated the Gtk+ interface so that it has the same features as the
224     Gnome one.
225   * Beginning of SSE/3DNow! support for imdct and downmix.
226   * Ported alsa interface for alsa 0.9beta
227   * Fixed a deadlock in spudec.
228   * Added SPU cropping.
229   * Gnome interface segfault fix.
230   * BeOS interface segfault fix by Rene Gollent <rgollent@u.arizona.edu>.
231   * Fixed an aspect ratio issue in the SPU decoder, and optimized the
232     SPU renderer.
233   * Speed optimization in the handling of the unusual ephemer DVD subtitles.
234   * Little optimization to bozo's UnalignedShowBits fix.
235   * Race fix in the packet cache by Jon Lech Johansen <jon-vl@nanocrew.net>.
236   * Fixed a bug in UnalignedShowBits that makes some unaligned streams
237     not wotk correctly (for instance VLS' generated TS streams)
238   * Added support for some terribly braindead DVD subtitles in Kenshin
239     which do not have a "stop display" command. Anime fans rejoice!
240   * Fixed the BeOS interface to use p_aout_bank instead of p_main->p_aout.
241   * Coding-style butchery (mostly tabs).
242   * Changed the level arg in intf_WarnMsg so that it makes more sense.
243   * Beginning of the backport of Gnome to Gtk.
244   * Improved ac3 spdif output ( and made it work again :)).
245   * Added p_input->stream.p_selected_area->i_tell in input TS so that the
246     slider work with Transport Stream files.
247   * Moved b_fullscreen from p_vout->p_sys to p_vout and unified way of
248     toggling fullscreen.
249   * Tuned the Gnome interface appearance, added a Preferences window and
250     a Jump window, added Oct's playlist.
251   * Fixed a few warnings with gcc 3.0.
252   * aout and vout are now allocated in banks, making it possible to have
253     several of them at the same time.
254   * configure now checks for MMX and MMX EXT support in the assembler.
255   * Removed all MMX code from the main program and moved it to the
256     existing idct modules (Closes: Debian bug #96036).
257   * KDE interface.
258   * FreeBSD CSS decryption support.
259   * Fixed a segfault in TS input (psi packets with adaptation field).
260   * Corrected vlc-howto.sgml thanks to Arnaud Gomes-do-Vale
261     <arnaud@carrosse.frmug.org>.
262   * Fixed a remaining buffer overflow in the Gnome interface and applied
263     the patches to the Gtk+ interface.
264   * Fixed a segfault in the SPU decoder initialization.
265   * Mandatory step for video output IV and the audio output quality
266     fix: the output threads are now spawned when a decoder needs one,
267     so it can decide the audio frequency or the video window size.
268   * Fixed a few buffer overflows in the Gnome interface.
269   * The module bank is now a global variable. The video output bank and
270     the audio output bank might follow (when they exist).
271   * Coding style and organization fixes to the spdif decoder.
272   * autoconf and Makefile changes by Arnaud Gomes-do-Vale
273     <arnaud@carrosse.frmug.org>.
274   * DVD title change no longer restarts the input.
275   * BeOS crash fix by Wade Majors <guru@startrek.com>.
276   * Slight modification in ClockManageRef: after a synchro reinit, we still
277     do the mwait and re-init last-cr.
278   * New audio output using direct AC3 pass-thru.
279   * Fix for a buffer overflow in the Gnome interface by Shane Harper
280     <shanegh@optusnet.com.au>.
281   * DVD chapter change fixed.
282   * Fixed a bug in TS input, which should be much smoother now.
283
284 0.2.73
285 Sat, 28 Apr 2001 07:02:35 +0200
286
287   * Removed debug instructions in the audio output.
288   * Coding style fixes here and there.
289   * Miscellaneous QNX compile fixes.
290   * Changed --enable-debug into --enable-trace.
291   * Beginning of the mingw32 port by Gildas Bazin <gbazin@netcourrier.com>.
292   * Changed broadcast handling.
293   * Added a vlc-howto in sgml format in the doc directory.
294   * Fixed the continuous 'seeking position' bug in network mode.
295   * Support for `ts://foo:42' style input source.
296   * rc interface plugin for vlc control through /dev/stdin courtesy
297     of Peter Surda <shurdeek@panorama.sth.ac.at>.
298   * Misc XVideo fixes (aspect ratio, mouse pointer, blue areas).
299   * AC3 decoder enhancements.
300   * Fixed an alignment issue in the bitstream callback.
301   * Got rid of asprintf.
302   * Better angle handling (on the fly selection).
303   * Bugfixes in CSS.
304   * Various changes and bugfixes in the Gnome interface.
305   * XVideo fullscreen mode by David Kennedy <dkennedy@tinytoad.com>.
306   * X11 fullscreen mode by David Kennedy <dkennedy@tinytoad.com>.
307   * Fixed build process when no plugins or no builtins were chosen.
308   * Makefile changes to get around MacOS X's brain-damaged gcc.
309   * FreeBSD configure and Makefile patches, courtesy of Espen
310     Skoglund <esk@ira.uka.de>.
311   * Cosmetic change in css decryption.
312   * Added basic angle support.
313   * Corrected some bugs in gnome interface: language menu are now
314     synchronized and menus have less chances to change when opened.
315   * Network channel change is now available again.
316   * Fixed optional PES size bug, courtesy of Steve Brown <sbrown@cortland.com>.
317   * MacOS X icon is now correctly added to the app.
318   * Fixed a compilation issue in the DVDioctl driver.
319   * Added a call to ranlib after a built-in module compilation.
320
321 0.2.72
322 Mon, 16 Apr 2001 14:33:53 +0200
323
324   * New improved packet allocator.
325   * Additional Makefile cleaning for built-in modules.
326   * Fixed Makefile for Solaris target.
327   * Fixed the 0.2.71 IFO parsing bug.
328   * All Debian packages are now lintian-clean.
329   * Fixed XVideo plugin linking.
330   * Updated TODO list.
331   * Built-in modules support almost finished.
332   * A few Makefile fixes for BeOS.
333   * XVideo patches by Shane Harper <shanegh@optusnet.com.au>.
334   * Beginning of the built-in modules support.
335   * Got rid of the sleep() hack in beos_specific.cpp.
336   * Fixed a segfault when launched without argument under Darwin.
337   * Fix for Darwin program path handling.
338
339 0.2.71
340 Fri, 13 Apr 2001 08:13:26 +0200
341
342   * Merged 6 months of CVS logs to the ChangeLog file.
343   * Fixed a lintian error in debian/rules.
344   * XVideo resize patch by Shane Harper <shanegh@optusnet.com.au>.
345   * Added udf fix by Billy Biggs.
346   * Added checks in dvd_ifo.
347   * Cleanings in gnome interface : the interface should depend on the
348     input method.
349   * Intf: TS streams in menu
350   * TS input: only one audio & spu ES selected at a time
351   * Removed the build of the vlc app from the install target.
352   * Added an icon to the MacOS X vlc.
353   * "make vlc.app" now correctly updates vlc.app
354   * Fixed BeOS menu problem.
355   * Added a field to p_input->stream to inform the interface of a stream.
356     change (useful in network mode).
357   * Added error checks in dvd input.
358   * Changed the way ifo are read.
359   * Fixed a bug in area management.
360   * Fixed a warning in netutils.c.
361   * Created darwin_specific.c to store the program path at boot time.
362     (XXX: check that it didn't break the OS X port)
363   * Removed redefinition of NULL in src/audio_decoder/adec_layer?.c.
364   * Updated icons.
365   * BeOS icon and MIME resources courtesy of Wade Majors <guru@startrek.com>.
366   * Updated Makefile.in to make vlc.app by default on Mac OS X & Darwin, added
367     clean code for it as well.
368   * Hacked main.c to disregard argv[1] when compiled for OSX & run as a full
369     app (ie., double clicked and not launched from command line).
370   * Cleaned up debug spew left in modules.c and video_text.c.
371   * Created macosx_common.h in plugins/macosx/ to hold common stuff.
372   * Updated & cleaned up intf_macosx.c and vout_macosx.c - added Open menu
373     function support and a no-frills About box.
374   * Fixed icons location and Debian desktop menus.
375   * Fixed a memory leak in gtk_callbacks.c (thanks to Dae).
376   * Disabled message queue by default.
377   * A few other changes in the CSS code, the BeOS issues should be fixed.
378   * Corrected an awful typo in the version name.
379   * Removed deprecated stuff from config.h.
380   * Fixed the whitespace/tab issues in the Makefile.
381   * X and Xv output: added autohide cursor as in SDL.
382   * X and Xv: keys 1 to 0 change channel.
383   * SDL: keys F1 to F10 change channel.
384   * Ported the 0.2.0's channel changing functions.
385   * Fixed the lock segfault bug with some compilers.
386
387 0.2.70
388 Sat,  7 Apr 2001 05:52:00 +0200
389
390   * Fixed headers for FreeBSD compilation.
391   * Fixed debian/rules for non-x86 packages (Closes: Debian bug #88583).
392   * Deleted BBitmap[0] directly after overlay creation as no longer needed
393     as overlay now owns Bits()
394   * Fixed MPEG-1 mux_rate parsing.
395   * Fixed MPEG-1 stuffing.
396   * Don't create BBitmap drawing thread if using overlays
397   * Changes to BeOS interface with file selection support
398   * Fixed a boolean_t/int mix.
399   * Increased FIFO_SIZE.
400   * Fixed all alignment issues
401   * Networked TS input
402   * Working menus for run-time audio/spu/title/chapter selection with gtk
403     interface.
404   * Port of the interface menus to gnome plugin.
405   * Gtk playlist
406   * Tried to fix the "stream jumps at will" bug.
407   * Fixed most of the bugs in gnome interface menus
408   * Added radio checks in menu items.
409   * Bug fixes and enhancements in the Gtk+/Gnome interfaces.
410   * Borrowed config.guess and config.sub from SDL [MacOS X port] ;
411   * Changed files so that the MacOS X port compiles & runs [MacOS X port] ;
412   * If SDL/GTK/DSP is not available, don't compile the associated module.
413   * Gtk+ interface: fixed a precision issue in the scale.
414   * Qt interface: somebody pop up us the menu!!
415   * Fixed Debian sparc build for real (Closes: Debian bug #89285).
416   * vlc core compiles under QNX RTOS. Now if anyone feels like tidying
417     it and writing output and interface plugins...
418   * Split audio output into several separate files to make it easier
419     to debug. Removed a few redundancies as well.
420   * Support for Darwin CoreAudio, courtesy of Colin Delacroix [MacOS X port] ;
421   * Added warnings for ac3 mantissa (we still have problems with AC3 on
422     MacOS X) ;
423   * Renamed WriteResource to avoid a namespace clash with Darwin's
424     WriteResource.
425   * Compile Darwin module by default on Darwin system. [MacOS X port]
426   * Use $QTDIR for the qt module ;
427   * SDL fixes and enhancements by Shane Harper <shanegh@optusnet.com.au>
428   * Header cleaning: filled all empty authors fields, added CVS $Id stuff.
429   * Fixes to aout_darwin.c by Colin Delacroix <colin@zoy.org>.
430   * Fixes to configure.in, Makefile.in and main.c (Altivec detection)
431     by Eugenio Jarosiewicz <ej0@cise.ufl.edu>.   
432   * Added a SYNCHRO_START in DVDRead for each cell change to fix
433     multi-angle streams
434   * Changed seek function to prevent jump-at-will and to remove two bugs in
435     sector computing.
436   * Initialize some values in netlist (payload_discard wasn't which caused
437     frame dropping)
438   * Come back of multi-sector read which should make reading faster
439   * Language & Inteface support for BeOS interface
440   * XVideo plugin courtesy of Shane Harper <shanegh@optusnet.com.au>
441   * Makefile.in and configure.in fixes by Nilmoni Deb <ndeb@ece.cmu.edu>
442   * A few syntax fixes in the plain X11 plugin
443   * Various bug fixes in dvd_netlist. Some bugs seem to remain though.
444   * New function input_ToggleES for interaction with interface.
445   * Changes in gnome interface : navigation menus are now splited, there
446     are radio item in menus and the code should be better.
447   * First step for dvd_ifo rewritting. Now allocation/disallocation is
448     being done as it has to be.
449   * Fixed a bug in title management that make dvd like Seven work.
450   * vout_beos now uses double buffering for YCbCr overlay.
451     This (for some reason) improves audio/video sync
452   * Fixes for the Qt plugin compilation under Debian
453   * Heavy butchering in the CSS and DVD ioctl code to put all architecture-
454     dependent code in dvd_ioctl.c
455   * Added almost fully-functional /dev/dvd driver for MacOS X in
456     extras/DVDioctl.
457   * Fall back to one-packet-once reading in dvd input since multi-block
458     seems to have a bug that make the vlc crash on title/audio/spu change. I
459     hope that this bug will be fixed soon for the performance is poorer now
460   * Add-ons and changes in gnome interface:
461     o menu subdivision is done only if there are over 20 items,
462     o in DVD mode next/prev apply to title,
463     o in DVD mode, added a box with button to navigate through chapters.
464   * Additional enhancements to the OS X DVD ioctl module
465   * Big cleaning of the BeOS DVD ioctl code, got rid of all Linuxisms
466   * Compilation fixes for the BeOS DVD ioctls
467   * XVideo plugin enhancements by Shane Harper <shanegh@optusnet.com.au>
468   * Added the GNU getopt library, which gets compiled in when getopt_long
469     isn't available on the desired platform.
470   * Replaced the `--warning' flag with the standard cumulative `-v' flag.
471     `-v' is like `--warning 3', and `-vvvv' is like `--warning 0'
472     (`--warning' is still valid for those used to it)
473   * Cleaning in configure.in and Makefile.in, the Solaris port now
474     builds and runs properly.
475   * Code cleanup: removed a few tabulations.
476   * Fixed inline asm routines to remove all read/write operands.
477   * Added <string.h> to most files to prevent warnings under FreeBSD.
478   * Added "break;" after "default:" in case switches to prevent
479     warnings when compiling with GCC 3.0pre.
480   * Sync MOSX dev/CVS tree : code support for MacOS X audio, video and
481     interface (courtesy of Eugenio Jarosiewicz & Colin Delacroix) ;
482   * Cleaning code and a small fix to make quit work on OSX
483   * Disable x11 plugin if X11 headers are not found.
484   * Misc fixes in the DVD input.
485   * Fixed CSS authentication under Linux.
486   * Playlist now refreshes when a file is opened.
487   * XVideo plugin background is now black instead of white.
488
489 0.2.63
490 Mon,  5 Mar 2001 00:41:16 +0100
491
492   * Got rid of the CONTRIBUTORS list, and switched AUTHORS to a
493     linux-kernel like author list.
494   * Updated TODO list.
495   * Fixed a segfault in the BeOS interface when --noaudio was specified.
496   * Title and Chapter selection in the Gnome and Gtk+ interfaces.
497   * Fixed a bug in audio selection
498   * Tried to fix an issue in size computing.
499   * Commited BeOS changes by Richard Shepherd and Tony Castley.
500   * Added boolean_t b_YCbr to vout_thread_s structure to flag YUV-YCbCr
501     decoding needed instead of YUV-RGB
502   * Will be removed later when video_output.c rewritten
503   * vout_CreateThread() initialises b_YCbr to zero
504   * New BeOS video plugin that supports hardware overlays and new
505     MediaPlayer compatible interface
506   * Added YUV-YCbCr transforms
507   * Fixed bugs in title/chapter handling once more, especially for size
508     detection and location of main movie.
509   * Support for multitrack DVD : now the stream is given to input as it has
510     to be ; however, all the tracks are displayed one after the other ; I
511     think we need to decode navigation ES to choose the track
512   * Fixed behaviour at end of device.
513   * Added DVD/VCD button and menu for quick DVD device selection to the
514     Gnome and Gtk+ interfaces, so that vlc can play a DVD even when
515     launched from a GUI.
516   * Added debian/* files to help generating CSS-enabled non-US packages,
517     and changed plugins/dvd/* to reflect this change.
518   * Added .xpm icons (fixes lintian warnings).
519   * --help output and manpage are now in sync (Closes Debian bug #87478).
520   * Fixed Build-dpends entry in debian/control (Closes Debian bug #83707).
521   * Completely changed title and chapter initialization. Now we have real
522     title units.
523   * Fixed size for a majority of DVD.
524   * More consistency in the p_input->stream management. 
525   * Made input_SelectES() and input_UnselectES() not block the input thread
526     for a long time.
527   * Changed debian/control to fix Debian bug #83707
528   * Added a --disable-css configure option
529   * Moved some code here and there in the DVD plugin to make it easier
530     for me to build the Debian CSS-free packages.
531   * Fixed miscellaneous alignment problems (alpha/sparc ports) ;
532   * Added a fps display when toggling 'i' ;
533   * Fixed a bug in the video parser where one picture buffer was not
534     released at quit time ;
535   * Broke the mux_rate calculation, but hey guys ! it was already broken and
536     nobody noticed it.
537   * New function for DVD reading, that is able to read multiple blocks
538     (I've chosen 32 now), that doesn't use any memcpy anymore and is also much
539     faster. It is ready now for cell positioning in multi-angle DVD (to come  
540     soon).
541   * DVD specific netlist adapted to 2048 bytes long blocks that contain
542     several data_packets.
543   * Modification in mpeg_system.c to use p_payload_start instead of
544     p_buffer (necessary for DVD plugin). It does not break other plugins
545     since they set p_payload_start to p_buffer
546   * New field i_read_once in input_thread_s to be able to read more than
547     the TS related 7 packets ; i_read_once is set to INPUT_READ_ONCE by
548     defaults but plugins can change it during initialisation.
549   * Bug fix with frequential downmix
550   * Additional optimizations to the subtitle decoder
551   * The GGI video output should now be faster. Also, right-mouse-clicking
552     works in GGI mode as well.
553   * Optimizations done to the SPU decoder. Now the RLE is expanded at
554     decoding time, not rendering time. The main loop in vout_RenderSPU
555     is now 20 lines long.
556   * The Gtk+ interface is now built as a Debian package as well. The Gnome
557     package depends on it because of the icon and menu entry.
558   * Added an intf_WarnHexDump() function to do raw hexadecimal dumps of
559     memory areas. For debugging purposes or for real men, as you wish.
560   * Lots of tidying in dvd_ioctl.c, a few comments added.
561   * Better error handling in the subpicture decoder.
562   * Tidied video_spu.c. More to come later.
563   * Fixed subtitle displaying. Will soon work in overlay mode as well.
564   * Disabled slice-level resynchro since it's probably buggy.
565   * Fixed a structural major bug in the macroblock structure management.
566   * Added debug messages.
567   * Fixed a compile problem in debug mode.
568   * Added functions and hooks to display dates instead of off_t.
569   * Added a 'd' keystroke to dump the stream contents (for debugging
570     purposes).
571   * New ES detection based on .ifo for DVD module. It might fail (I have
572     found one DVD for which ifo seems false).
573   * Title and chapter selection on the command line (see -t and -T options)
574     It will allow to watch some DVD that went through menus by default.
575   * Beginning of menus in gnome interface.
576   * Fix bug in ac3dec for mono streams
577   * BeOS: bew video output method, the vlc now uses BBitmap instead of
578     BDirectWindow (better performances)
579   * BeOS: added resizing
580   * BeOS: added beta support for overlay
581   * Added a plain Gtk+ port of the Gnome interface, for the gnome-impaired
582     people. Gtk+ is now compiled by default, while Gnome isn't (you will
583     have to add --enable-gnome when running configure)
584   * Replaced -lcurses with -lncurses in configure.in.
585   * Added DemuxPSI, DecodePAT and DecodePMT. Never tested which streams
586     where PAT or PMT are splitted in more than one section.
587
588 0.2.62
589 Fri,  2 Mar 2001 17:32:24 +0100
590
591   * DVD plugin is still non-functional when you don't have DVD ioctls,
592     but at least it compiles under BeOS as well.
593   * Minor cosmetic changes here and there.
594   * Added the BeOS code for vlc_mutex_destroy() and vlc_cond_destroy()
595   * Minor optimizations in the video decoder.
596   * Move ac3 globals variables into structures
597   * Fixed a bash-ism in configure.in
598   * Fixed a segfault in input.c when no input plugin was found for
599     a given file.
600   * Fixed a deadlock in the Gnome interface. Next time I'll initialize
601     my mutexes, I promise.
602   * Added Oct to the authors list in intf_gnome.glade :)
603   * Second step in area management ; everything is in place now to have
604     title handling; it is coming :)
605   * Ported Glide and MGA plugins to the new module API. MGA never worked,
606     so this didn't make it work better.
607   * Started thinking about built-in modules, and added some code to
608     make it easier eventually.
609   * Added Oct in the AUTHORS file.
610   * Fixed a mistake in configure.in.   
611   * All your base are belong to us.
612   * Fixed a bug in src/misc/modules which prevented loading modules
613     when launched from the Tracker.
614   * Fixed a similar bug in src/video_output/video_text.c.
615   * BeOS CSS support, thanks to Markus Kuespert <ltlBeBoy@beosmail.com>
616     who ported the Linux DVD ioctls. We can now read encrypted DVDs
617     under BeOS ! Woohoo.
618   * First serie of changes in DVD module for the forthcoming interface menus.
619     There is a new capability in input type modules for setting the
620     attributes of a new area. It is set to NULL for PS and TS plugins.
621     It should be called for every title change, chapter change,
622     audio mode change or spu channel change.
623   * Kludge of the kludge, removing an oddity in YUV initialisation, and
624     activating YUV overlay on startup whenever hardware acceleration is
625     available. Thanks for bearing with us, stay tuned.
626   * mux_rate parsing.
627   * Changed video decoder's error messages into warnings.
628   * Add dither fix
629   * Drag and drop support under BeOS.
630   * Change in the code to detect beginning of movie. It is much better now
631     but still fails with some DVD for which the movie is not the first
632     Program.
633   * Beginning of ideas to handle chapters and ES selection
634   * configure.in and Makefile.in patches for better SDL support and
635     support for $(bindir) $(datadir) and $(libdir) stuff, courtesy
636     of Arkadiusz Miskiewicz <misiek@pld.ORG.PL>
637   * Ported ggi.so to the new modules API. As for the other modules, only
638     the "q" key works. Moreover, VLC doesn't exit cleanly if you close the
639     GGI window.
640   * Deactivated non-working widgets in the Gnome interface.
641   * Added CONTRIBUTORS file.
642   * Ported the framebuffer plugin to the new module API. As for most of the
643     other video output modules, keyboard doesn't work. Except ^C to quit.
644   * UDF filesystem support so that we know the location of the first video
645     related file with 100% reliability (great change that should make DVDs
646     with binaries and extra stuff work with vlc).
647   * Correction of a bug in ifo reading that falsified the adress of
648     video titles.
649   * Changed the method for selecting title at start. It is _not_ reliable
650     though, but it is better than the preceding one.
651   * Tried to fix the BeOS interface and video output. Any BeOS developers
652     listening ? I can't even test that code, it probably wants additional
653     fixing.
654   * Added a workaround in modules.c for broken libc's which happen to truncate
655     filenames in dentry structures when using 64bits offsets. The kind of
656     stuff you only see in RedHats <g>.
657   * Made the SDL error messages a bit more useful.
658   * The Gnome menu is now created when mouse is released, not when it
659     is pressed. It may sound stupid, but it really makes a difference.
660
661 0.2.61
662 Fri, 16 Feb 2001 08:09:59 +0100
663
664   * Fixed package building (both RPMs and .debs).
665   * Fixed `make snapshot' rule.
666   * Added some magic to filename detection. To read a DVD you now just   
667     need to run 'vlc dvd:/dev/hdc' for instance. Same for file:// URIs.
668   * Fixed a segfault in the slider when no stream was playing.
669   * Made the slider go from 0 to 100 (instead of 99 :)
670   * The vlc now doesn't exit when finished playing. As a side effect of
671     the playlist code being very recent, it continuously loops.
672   * Fixed a segfault in the input thread creation, as well as a possible
673     deadlock. This happened mostly when opening non-existing files.
674   * Created input_SetStatus to do input_SetRate's job. input_SetRate will
675     be used to set an arbitrary rate, for people who want to read DVDs at
676     1/2.71828 times the actual speed.
677   * Stubs for the ncurses control interface. No working code yet, but the
678     holes just need to be filled.
679   * Improved X11 support. Still not as functional as before.
680   * The output window now states the method name, so that people know whether
681     they are using X11 or SDL.
682   * The Gnome interface is now drag'n'drop aware, you can drop a file
683     on it just like Xine does (or so I guess).
684   * New more recent css authentication code.
685   * Beginning of udf support (not in Makefile)
686   * Removed useless includes in intf_gnome.c
687   * Made the vout_sdl.c functions static 
688   * Ported vout_x11.c to the modules API; code isn't very nice yet though
689   * X11 output works again. It's just the output, but it works; I now need
690     to clean the code and add event handling.
691   * Should have fixed the dependency generater for some plugins.
692
693 0.2.60
694 Wed, 14 Feb 2001 08:33:46 +0100
695
696   * Started porting the X11 vout (still disabled)
697   * A few unnoticeable changes in the Gnome intf
698   * Changes in the way stream size in DVD mode is calculated. It is no
699     longer such an ugly kludge and is much more accurate.
700   * Changes in DVDSeek so that the interface slider is in 0 when we are at
701     the beginning of the strem.
702   * Try to detect the beginning of the movie in the middle of the title. It
703     works for most of the DVDs but will begin in the middle of the movie
704     with some others.
705   * Calculate only the first title key in css mode because it might take a
706     long time with some title. The search stops now when we have a key once
707     whereas it did stop only when we had it twice before. It should not
708     cause problems.
709   * Really fixed MC segfault bug.
710   * Adaptation of DVD module to navigation slider. The seek has to be
711     done on a multiple of 2048, and shopuld take care of the offset to the
712     beginning of the stream. It works with most of my DVDs by fails to
713     detect size of some streams.
714   * Change of the order of call to ifo and css functions in input_dvd.c,
715     because we can't read ifo files before authentification on some DVDs.
716   * Changed location of some css tables.
717   * We read ifo date and decrypt css keys for all titles now. It takes quite a
718     long time to initialize with some DVDs (if you have 42 titles for
719     instance). The key decryption might give a false value if the title is
720     less than 10 Mb ; I'm working on that :)
721   * Quick patch to avoid a segfault when arbitrarily seeking the stream.
722   * Added --intf option to vlc
723   * Started cleaning vout_sdl.c
724   * The dummy plugin works again
725   * Added a slider to the Gnome interface so that we can browse through streams
726   * Removed enhancement because of an incompatibility with slow motion.
727   * We can now seek at position 0 :p ;
728   * Tried to enhance picture dating on timebase discontinuities.
729   * Fixed pause bug.
730   * Much cleaning in css code. It should work fine now.
731   * Fixed my old stupid bug that disabled sound after having played the
732     first playlist item.
733   * Added `Prev' and `Next' buttons to the interface, with the beginning of
734     a playlist window (still empty).
735   * Added `Slow' and `Fast' buttons to the interface and popup menu.
736   * Removed tests against i_rate and i_new_rate calculation from the
737     plugins and hid this complexity into input_ext-intf.c 
738   * The pure Gnome part of the Gnome interface has been rewritten from
739     scratch, and the .glade file included as well. You can edit it by
740     installing glade-gnome and doing `glade plugins/gnome/intf_gnome.glade',
741     or directly by hand if you grok XML.
742   * Files can now be loaded into vlc using the `Open' buttons. But for the
743     moment you still have to launch vlc with at least one file, because it
744     quits when the end of the playlist is reached.
745   * Idle screen was disabled because it eats a lot of CPU and is mostly
746     useless for the moment. And it gets activated when pause lasts for too
747     long.
748   * Plugins have completely disappeared, we now only use the new module API.
749   * All intf and vout modules are now independant. So far, only the Gnome
750     intf module and the SDL vout module have been ported. configure.in has
751     been modified to reflect the changes (x11 and dummy aren't compiled by
752     default anymore, while SDL and Gnome are).
753   * Right-clicking on the SDL video output window brings the Gnome menu.
754   * Pause, Play, Exit, About work from the menu or from the interface window.
755   * The old SDL keys still work.
756   * Fixed a bug in #define that prevented from using ioctls
757   * Some functions to prepare ifo commands utilisation to move in the
758     structures of DVDs
759   * Change in configure to avoid compiling css functions on BSD.
760   * Added comments to src/interface/intf_plst.c and include/intf_plst.h
761     so that people understand how the playlist works.
762   * Updated the TODO list (34 items to do, 41 done !)
763   * Portability : changed off64_t to off_t and activated appropriate
764     GNU/Linux options ;
765   * Changed fseek() to fseeko() for 64-bit offsets ;
766   * Reset frame predictors on a stream discontinuity.
767   * Implemented basic stream navigation function, and bound Jump forward
768     and jump Backward in the SDL intf. Enjoy !
769   * Pause function implemented ('p' key).
770   * Fixed a compile probleme on machine without a dvd player :ppppp
771   * Fixed two bugs in ifo and css that caused memory corruption and
772     segfault when using sdl in dvd mode.
773   * Moved the playlist handling from input/input.c to interface/interface.c
774   * Fixed a few warnings at compile-time.
775   * Fixed sound channel selection in playlist mode.
776   * Added a color message in the plugin bank because on peut bien déconner
777     cinq minutes, quand-même.
778   * We now spawn a new input thread for each file.
779   * Added a missing pf_close() because it's always cool to close files
780     after we read them.
781   * Solved bug with cssdescrambling. The vlc might segfault with dvd
782     plugins. I will fix that soon. 
783   * Minor modification in pluginification.
784   * Playlist works again (still the old wrong way like Meuuh doesn't
785     like, but this is going to change within a few hours)
786   * Input_ps, input_ts and input_dvd are now plugins, located in
787     plugins/mpeg/ and plugins/dvd/
788   * Fast/slow keys are now A/Z instead of A/S since S was already
789     linked to the scale/noscale toggle.
790   * `--dvd' doesn't work anymore, for the moment try to use :
791     vlc --input dvd /dev/dvd
792   * Module bank is now less verbose ; use `--warn 1' to turn back
793     verbosity on
794   * New method using netlist to read packets on DVD device by sectors of
795     2048 bytes.
796   * Some modifications in netlist to make it work with DVD.
797   * Fixed à bug in mpeg_system.c
798   * We can now choose the speed of forward (between 32/1 and 1/8)
799   * Functional fast forward and slow motion API ;
800   * Dirty hack in the SDL intf to bind "a" (fAst forward), "s" (Slow motion)
801     and "p" (Play).
802   * Centralized clock management, preparing for stream navigation ;
803   * Fixed a bug in the management of the first video PTS.
804   * Fixed a bug in period calculation for progressive sequences.
805   * Fixed a FIXME in SDL: p_vout->p_sys is no more used in intf_sdl.c
806   * Used instead p_vout->i_changes like in x11
807   * Disabled SDL parachute to let the vlc dump a core instead of staying stuck
808   * Patched 2 debian bugs
809     (see http://bugs.debian.org/cgi-bin/pkgreport.cgi?pkg=vlc)
810   * Improved the snapshot generation
811   * Mouse pointer hidden/shown with middle button in SDL output
812   * Removed obsolete video_yuv_mmx.S
813   * Updated the TODO list and wrote a small todo.pl parser to make it
814     easier to see which items remain to be done
815   * `make snapshot' now creates vlc-*.tar.gz and vlc-*-nocss.tar.gz
816
817 0.2.50
818 Wed, 31 Jan 2001 04:30:37 +0100
819
820   * Version 0.2.50 for the Linux Expo
821   * --overlay and --fulscreen options (only work with --vout sdl)
822   * The vlc exits after the end of the stream, which prevents from having
823     to kill it and relaunch it during a presentation.
824   * Not a very nice hack, but will probably spare us a few user complaints: if
825     no -a option is specified, the vlc will play the first audio type it finds,
826     so there is no need to specify "-a ac3" for a DVD anymore.
827   * CSS support kludged for current DVD input.
828     It is very slow now but will be more adapted to the forthcoming DVD
829     input.
830     It should read the first title of many DVDs but has been tested with few.
831   * Beginning of ifo commands to implement DVD navigation.
832   * Fix for field pictures.
833   * Hooks for fast forward and slow motion support.
834   * Fixed backwards moves.
835   * Tuned up optimizations.
836   * Completely removed BIZARRE_OPTIMS.
837   * Check for the needed headers for DVD ioctls
838   * Some cleaning in the dvd authentification code
839   * Various miscellaneous minor optimizations of the video parser.
840   * Beginning of support for encrypted DVDs.
841   * It only tests encryption and authenticates disc.
842   * Really fixed GetChunk now.
843   * 32-bit aligned bitstream (not that fast).
844   * The motion compensation routines are now modules as well ; choose your
845     implementation with `--motion motion', `--motion motionmmx' or
846     `--motion motionmmxext'. Of course, the best implementation is chosen
847     if you don't ask for any. There doesn't seem to be any performance hit
848     due to the move to shared libs, which is a good thing. Please test
849     actively if you have time, though.
850   * Updated --help result, manpage, INSTALL document, and a few files.
851   * Borrowed LiViD's MMX and MMX EXT IDCT. This might break things. Expect
852     a performance increase.
853   * Removed a few useless malloc() and unused variables in the audio SDL stuff
854   * Prepared the work for built-in modules (not yet finished)
855   * Small tweak in the copy handling, reduce CPU usage.
856   * --aout sdl now works
857   * Added SDL sound support. Sounds a bit laggy sometimes but my streams
858     are ill.  please try.
859   * Modified configure.in and all that stuff. Re-run configure
860   * SDL audio, video and interface are all part of the same .so now.
861   * Removed YUV old files :->
862   * Reverted something that wasn't supposed to go into the cvs :p
863   * Removed -fargument-noalias-global which causes problems with as (???).
864   * Borrowed livid's latest libmmx and MMXEXT MC. Not in the Makefile => to
865     test it, replace vdec_motion_inner_mmx.c by vdec_motion_inner_mmxext.c.
866   * A few changes in the CPU extensions detection code, borrowed from the
867     kernel and from mpeg2dec. I still don't know how to detect if code
868     compiled with -mcpu=pentiumpro will run, since the cpuid arcanes are
869     quite obtuse to me. Perhaps we should also have a way not to load modules
870     if they have been compiled with a different CPU to avoid segfaults.
871   * Add check for MMX EXT extensions, which doesn't work, which is a good
872     thing since there is no MMX EXT IDCT yet :)
873   * Change for the forthcoming fast forward and slow motion support.
874   * Fixed the --aout, --idct and --yuv flags
875   * Updated manpage and --(long)help output to reflect that change
876   * Removed a few unneeded #includes here and there
877   * Cosmetic changes in error messages in input.c
878   * Now use of 64 bits offsets to parse the whole DVD. So we have all the
879     available information
880   * Fixed a bug in parsing of VTS attributes
881   * Fixed a bug in input.c that made input plugin initialize even though
882     no stream is reachable (thanks Sam)   
883   * Merged the YUV plugins in the same directory to avoid too much code
884     duplication
885   * YUV transformations now use the new module API ; now only the vout
886     and interface still depend on the old plugin API
887   * Changed TestMMX to TestCPU because we will be able to test for other
888     specific extensions (3DNow, SSE) for the forthcoming IDCT we'll
889     borrow to mpeg2dec (as usual :P)
890   * Don't show "hiding module" messages anymore except in debug mode
891   * Swapped C IDCT and Classic IDCT scores since the classic one seems
892     to be faster ; anyway you should use the MMX one
893   * Fixed a Makefile bug under BeOS
894   * Tried to fix the cpuid code so that it compiles under BeOS (Polux, can
895     you test it when you have time ?)
896   * Fixed a bug in the frame rate handling ;
897   * Fixed a bug in the DTS/PTS ordering. Our pts are _at last_ accurate.
898   * Finally fixed repeat_first_field and co. (pas encore tout compris...)
899   * Implemented video_parser bitstream callback for PTS/DTS.
900   * Fixed close button support in SDL
901   * Fixed --width and --height support in SDL
902   * Fixed the bug-that-made-the-vlc-segfault-on-exit, which means that
903     more than ever, « le client ne segfaulte pas ».
904   * There was still a problem upon quitting: sometimes the null packet
905     wasn't big enough to reach a decoder breakpoint, so I now create 10
906     of them (since I can't make it bigger) to be sure. Meuuh, what do
907     you think ?
908   * Fixed the Makefile to spare a few variables here and there.
909   * Reduced module hide delay, removed loading of the audio output
910     plugins since they are now modules. 
911   * Changed a few intf_Msg to intf_DbgMsg, and added "vout:", "intf:",
912     and so on in a few other messages.
913   * Removed unused includes in the idct modules.
914   * Correction of bugs in ifo parsing. Now the structures should be well
915     initialized. It remains some segfaults but it globally works.
916   * DVD mode is enabled with option --dvd. For the moment, it only read
917     the first vts and find the movie if it is at the beginning of the title
918     set.
919   * Beginning of dvd_input. Parsing of ifo file almost completed.
920   * The IDCT functions are now located in modules : the classic IDCT,
921     our optimized IDCT, and MMX IDCT.
922   * Cosmetic changes for modules (pf_* instead of p_*)
923   * Fixes to the BeOS and dummy modules 
924   * Changed default values :
925     INPUT_PTS_DELAY down to 200 ms ;
926     video heap down from 10 to 5 pictures ;
927     decoder fifo size from 1023 to 511 PES ;
928   * Fixed various bugs in 32 bit-versions of input_ext-dec.h ;
929   * Fixed a bug in GetChunk() ;
930   * Renamed GetByte, GetWord, ShowWord to _GetByte, _GetWord, _ShowWord ;
931   * Moved decoder_fifo-specific code from programs.c to dec.c ;
932   * Fixed bugs in program.c that prevented vlc to close all decoders ;
933   * Gave sam a lesson for the use of the bitstream in spu_decoder.c :ppp ;
934   * Made the video parser unlock the reference pictures before quitting
935     (still one left, yaknow why ?)
936   * Destroy fifo mutex and cond variables _after_ they are used for
937     the last time. henri, that'll be one binouze.
938   * Attempt to port the BeOS audio plugin to the new module API. Will
939     probably need a few fixes to work or even compile.
940   * Ported the alsa plugin to the news vlc module API
941   * Fixed 32 bits bitstream bugs.
942   * Moved the MPEG audio decoder to the new bitstream
943   * Cleaning in the SPU decoder.
944   * Moved swab32 from input_ext-dec.h to common.h. We probably won't need
945     it anymore really soon, since ntohl() and htonl() seem to be properly
946     optimized when gcc is passed the right optimization flags.
947   * Fixed GetBits32 and RemoveBits32. I know the #ifdefs are useless since
948     we only support u32 words, but it's a safe reminder. Comments appreciated
949     on this fix since I may have b0rked something -- it runs well here though.
950   * Changed code for handling b_die in bitstream ;
951   * Moved input_ext-dec.h to input.h ;
952   * New input_NullPacket function ;
953   * Fixed init bugs in input and vpar ;
954   * Placed a callback to the decoder in the bitstream structure ;
955   * Fixed a purify bug in input_ps.c ;
956   * Added -mcpu=pentiumpro in the Makefile.
957   * Complete commenting of modules_core.h and small modifications
958   * Separated MODULE_CONFIG_START and ADD_WINDOW (Henri, beware)
959   * Fixed a very, very old bug that caused namespace collision between
960     plugins (Henri, beware: call your aout_getplugin function like this,
961     not alsa_aout_getplugin)
962   * Removed the Debian specific clean rules from the Makefile, since they
963     are already handled by the debian/rules script.
964   * Tidied a few compilation rules (-lfoo should always be at the end)
965   * Added 8bits palette SDL support.
966   * Fixed a warning under FreeBSD (dlerror() is a const char*, not a char*).
967   * Made configure script look for the bswap assembly instruction (using
968     AC_TRY_COMPILE makes sure the compiler will really accept it).
969   * Fixed colors' bug (TODO: write a function in vout that recalculate colors
970     from RGB masks);
971   * Cleaning of the fullscreen switch, still sucks but the surface is not
972     reallocated and that's good (thanks to the magic function
973     SDL_WM_ToggleFullScreen provided by sdl library :).
974   * Added a missing mutex_unlock in video_output.c
975   * Moved a mutex_destroy after the thread cancellation to prevent
976     possible problems
977   * Added a missing #ifdef in intf_msg.c which prevented compilation
978     with --enable-debug
979   * Fixed a bug in the input that prevented to quit properly in certain
980     cases (some ES were not deleted because their index was skipped when
981     the former one was deleted, well Meuuh should know what I mean)
982   * Cleaning of SDL Lock/Unlock Surface.
983   * All plugins now compile with -fPIC.  
984   * Made the audio_output API a bit simpler.
985   * Got rid of modules_config.h.
986   * Fixed `make install' rule. 
987   * Fixed warnings in the MMX YUV compilation.
988   * Probably fixed a bug in the input : pp_foo structures were free()d at
989     the end, but this was useless since the last call to realloc() is
990     equivalent to free(), and two consecutive calls to free() aren't a
991     goo idea.   
992   * We check that the version number match and that we don't already have
993     a module by that name when loading a new module.
994   * All public module_* functions now properly lock the module bank.
995   * The audio_output now uses the new module API ; EsounD and DSP modules
996     have been ported, which should be enough for Henri to port the ALSA one.
997   * Added vlc_mutex_destroy and vlc_cond_destroy function, for pthreads.
998     Used them before quitting, every lock and cond is destroyed
999   * Checked the return value of malloc and realloc in input_programs
1000   * Fixed compilation pb under solaris 2.6
1001   * Should compile & run on Solaris with ./configure --disable-dsp
1002     (tested on puma)
1003   * Removed most SYS_SOLARIS #ifdef's in favour of more generic tests
1004   * Updated example ./configure line in INSTALL file
1005   * Now we only load modules that end with ".so"
1006   * null module is compiled by default
1007   * Fixed initialization of payload_start and payload_end
1008   * --enable-sdl and some others are now --with-sdl[=name] to supply an
1009     optional library name ;
1010   * Deleted all unnecessary #include <sys/uio.h> ;
1011   * /usr/include is now searched when looking for libraries and headers.
1012   * src/misc/modules.c is in a workable state now.
1013   * Splitted modules.h into modules.h and modules_core.h to enable
1014     clean compilation of the Null Module.
1015   * Added the Null Module, the module that does nothing but that is going
1016     to be of great help for debugging my module code.
1017   * Plugins are now called modules, because we will be able to compile
1018     them either as a dynamic plugin, or within the program. And, more
1019     important, I can commit this without having to break the vlc :)
1020   * Fixed pitch bug;
1021   * video_output.c : compute picture size even if b_need_render == 0;
1022   * Fixed a deadlock (the vout unlocked a mutex locked by another thread,
1023     grrrr, I'll kill someone) ;
1024   * Put config.h in front of others in audio_decoder.c.
1025   * Better display of the fps.
1026   * Removed i_iovec_start and i_iovec_end. Used i_data instead
1027   * Fixed THX Cimmarron bug (it was _not_ a synchro bug).
1028   * Fixed a bug in the DTS/PTS parsing ;
1029   * Fixed a bug in vpar_headers.c synchro handling introduced before ;
1030   * Enhanced synchro's handling of dates and frame structure changes.
1031   * Fixed a bug in the PSM decoder.
1032   * We now read the DTS (but we don't use it for the moment).
1033     NB : b_has_pts has disappeared for brevity reasons, use i_pts != 0 instead.
1034   * New synchro statistics and warnings.
1035   * Avoid calling SafeRead() with a null packet size.
1036   * Use of ptrdiff_t whenever necessary (IA-64 port) ;
1037   * Changed behaviour of preparsing code, faster startup ;
1038   * Fixed DecodePSM(), cannot test ;
1039   * Cleaned up ParsePES(), fixed a bug which could reject very small but
1040     valid PES packets ;
1041   * Fixed cosmetic bugs in vpar_synchro frame_rate display.
1042   * Changed subtitles palette.
1043   * SPU decoder now uses Meuuh's GetChunk() code.
1044   * Lots of cleaning in the SPU decoder.
1045   * Message queue is flushed before we spawn input.
1046   * Fixed so that it compiles with VDEC_SMP (no good sync yet though).
1047   * Using i_id instead of i_stream_id whenever possible ;
1048   * Fixed a bug in -c and -s options.
1049   * Fixed a compile pbm in debug mode (f34r d4 1-line fix)
1050   * Fixed AC3 and SPU PES reading (ph34r da one-byte patch)
1051   * Some 79 char wrap.
1052   * No need to add "\n" at the end of intf_*Msg() messages anymore.
1053   * Moved input_DecodePES() to input_dec.c ;
1054   * Fixed an segfault in input_programs.c ;
1055   * Added -fomit-frame-pointer optimization.
1056   * Fixed a *major* memory leak in the pre-parsing code. Hopefully it should
1057     be the last one.
1058   * New decoder spawning API input_dec.c ;
1059   * Moved p_input->pp_es -> p_input->stream.pp_es and clean up of
1060     input_programs.c & co ;
1061   * Fixed memory leaks.
1062   * Moved video_decoder's headers from include/ to src/video_decoder.
1063   * Temporarily removed b&w kludge.
1064   * Splitted up p_method_data/p_plugin_data ; 
1065   * Cleaned up input_ts.c, added it into the Makefile.
1066   * Fixed various memory leaks.
1067   * Removed all arbitrary limits on the number of elementary streams.
1068   * Removed b_die and b_error from all decoders (obsoleted by decoder_fifo_t).
1069     All decoders should now exit cleanly (if it's not the case, it should be
1070     referenced as a bug).
1071   * Fixed a bug which prevented the input to exit normally (non-selected
1072     ES in the pp_selected_es array).
1073   * Added netlist support.
1074   * Added U8_Mono audio output
1075   * Fixed "-a [ mpeg | ac3 | lpcm | off ]" option
1076   * Only pre-parse the first 32 MB of data.
1077   * Added -a, -c and -s options. (-a doesn't work but I will let the people
1078     who thought it would be cleaner to put config in environment variables
1079     correct what's wrong in my code).
1080   * Now we only try to open plugins which are existing files
1081   * Big cleanup of the PS input plugin ;
1082   * Fixed a bug in AC3 initialization ;
1083   * PS streams are now pre-parsed (this can take a while) if possible ;
1084   * Move #define from audio_output.h to config.h
1085   * Change vlan_server_ip to vishnou's ip (but vlans not working yet)
1086   * GetChunk() : reads n bytes from the elementary stream and places them
1087     in a big buffer (a gift for Sam).
1088   * Quantic start in fullscreen fixed.
1089   * Input-II now correctly handles private stream 1 (AC3, DVDSPU).
1090   * Split the audio decoder into adec_generic, adec_layer1 and adec_layer2
1091     (no new code added)
1092   * Added SDLYUV support,
1093   * Fixed the ratio/position problem in YUV,
1094   * We now display CPU usage statistics for each thread.
1095   * Additional fix for Layer 1 mono
1096   * Indentation fixes
1097   * Fixed audio syncword detection for mpeg 1 streams (hopefully)
1098   * Fixed Layer 2 Mono decoding.
1099   * Hardware YUV overlay (SDL) with real colors ;p It may suck for non
1100     4:2:0 streams.
1101   * Removed vout code found in intf file to support fullscreen switching.
1102     Now only vout_SDL updates SDL data and intf only switch flags such as
1103     b_reopen_display and b_fullscreen in p_vout->p_sys.
1104   * Fixed a var name typo in input_programs.c which prevents vlc from
1105     compiling with --enable-debug option. (i_es_pid -> i_es_id :)
1106   * Autodetection of Overlay support
1107   * Fixed support for broken MPEG-1 files.  
1108   * Cleaned up program and ES management by using input_programs.c whenever
1109     necessary.
1110   * Cleaned up decoder spawning.
1111   * Enhanced handling of stream discontinuities.
1112   * Fixed two typos in the Makefile (sam you owe me at least one beer)
1113   * Moved b_discontinuity to pgrm_descriptor_t, cleaned up CRDecode
1114     (needs some more cleaning for discontinuities)
1115   * Added pf_new_pes in plugins
1116   * Fix in the SCR parser for high values.
1117   * Fixed a bug with DVD's SCR (too close from the PTS).
1118   * Generation d'un makefile presque correct pour les vieilles versions de make
1119     Nettoyage: gestion des dependances pour les plugins, suppressions de pas
1120     mal de redondances, options de compilations coherentes, etc...
1121   * Code to manage es_descriptors and program_descriptors, from benny's
1122     input_psi.c
1123   * VLAN support modified.
1124   * We now correctly parse MPEG-1 SCR and there is no need to kludge to read
1125     the stream at the right pace.
1126   * Fixed a bug in the synchro with non-P5/B1 streams.
1127   * Support for MPEG-1 .mpg files.
1128   * Fixed a bug in the synchro with non-P5/B1 streams.
1129   * The input-II.
1130
1131 0.2.0
1132 Wed, 31 Jan 2001 04:30:37 +0100
1133
1134   * Version 0.2.0 pour la Linux Expo
1135   * Backport of the sdl plugin (minor correction in video_output as I made
1136     in unstable)
1137   * Ajout des options --fullscreen et --overlay
1138   * Added hardware YUV overlay support (SDL). Huge performance
1139     increase.
1140   * Fixed MPEG audio decoding for streams without b_data_alignment flags.
1141   * Fixed a bug in the SPU decoder which caused a segfault.
1142   * Support for 8bit soundcards.
1143   * YUV support for SDL.
1144   * We now open /dev/dsp in non-blocking mode.
1145   * Frame dropping enhancements for very slow machines.
1146   * Fixed a buffer overflow under BeOS.
1147   * Miscellaneous framebuffer fixes.
1148   * Miscellaneous SDL fixes.
1149   * MMX Y4Gray16 colorspace transformation.
1150   * Optimized grayscale mode.
1151   * Fixed volume control.
1152   * Splash screen.
1153   * Minor changes in the Debian files.
1154   * Fixed fps display.
1155   * Fixed MPEG1 video decoding. We don't read MPEG 1 PS files for the
1156     moment.
1157   * Fixed a 100% cpu usage bug, in the dummy aout.
1158   * Added a 'f' shortcut to switch between Windowed and Fullscreen
1159     mode.
1160   * Added --broadcast option for network input.
1161   * Screen is now emptied when framebuffer output exits.
1162   * Totally new frame dropping algorithm.
1163   * Fixed a bug in video_ouput.c which trashed more late pictures than
1164     necessary.
1165   * Fixed the DEBUG mode in the Makefile.
1166   * Fixed a bug in mwait() which made us wait too long.
1167   * The video_decoder can now be split into several threads to take
1168     advantage of the SMP machines.
1169   * Added --enable-debug, --enable-stats, and --disable-optims in the
1170     GNU configure stuff.
1171   * Added alsa audio support (plugin)  
1172   * vlc is now compiled without the STATS mode by default.
1173   * Fixed a bug which made frames go backwards with some displays (the
1174     video_decoder thread is now niced).
1175   * Added intf_WarnMsg(), and made use of it in the most needed places.
1176
1177 0.1.99i
1178 Mon, 28 Aug 2000 02:34:18 +0200
1179
1180   * fixed the support for field pictures, which involved a few dozens
1181     bugs in the video parser and video decoder.
1182   * put names of authors under a lot of source files, for historical
1183     purposes.
1184   * fixed another input_file exit bug for the beos version.
1185   * fixed the aliases install.
1186   * renamed an inconsistent variable in src/input/input_file.c.
1187   * added support for I+ synchro (all Is and the first P).
1188   * fixed a motion compensation bug which generated some distortion
1189     on B images.
1190   * fixed a motion compensation bug for skipped macroblocks.
1191   * fixed a synchro bug for field images.
1192   * cleaned Octplane's crappy indentation.
1193   * fixed the --server option which didn't work if a ~/.vlcrc existed.
1194
1195 0.1.99h
1196 Tue, 22 Aug 2000 01:31:58 +0200
1197
1198   * fixed the sound issue under beos.
1199   * fixed a bug that was making the crash randomly under beos.
1200   * fixed a bug that was exhausting system ressources under beos.
1201   * improved the cond_var for beos.
1202   * added support for the SDL vout : the --display fullscreen allows 
1203     fullscreen when possible. Disabled by default.
1204   * added sdlvlc (which probably should start in fullscreen, no ?)
1205   * removed sdlvlc :)
1206   * updated debian directory to build vlc-sdl.
1207   * removed CCFLAGS flags which were improperly used.
1208   * added hints for powerpc build.
1209   * fixed the input_file exit bug.
1210   * fixed a Makefile bug which removed the CVS directory.
1211   * removed the frame statistics output.
1212   * removed a verbose message in intf_sdl.c.
1213   * added a few sanity checks in the audio mpeg and ac3 decoders.
1214   * temporarily got rid of vlc.channels.
1215   * added notice in debian/control about unencrypted DVDs.
1216   * fixed PowerPC .deb build.
1217
1218 0.1.99g
1219 Wed, 16 Aug 2000 01:07:14 +0200
1220
1221   * removed all "*vlc" aliases except "gvlc" and "fbvlc". The other sucked.
1222   * new --synchro flag which lets you force which images are decoded.
1223   * removed an unused variable in the MMX YUVs.
1224   * fixed 32bpp MMX YUV, made the comments clearer, removed an emms.
1225   * now scaling is on by default, so that people won't tell that the vlc
1226     cannot do scaling :-)
1227   * fixed a few long lines.
1228   * fixed 8bpp YUV.
1229   * fixed the fscked up Bresenham algorithm in all YUV functions.
1230   * fixed a dumb bug in the Makefile that prevented inclusion of the
1231     -march=pentium directive. thanks Meuuh, blame sam.
1232   * fixed a warning in main.c.
1233   * separate Debian packages.
1234   * added request for ALSA support in the TODO list.
1235   * changed "pentiumpro" to "ppro" in the ./configure, it was misleading.
1236
1237 0.1.99f
1238 Tue,  8 Aug 2000 11:24:01 +0200
1239
1240   * plugin detection now works
1241   * "gvlc", "fbvlc", "ggivlc" aliases now work
1242   * fixed functions that weren't properly inlined
1243   * removed bloat from the MMX YUV plugin
1244   * vlc.init becomes ~/.vlcrc
1245   * removed float operations in the video decoder, and all emms asm functions
1246   * borrowed linuxvideo's MMX motion compensation
1247   * fixed an undefined symbol in the MMX YUV plugin
1248
1249 0.1.99e
1250 Thu, 20 Jul 2000 15:14:06 +0200
1251
1252   * new bitstream syntax and slight performance increase
1253   * BeOS build fix
1254   * removed the sample code from the reference decoder
1255
1256 0.1.99d
1257 Wed, 12 Jul 2000 01:24:40 +0200
1258
1259   * fixed RPM build
1260   * .deb is now more lintian-friendly
1261   * fixed vlc.spec to install nicely
1262   * PLUGIN_PATH and DATA_PATH now in include/*.h
1263   * removed a few useless warning messages
1264   * removed remaining header stuff related to the old non-free decoder
1265   * fixed the MGA build (doesn't work yet, though)
1266   * new plugin API
1267   * updated the INSTALL document
1268   * plugin auto-detection
1269   * fixed a few misspellings in the code
1270   * removed the default --enable-ppro option because it didn't work on K6-2
1271   * the framebuffer client now leaves the console in a working state
1272   * the dithered 8 bpp YUV transformation works again (blame bbp !)
1273   * the YUV transformations are now plugins as well
1274   * alternative symlinks like gvlc, fbvlc are now created at compile time
1275   * borrowed libmpeg2's GPLed MMX YUV transformations (16 and 32 bits)
1276   * fixed an endianness problem which occured on iMacs
1277   * fixed the build for the Mandrake distribution
1278
1279 0.1.99c
1280 Sun, 18 Jun 2000 18:54:48 +0200
1281
1282   * fixed Makefile.in for debug version
1283   * caught Delete Window event in Gnome and X11 modes
1284   * fixed man page
1285   * GGI output now works
1286   * fixed a segfault on exit for the Gnome plugin
1287   * fixed compile problems for BeOS
1288   * sound support almost works under BeOS
1289   * fixed a warning in ac3_exponent.c
1290   * automatic support for .rpm and .deb building
1291
1292 0.1.99b
1293 Sat, 17 Jun 2000 03:35:02 +0200
1294
1295   * fixed a bug preventing to quit when run with no arguments
1296   * new VLAN changing code
1297   * created the ChangeLog file :)
1298
1299 0.1.99a
1300 Thu, 15 Jun 2000 20:48:54 +0200
1301
1302   * first public release
1303