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