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