X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=ChangeLog;h=1e0c0dd7bbc3a8b158f9a1914d32bb39e1119fcd;hb=700452e04d179cccf7775d4c4f840383769529f8;hp=4fa96676e8e5bab983cc18c0ed4cfd27742ab605;hpb=6d8b08a432acd87eb27df048c6926ed2f66e5290;p=vlc diff --git a/ChangeLog b/ChangeLog index 4fa96676e8..1e0c0dd7bb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,15 +1,1107 @@ -#===================# -# ChangeLog for vlc # -#===================# +0.5.0 +Not released yet -HEAD + * ./modules/audio_filter/channel_mixer/headphone.x: new headphone channel + mixer with virtual spatialization effect + * ./modules/gui/win32/preferences.*: redesigned preference dialog box + * ./modules/audio_filter/resampler/linear.c: new audio resampler based on + linear interpolation + * ./modules/gui/macosx/prefs.m: new configuration interface + * ./src/misc/netutils.c: GetMacAddress Darwin support + * ./src/libvlc.h: default to en0 instead of eth0 under Darwin + * ./plugins/dvdplay/access.c: use dvdplay after it has completed + initialization. + * ./configure.in: better detection of IPv6, fixed solaris handling. + * ./plugins/familiar/*: used buttons instead of pixmaps. + * ./share/vlc16x16.xpm: XPM version of the logo. + * ./plugins/mpeg_system/mpeg_es.c: fixed a segfault when no decoder was + found (p_fifo might be NULL). + * ./po/se.po : Swedish translation, courtesy of Joel Arvidsson + . + * ./plugins/ffmpeg/ffmpeg.h: added a new fourcc (3IV2, you shoudln't be able + to decode it but sometimes it's in fact MPEG-4, thx titer). + * ./plugins/mp4/*: added capability to read mov with mp3 tracks. But it seems + that mad doesn't like too much fragmented data packets, and thus breaks the + audio. + * ./mozilla/Makefile: fixed dependencies on .h files. + * ./plugins/filter/distort.c: fixed a typo in option names. + * ./plugins/dummy/dec_dummy.c: new dummy decoder, for testing purposes. + * ./configure.in: workaround Debian bug #150490 (bad mozilla-config output). + * ./mozilla/vlcplugin.h: added .mov and .mp4 files to the plugin. + * ./Makefile: we no longer try to merge .a files into libvlc.a, but rather + add them to the vlc-config output. + * ./plugins/dvdplay/*: first version of plugin for libdvdplay; supports DVD + reading with title and menus, pause, seeking, interactive menus with + mouse control. + * ./plugins/gtk/*: allowed 0 for title selection as it is the area for first + play pgc in DVDs. + * ./plugins/familiar/*: interface neatly exits now. + * ./plugins/cinepak/cinepak.c: added a new fourcc. + * ./plugins/mp4/*, ./plugins/ffmpeg/*: some clean up and changed the way + ffmpeg is initialized. + * ./plugins/beos/InterfaceWindow.cpp: implemented muting. + * ./plugins/beos/InterfaceWindow.cpp: fixed code for subtitle and audio + selection, still probs but working. + * ./plugins/beos/*: changes to ensure BeOS plugins compile and function, + implemented a intf_vlc_wrapper to "shield" the BeOS code from the + underlying vlc structurs, yet to be completed. + * ALL: decoders now use a fourcc as a probe value. + * include/input_ext-intf.h: killed p_es->b_audio, since i_cat already fills + its purpose. + * include/input_ext-intf.h: killed p_es->i_type in favour of p_es->i_fourcc. + * include/video.h: killed p_pic->p_plane->b_margin; now i_visible_pitch is + always valid. + * ./src/libvlc.h: replaced --mpeg-adec and --ac3-adec with --codec; see + vlc --help for more information. + * include/video.h: removed fourcc values which should _not_ be global + (thanks fenrir for convincing me). + * ALL: video output plugins use the VLC_FOURCC macro to build their fourccs. + * ./plugins/beos/InterfaceWindow.cpp: removed the last remaining call to + input_ChangeES. + * ./src/input/input_info.c, ./src/misc/messages.c: initialized the first + vasprintf arguments to NULL for extra safety. + * ./src/misc/modules.c: added the "any" and "none" keywords to the module + selection string. "any" matches any module, and "none" always fails. + * ./src/input/input_info.c: win32 compilation fixes. + * ./plugins/familiar/familiar.c: fixed gtk core-dump on exit. Used code from + gtk plugin for this. + * ./share/*: VCR icon buttons for Familiar Linux interface. + * ./plugins/familiar/*: Familiar Linux interface (non functional yet). + * ./plugins/memcpy/fastmemcpy.h: commented out suspicious code. + * ./plugins/mp4/mp4.c: improved mp4a detection/handling. + * ./plugins/mp4/mp4.c: can now read mp4 files with mp3 audio declared in + mp4a box. + * ./src/libvlc.c: updated usage info to include STRING_FROM_LIST + configuration items. + * ./src/input/input_info.c: new input info subsystem. + * ./plugins/mp4/*: same endianness for fourcc as the ones in video.h. + * ./plugins/cinepak/*: take care of grayscale option. + * ./debian/control: changed "interface plugin" occurences to "frontend" to + make package descriptions less misleading. + * ./bootstrap.sh: use C locale for generating vlc_symbols.h. + * ./bootstrap.sh: don't generate pofiles by default. + * ./plugins/cinepak/*: a cinepak (cvid) video decoder (codec found in old + .mov files). + * ./plugins/ffmpeg/ffmpeg.c: tried to add an option to allow frame droppping + (--enable-hurry-up). Begin to work. + * ./configure.in: added -lrt for HP/UX port. + * ./plugins/ffmpeg/ffmpeg.c: added a new option, to set the level of error + resilience. It allows to play badly encoded mpeg4 files (illegal VLC code). + * ALL: changed "struct foo_s" into "struct foo_t" to make greppers happy. + * ./src/libvlc.c, ./include/vlc/vlc.h: created reentrant versions of the + libvlc API. + * ./src/vlc.c: vlc uses the non-reentrant libvlc functions. + * ./mozilla/vlcplugin.c: the mozilla plugin uses the reentrant functions. + * ./debian/*: created packages for libvlc0-dev. + * ./plugins/a52/a52.c: added a global lock to prevent two VLC threads to + call a liba52 function simultaneously (liba52 isn't reentrant). + * ./plugins/a52/a52.c: made liba52 the default AC3 decoder. + * ./configure.in: we no longer check for a specific function in -lphtread + because some systems (such as HP-UX...) have them inlined. + * ./Makefile.modules: we don't chmod -x the compiled plugins because of + HP-UX's dynamic linker which would otherwise be unable to open them. + * ./configure: rebuilt using the newest autotools. + * ./src/vlc.c, ./src/libvlc.c: added more robust consistency checks. + * ./configure.in: fixed description of MP4 module. + * ./doc/fortunes.txt: added a selection of Lool's fortune cookies. + * ./configure.in: added mp4 module, default disabled. + * ./src/misc/darwin_specific.c: s/vlc_object_t/vlc_t. + * ./configure.in: fixed Mac OS X compilation which was broken on some + machines. + * ./include/vlc/vlc.h: included os_specific.h. + * ./include/interface.h: interface creation and destruction functions are + now exported to plugins so that any plugin can spawn a new interface. + * ./plugins/mp4/*: preliminary mp4 (and some mov) demux plugin. I've not + enabled it (add by hand to Makefile... and link it with zlib -lz) as I + will probably break it too many times. It work for some mp4 (but without + audio, need aac decoder) and mov with sorenson v1(ffmpeg :). + * ./plugins/x11/xcommon.c: fixed a bug in the computation of the mouse + coordinates sent to interface. + * ./plugins/dvd/dvd.c: added a 'dvdold' shortcut to force the use of the + dvd plugin in case another plugin with higher priority wants to use 'dvd' + as shortcut. + * ./plugins/lpcm_adec/lpcm_adec.c: the loop in lpcm decoder DecodeFrame() + could not exit after b_die in some cases. + * ./configure.in: plugin compilation fix for HP-UX. + * ./configure.in: better protection of CFLAGS and LDFLAGS. Should also fix + remaining issues with XvPutImage detection, please confirm! + * ./plugins/alsa/alsa.c: ALSA device selection patch, courtesy of John + Paul Lorenti . + * ./Makefile: src/misc/modules_builtin.h now depends on Makefile.config. + * ./src/misc/threads.c: improved lazy initialization of the global lock. + * ./doc/fortunes.txt: a few IRC fortune cookies for those with too much + time on their hands. + * ./plugins/mpeg_vdec/video_parser.c, ./src/input/input_programs.c: fixed + a few uninitialized variables. + * MacOS X: added deinterlace submenu. + * ./plugins/access/http.c: fixed a double free bug and a memory leak. + * ./plugins/*: interface plugins set p_vlc->b_die to quit vlc, but check + for p_intf->b_die to know when they are supposed to terminate p_intf. This + will allow to spawn interface plugins on the fly. + * ./plugins/avi/avi.c: quick hack to read file created by ffmpeg. I think + it should work. + * ./plugins/ffmpeg/ffmpeg.c: added support for some others codecs provided + by ffmpeg, but some of them aren't tested. + * ./src/misc/messages.c: debug messages that were issued before the -v + flag was tested for are no longer lost. + * ./configure.in: we now look for XvPutImage instead of XvSetPortAttribute + because XvSetPortAttribute isn't always available. + * ./plugins/macosx/vout_macosx.m: added missing arrow up/down handling. + * MacOS X: added messages and playlist panel, dock menu, context menu + in video view and localization support. + * ./ipkg/control: add package sdl to package dependency list. + * ./doc/vlc-howto.sgml: fixed typos. + * ./include/vlc_common.h: greatly simplified ntoh*, and U??_AT macros are + now alignment-safe. + * ./STATUS: new file indicating who's working on what. Please keep it + up-to-date. + * ./MAINTAINERS: new file indicating who has knowledge on which parts. + * ./po/*: polish translation, courtesy of Arkadiusz Lipiec. + * ./README: removed much outdated data. + * ./debian/*: great package renaming - names should make more sense now. + * ./plugins/mad/mad_libmad.c: prevent the MAD decoder from looping endlessly + when the audio output fifo could not be created. + * ./plugins/gtk/*: new generic "Open Target" window. Please test and + comment on usability. + * ./debian/rules: the Debian package creation script builds ffmpeg. + * ./plugins/mpeg_system/mpeg_audio.c: we skip the ID3 tag at the begining + of an MP3, so more files can be read. + * ./src/vlc.c: reduced the amount of default simultaneous interfaces. + * ./src/libvlc.c: removed calls to vlc_mutex_lock in sighandlers. + * ./plugins/qt/intf_qt.cpp: fixed Qt interface termination. + * ./FAQ: new entry for RTP. + * ./FAQ: minor updates, new sections: uninstall/reinstall, + DirectX-blackscreen, device permissions, debug messages, + config file, (un)planned ports/features, sources.list. + * ./plugins/avi/avi.c: now you can see avi over http (true interleaved + file only), and seek is allowed. + * ./plugins/win32/about.*: added the version number in the About box. + * ./src/misc/darwin_specific.c, ./src/misc/extras.c: moved our custom + strndup to a separate file so that Win32 can benefit from it. + * ./include/vlc_threads.h: Borland compilation fix. + * ./mozilla/*: preliminary Mozilla plugin. Only works under Unix for now. + * ./debian/rules: activated the vlc-xosd, vlc-kde and mozilla-plugin-vlc + Debian packages. + * ./po/*: updated potfiles. + * ./src/misc/modules.c: module_Need accepts a comma-separated list of + module names. Try for instance: "vlc --intf gnome,gtk,dummy". + * ./src/misc/darwin_specific.c: added strndup needed by video_output.c. + * ./configure.in: added -lintl to plugins_LDFLAGS. + * ./plugins/gnome/gtk.c, ./plugins/gnome/gnome.c: prevent older versions + of vlc from crashing when trying to open a recent module. + * ./plugins/x11/xcommon.c: to enter fullscreen mode, we create a new window + instead of moving the current window, which saves us the hassle of + remembering size and position. + * ./plugins/x11/x11.c, ./plugins/x11/xvideo.c: added --no-x11-shm and + --no-xvideo-shm options. + * ./plugins/avi/avi.c: begin to support VOD, but it segfault very quickly + (unless you disable audio or video!) and cannot support seeking( will + just stop ). Moreover it can't work for all files, only interleaved ones. + * ./plugins/lirc/lirc.c: the lirc interface now works again. + * ./plugins/qt/*: the Qt interface now works again. + * ./plugins/kde/*: the KDE interface now works again. + * ./plugins/gtk/gtk_callbacks.c: fixed a segfault when hitting Eject with + an emtpy playlist. + * ./plugins/avi/avi.c: fix some problems with broken avi. + * ./plugins/avi/avi.c: audio seems to be better. + * ./plugins/dvd/dvd_es.c: error in selecting SPU stream. + * ./plugins/spudec/spu_decoder.c: endianness fix for subtitles colour. + * ./plugins/spudec/spu_decoder.c: little hack for preventing blank alpha + palette. + * ./plugins/spudec/spu_decoder.c: subtitle transparency support. + * ./src/misc/modules.c: added the --plugin-path option to give vlc an + extra plugin location. + * ./plugins/text/rc.c: if stdin/stdout are not connected to a TTY, we + don't launch the rc interface. + * ./plugins/access/http.c: fixed a compilation warning. + * ./src/misc/messages.c: cosmetic enhancements in the message output. + * ./plugins/x11/*: added the --x11-drawable and --xvideo-drawable options to + tell vlc to draw in an existing drawable instead of creating a new window. + * ./plugins/avi/*: I rewrite the way to read, in order to minimize seeking + (faster and in prevision of VOD by http, but not yet functionnal ). But + sound becomes horrible, I will try to fix it as soon as possible. + * ./plugins/macosx/vout_vlc_wrapper.m: arrow-up and arrow-down allow to + control the sound volume. + * ./plugins/access/http.c: for streams which are not seekable, we fall + back on old HTTP/1.0 behavior; on systems implementing atoll() we + can also read files > 2 GB. + * ./configure: atoll() detection. + * ./plugins/macosx/intf_vlc_wrapper.m: fixed a bug with the language and + subtitle menus. + * ./README.MacOSX.rtf: more documentation. + * ./include/configuration.h: renamed MODULE_CONFIG_* macros into CONFIG_*. + * ./include/configuration.h, ./plugins/gtk/gtk_preferences.c, + ./plugins/filter/transform.c, ./plugins/filter/distort.c, + ./plugins/filter/deinterlace.c: added an ADD_STRING_FROM_LIST() + configuration macro. + * ./include/modules.h, ./include/video_output.h, + ./src/video_output/video_output.c, ./plugins/filters/*: added a + VOUT_FILTER capability. Having a clear distinction between VOUTs and + VOUT_FILTERs allows us to get rid of ugly hacks. The filters are also + stackable now (use --filter=foo:bar:foo etc..). + * ./include/configuration.h, ./src/libvlc.h, ./src/libvlc.c: clean-up + + added an ADD_USAGE_HINT() configuration macro. + * ./FAQ: added QT6 FAQ entry. + * ./configure.in: fixed inet_pton detection. + * ./plugins/filter/deinterlace.c: the blend mode is now a lot smoother, but + also a bit slower, so I also kept the old version, optimized it, and + called it "mean". + * ./plugins/network/ipv6.c: IPv6 multicast support, courtesy of Remco + Poortinga . + * ./extras/MacOSX/Resources/*: Mac OS X icons and fixes, courtesy of Benjamin + Mironer . + * ./plugins/filter/deinterlace.c: added two new deinterlacing methods, + we now have "discard", "blend", "bob" and "linear". + * ./plugins/mad/mad_libmad.c: changed error messages to warning/debug. + * ./plugins/macosx/*: additional minor fixes. + * ./plugins/macosx/vout_macosx.m, ./plugins/macosx/aout_macosx.m, + ./plugins/macosx/intf_vlc_wrapper.m: preliminary OS X compilation fixes. + * ./include/vlc_threads.h, ./src/misc/threads.c: improved the cond_wait + implementation to avoid races, by using SetEvent instead of PulseEvent. + * ./plugins/xosd/xosd.c: a couple more options, better defaults. + * ./configure.in: checking for the header should be enough in most cases. + * ./plugins/xosd/xosd.c: configuration options. + * ./plugins/win32/*: tried to port the Win32 interface to the new API. Seems + to be still crashing. + * ./plugins/gtk/gtk_callbacks.c: some code cleaning. + * ./plugins/text/rc.c: fixed the "a" command. + * ./plugins/xosd/*: basic On Screen Display intf-plugin based on libxosd + * ./src/misc/netutils.c: network mode works again. + * ./plugins/gtk/*: the Gnome/Gtk+ interfaces have all their features back. + * ./src/playlist/playlist.c: fixed an off-by-one loop error. + * ./plugins/a52_system/.cvsignore: what about a little .cvsignore ? + * ./plugins/dummy/input_dummy.c: dummy targets such as vlc:nop, vlc:loop + and vlc:quit work again. + * ./src/playlist/playlist.c: when a new target is added, for instance through + the "File" menu, it is automatically played. + * ./include/vlc_objects.h: pointers are set to NULL after a call to + vlc_object_destroy. + * ./po/pl.po: updated polish translation, thanks to Arkadiusz Lipiec + . + * ./src/playlist/playlist.c: lots of playlist behaviour enhancements. + * ./src/misc/objects.c: we do not hang on attempt to destroy an object with + a non-zero reference count, but we still complain. + * ./plugins/gtk/gtk_control.c, plugins/gtk/gtk_playlist.c: most controls such + as play, pause, stop, next, fast etc. work again. + * ./plugins/gtk/gnome_*: got rid of lots of useless wrappers which were a + workaround for a bug in Glade. Instead, bootstrap.sh does the Glade fixes. + * ./plugins/ffmpeg/ffmpeg.c: if there is already a video output with the + appropriate properties, we use it. + * ./Makefile: minor fix for the BeOS' make-package (icon loss). + * ./plugins/spudec/spu_decoder.c: release vout when we close spudec. + * ./plugins/ac3_spdif/ac3_spdif.c: only report initiliazation error when it + is really an error. + * ./include/video_output.h: added mouse coordinates to vout struct. + * ./plugins/mpeg_vdec/video_parser.c: check that p_vpar->p_vout is available + before detaching it. + * ./plugins/gtk/gtk_callbacks.c: fixed a segfault when switching to + fullscreen from the popup menu. + * ./src/interface/interface.c: interfaces are no longer attached only to + p_vlc. + * ./src/libvlc.c, ./src/misc/modules.c, ./src/playlist/playlist.c, + ./src/input/input.c: improvements in the playlist handling (not quite that + yet though). + * ./plugins/spudec/spu_decoder.c: we now use FIND_ANYWHERE to find a vout. + * ./plugins/dvd/dvd_es.c, ./plugins/satellite/input_satellite.c, + ./plugins/dvdread/input_dvdread.c: updated outdated variable names. + * ./src/playlist/playlist.c, ./src/input/input.c: added safety checks to + prevent crashes on next file. + * ./src/misc/objects.c: commented all functions. + * ./src/misc/objects.c: implemented vlc_object_find( , , FIND_ANYWHERE). + * ./src/misc/objects.c: renamed vlc_object_unlink to vlc_object_detach. + * ALL: got rid of p_object->p_this which is now useless. + * ./include/main.h, ./plugins/beos/intf_beos.cpp: BeOS compilation fixes. + * ./bootstrap.sh, ./src/libvlc.h, ./po/*: fixed bootstrap.sh so that it does + not include CVS Id lines in automatically created files. + * ./plugins/dummy/intf_dummy.c, ./plugins/chroma/i420_yuy2.c, + ./src/interface/intf_eject.c, ./src/misc/threads.c: win32 compilation fix. + * ./plugins/directx/aout_directx.c, ./plugins/directx/vout_directx.c, + ./plugins/directx/vout_events.c: the DirectX notification and event threads + now use the vlc_thread_create / vlc_thread_ready scheme. Untested. + * ./configure.in: added a check for inttypes.h and sys/int_types.h. + * ./configure.in: fixed the HTTP plugin compilation under BeOS. + * ./plugins/network/ipv6.c: reactivated IPv6 module. + * ./src/misc/beos_specific.cpp: BeOS fixes, removed a static variable. + * ./include/main.h: replaced p_sys with explicit variables because it's + really much simpler this way. + * ./src/misc/beos_specific.cpp: the BeOS BApplication thread now uses the + vlc_thread_create / vlc_thread_ready scheme to signal readiness. + * ./src/misc/objects.c: prevent the creation of a too small vlc_object_t. + * ./include/vdec_ext-plugins.h: removed the vdec_thread_t declaration, which + belongs to plugins/mpeg_vdec. + * ALL: the first libvlc commit. + +0.4.6 +Wed, 13 Nov 2002 23:41:00 +0200 + + * FAQ: changed Debian repository location to HTTP (for better upload + stats estimations on our side). + * plugins/a52/a52.c: is now the default ac3/a52 decoder (because it has a + nicer audio quality than ac3_adec). + * configure, Makefile.modules, configure.in: --enable-familiar accepts now: + --with-sdl-prefix=[PATH], --enable-gtk-prefix=[PATH] and + --enable-gpe-prefix=[PATH] to enable cross-compiling. + * plugins/familiar/familiar_callbacks.c: Bug in ReadDirectory() it results + in empty file/directory names in the user interface. + * configure.in: Added GPE support to familiar interface. + Use --with-gpe-prefix= to enable it. + * ipkg/*: GPE is integrated in familiar files. + * ipkg/*: Familiar packaging files. + * include/defs.h.in: Added HAVE_GPE_INIT_H define for autodetection of + libgpewidget and GPE headerfiles. + * ALL: changes to reflect the fact that libdvdcss now needs a colon after + the DVD drive letter. + * src/misc/modules.c: plugin extension check is now case unsensitive. + * plugins/dsp/aout_dsp.c: replaced O_NONBLOCK by O_NDELAY, and put the + device back in blocking mode once open. + * plugins/network/ipv4.c: fixed a crash with multicast addresses when no + interface address is given. + * plugins/directx/vout_directx.c: fixed a nasty segfault on initialization. + * plugins/dsp/aout_dsp.c: Added O_NONBLOCK flag to the open command, + so that if /dev/dsp is used, vlc tries with other plugins (like esd). + +0.4.5 +Fri, 11 Oct 2002 15:37:41 +0200 + + * src/interface/main.c, src/misc/modules.c: added a quick hack for a + --plugin-path command line option. + * INSTALL.win32: removed note about running in administrator mode to play + a DVD. + * ./plugins/beos/InterfaceWindow.cpp: user can now drop a DVD disk icon + onto the interface or playlist window to open a DVD. + * ./plugins/x11/xcommon.c: we include Xmd.h before dpms.h (compilation fix + for Solaris). + * ALL: many BeOS fixes and enhancements. + * ALL: VLC is now compliant with MPEG-2 TS standards embedding A/52 + audio. It can still read from the old VLS with --vls-backwards-compat. + * ./plugins/familiar: interface for familiar Linux. + * ./plugins/qte: Qt/embedded video output. + * ./plugins/network/ipv4.c: added a --iface-addr option to select which + interface to use for multicast sockets. + * configure.in, configure: use -mms-bitfields instead of -fnative-struct + for mingw32 gcc-3.x. + * include/interface.h, plugins/dummy/intf_dummy.c, plugins/text/logger.c, + plugins/text/rc.c: display message on Win32 explaining how to get back + to the GUI mode. + * include/threads_funcs.h, src/misc/win32_specific.c: ignore the + win9x-cv-method config option on WinNT when fast-mutex is not enabled. + * plugins/access/rtp.c: backported RTP access module from HEAD. + * plugins/access/http.c: fixed a compile issue in the HTTP plug-in. + * configure.in: fixed bug with $(QTDIR). + * plugins/filter/deinterlace.c: fixed an issue with the linear method. + +0.4.4 +Sun, 11 Aug 2002 01:18:13 +0200 + + * ./src/misc/messages.c: fixed an extremely old buffer overflow. + * ./plugins/spudec/spu_decoder.c: fixed a moronic endianness bug. + * ./plugins/dvd/dvd.c: added a --dvd-css-method config option to the dvd + plugin. + * ./include/threads_funcs.h: fixed the --fast-mutex option. + * ./plugins/directx/vout_directx.*: the directx vout plugin now uses the + IID_IDirectDrawSurface2 interface, this shouldn't break anything and we + should now support WinNT4+DirectX3. Added support for YUY2 overlays because + a few graphics cards only support this. Some code cleanup too. + * ./plugins/directx/vout_events.c: small bugfix. + * ./plugins/network/ipv6.c: attempt to fix the win32 IPv6 implementation. + Multicast should even work (untested) although we'll need to find a way to + replace if_nametoindex() to have a fully functionnal win32 port. + * ./include/threads.h, ./include/threads_funcs.h: reverted Win32 pthread + implementation to the old code. Fixed vlc_cond_broadcast() for WinNT/2K/XP. + Additional vlc_cond_* implementations for Win9x. + * ./src/interface/main.c: renamed --fast_pthread option into --fast-mutex. + Added a--win9x-cv-method option to choose which vlc_cond_* implementation + we want on Win9x. + * ./plugins/avi/avi.c: kludge to play AVI files created by ffmpeg. + +0.4.3 +Fri, 26 Jul 2002 00:03:13 +0200 + + * ./README.MacOSX.rtf : updated README. + * ./plugins/macosx/vout_macosx.c : additional QuickTime fix, thanks to + David Eldred from Apple. + * ./plugins/macosx/vout_macosx.m : fixed _the_ bug with QuickTime 6. + * ./plugins/access/http.c: we are now parsing the http return code and + failing cleanly if it is >= 400. + * ./plugins/mpeg_system/mpeg_es.c, ./src/input/input_ext-dec.c: fixed + a deadlock issue with demuxers waiting on p_fifo->data_lock. + * ./src/input/input_ext-plugins.c: fixed a memory leak. + * ./plugins/access/http.c: fixed a bug with HTTP/1.0 servers. + * ./src/interface/main.c: new --mtu option. + * ./configure.in: fixed nanosleep detection on some platforms. + * ./plugins/beos/*: created a wrapper class for VLC functions and + interaction, improved file and disk opening, fixed drag and drop, added + right click menu and always on top mode. + * ./plugins/beos/VideoWindow.h: fixed pop-up menu's radio mode. + * ./plugins/beos/VideoWindow.h: fixed changing workspaces problem. + * ./plugins/beos/VideoWindow.h: added a popup menu to enable changing. + +0.4.2 +Sun, 7 Jul 2002 22:15:33 +0200 + + * ./plugins/dvd/dvd_es.c: error in selecting SPU stream. + * ./plugins/spudec/spu_decoder.c: endianness fix for subtitles colour. + * ./plugins/spudec/spu_decoder.c: little hack for preventing blank alpha + palette. + * ./plugins/spudec/spu_decoder.c: subtitle transparency support. + * ./plugins/macosx: new controls for audio output, and deinterlacing + support. + * ./plugins/macosx: fixed a bug with language and subtitle menus. + * ./plugins/access/http.c: should be more tolerant with old servers and + non-seekable streams. + * ./plugins/filter/deinterlace.c: backported new deinterlacing routines. + * ./include/threads.h, ./include/threads_funcs.h: backported the new Win32 + cond_wait implementation from MAIN. + * ./plugins/gtk/gnome_callbacks.c: fixed a crash when activating preferences + from the popup menu. + +0.4.1 +Mon, 3 Jun 2002 23:43:35 +0200 + + * ./plugins/gtk/gnome.glade: added lines this #@%$! Glade had munched, fixes + a segfault in the Gnome popup menu when toggling the interface. + * ./configure.in, ./plugins/mpeg_system/mpeg_ts.c: fixed libdvbpsi handling. + * ./src/misc/configuration.c: fixed the --nofoo option handling. + * ./src/interface/main.c: fixed two compilation warnings under Solaris. + * ./plugins/avi/avi.c, ./plugins/mpeg_system/mpeg_audio.c: ES will be + selected only once. + * ./plugins/win32/waveout.c: waveOutUnprepareHeader() was never being + called. This should fix the memory leak some people reported when using + the waveout plugin. + * ./src/misc/netutils.c: factored code common to the interfaces into the + network_ChannelJoin function. + * ./plugins/mga/xmga.c, ./plugins/x11/xcommon.c, ./plugins/sdl/vout_sdl.c, + ./plugins/directx/vout_events.c: we can now use keys F1 to F12 to switch + channels from the video output window. + * ./plugins/motion/motionmmx.c: MMX motion optimizations courtesy of + Vladimir Chernyshov . + * ./plugins/dvdread/dvdread.c: disabled the dvdread plugin because it + currently sucks. + * ./src/misc/configuration.c, ./src/interface/main.c: we now accept --nofoo + and --no-foo as negations for --foo. Also, the --help output is nicer. + * ./plugins/macosx/*: rewrote the net panel for OS X + * ./plugins/qnx/vout_qnx.c: QNX compilation fix. + * ./plugins/spudec/spu_decoder.c: fixed a margin bug in the SPU renderer + which caused subtitles to appear slanted in odd width windows. + * ./plugins/gtk/gtk_display.c, ./plugins/win32/mainframe.cpp: we deactivate + popup menus when no stream is being played, even in network mode. + * ./src/input/mpeg_system.c: removed unnecessarily verbose message. + * ./src/video_output/video_output.c: fixed the "picture has invalid status" + bug which might have been the cause of crashes. + * ./plugins/filter/crop.c: attempt at an automatic border cropping filter, + using "--filter crop --autocrop". + * ./vlc.spec: added missing filters to the RPM generation. + * ./plugins/macosx/*: channel change support on Mac OS X. + * ./extras/MacOSX/Resources/vlc.icns: new OS X icon, courtesy of Benjamin + Mironer . + * ./plugins/filter/crop.c: crop filter. Usage examples: + --filter crop --crop-geometry 640x480 + --filter crop --crop-geometry 320x200+10+10 + * ./plugins/macosx/intf_vlc_wrapper.m: fixed a bug in the chapter handling. + * ./plugins/macosx/vout_vlc_wrapper.m: more keystrokes. + * ./plugins/chroma/i420_yuy2.h: simplified the chroma code. Please test + under BeOS and QNX. + * ./plugins/macosx/intf_vlc_wrapper.m: fix for non-ASCII filenames in the + MacOS X interface, courtesy of Watanabe Go . + * ./plugins/chroma/i420_yuy2.h: fixed an old overflow bug spotted by + Rudolf Cornelissen. + * ./plugins/chroma/i420_rgb16.c: fix for skewed display in software RV32 + mode, courtesy of Pascal Levesque. + * ./plugins/beos/InterfaceWindow.h: stopped more than one playlist being + opened. + * ./plugins/beos/InterfaceWindow.cpp: fixed segfault on exit with playlist + open. + * ./plugins/beos/vout_beos.cpp: corrected size of output window. + * ./plugins/a52/a52.c, ./plugins/satellite/satellite_tools.c: compilation + fixes for Solaris. + * ./plugins/sdl/aout_sdl.c: fixed an endianness issue created by a + brain-dead developer :p + * ./plugins/win32/mainframe.cpp: the "Eject" button is enabled only after we + played a dvd or vcd. + * ./plugins/win32/mainframe.cpp: the toolbar is now flat and less cubist. + * ./plugins/win32/mainframe.cpp: got rid of the ugly slider with some winXP + skins. + * ./plugins/win32/messages.cpp: added a config option to limit the number of + messages in the log window (default is set to 500). + * ./plugins/mpeg_vdec/vpar_headers.c: don't try to deference a null + pointer. + * ./plugins/gtk/gnome.c: compilation fix. + * ./src/misc/netutils.c: removed the obsolete artificial delay when switching + channels. + * ./src/interface/intf_eject.c: added ejection code for Win32. + * ./plugins/win32/*: enabled the "Eject" button (thanks Ipkiss). + * ./include/configuration.h: changed ADD_BOOL and ADD_BOOL_WITH_SHORT config + macros to accept a default value as an argument. + * ./src/misc/configuration.c: modified the command line parsing to accept + --foo and --no-foo when a "foo" boolean config option is defined. + * ./src/interface/main.c: modified the help menu to indicate whether the + option is enabled or disabled by default. + * ./src/video_output/video_output.c: when the video output hasn't received + a new picture for a while, it redisplays the last displayed one. This will + be useful for DVD menus, but also solves the "picture becomes black when + vlc is paused" issue. + * ./plugins/dummy/dummy.c: added a CATEGORY_HINT to the config. + * ./plugins/x11/xcommon.c: small change to the ToggleFullscreen routine + to avoid a flickering during the switch. + * ./plugins/filters/*: fixed inconsistencies. + * ./plugins/win32/mainframe.dfm: new icons for the toolbar buttons. + * ./plugins/win32/network.cpp: URL can now start with "http://" in the + Network dialog box. + * ./plugins/win32/about.dfm: updated the About dialog box. + * ./include/video.h: added a b_force flag to picture_t so that we can force + the display of an image even if it is late. + * ./plugins/filter/*: filters are now configurable through the configuration + system. Patch from Sigmund Augdal . + * ./po/vlc.pot: updated potfile. + * ./po/pl.po: polish translation, courtesy of Arkadiusz Lipiec + . + * ./debian/control: updated Debian package descriptions. + * ./plugins/aa/aa.c: removed all palette code as it was unused. + * ./plugins/aa/aa.c: moved the aa_fastrender call from vout_Display to + vout_Render. + * ./plugins/aa/aa.c: added support for resizing and right-click menu. + * ./src/input/mpeg_system.c: in order to make ac3 working in avi file, moved + some code from ac3 decoder to mpeg_system.c. (skip 3 bytes is now done in + mpeg_system.c and no longer in ac3 audio decoder). + * src/misc/netutils.c: tests if message from vlcs begins with 'E:' or 'I:' + instead of testing 'E: ' and 'I: ' (to simplify miniVLCS). + * ./plugins/avi/avi.c, ./plugins/avi/libioRIFF.c: added more safety tests. + * ./include/inpu_ext-dec.h: added a check to fifo->b_die after the call + to BitstreamNextDataPacket() in GetChunk(). + +0.4.0 +Thu, 23 May 2002 01:27:05 +0200 + + * ./plugins/access/http.c: fixed HTTP input under Win32 + * ./plugins/chroma/i420_yuy2.h: bugfix for the I420 to YUY2 MMX chroma + transformations, with the help of Pascal Levesque. + * ./plugins/directx/directx.c: UnregisterClass() in MODULE_DEACTIVATE. If + we don't do this, trying to use the class when the plugin is reloaded will + cause a segfault. + * win32: replaced TUpDown components by TCSpinEdit ones, which allow + values greater than 32767. It fixes the audio bug ocurring when a + configuration file is saved under the win32 interface + * ./plugins/win32/mainframe.cpp: Added some extra space between + statusbar and toolbar when nothing is displayed. + * ./plugins/text/logger.c: on win32 the logger interface shows up a dos + command box. + * ./plugins/gtk/gnome.c: fixed uninitialized variable + * ./plugins/gtk/gtk_playlist.c: simplified GtkRebuildCList() + * ./plugins/beos/vout_beos.cpp: changes to reduce segfaults on exit, + and also allow only one Playlist window. + * ./include/modules_inner.h: fixed a crash when reopening a hidden + module + * ./plugins/dvd/dvd_access.c: on Win32 the DVD access plugin has to be + explicitly requested. This avoids crashes when the input thread tries + to open files as dvds. + * ./plugins/dvd/dvd_access.c: fixed a side-effect bug causing crashes + on DVD title change + * ./plugins/chroma/i420_yuy2.c: margin support for the 420 planar to 422 + packed chroma transformations. + * ./src/input/input.c: fixed a bug with the input remaining stuck when no + network data was present. + * win32: fixed a stupid bug in the Network dialog. + * ./src/interface/main.c: fixed a little memleak. + * ./src/input/input_dec.c: removed useless code. + * ./src/input/input.c, ./plugins/gtk/gtk.c: fixed access to uninitialized + variables. + * ./plugins/dvd/dvd_demux.c: fixed the pf_demux return value. + * ./configure.in: tried to fix the -lavcodec detection. + * ./plugins/x11/xcommon.c: fixed x11 and xvideo alternate fullscreen. + * ./plugins/network/ipv6.c: experimental support for Windows IPv6 + * ./plugins/a52/a52.c: added an option to disable the dynamic range + compression. + * ./Makefile.opts.in: removed configuration stuff which does not need to + rebuild anything to Makefile.config, so that editing it will not cause + a complete rebuild. + * ./plugins/beos/VideoWindow.h, ./plugins/beos/vout_beos.cpp: improved + Overlay and Bitmap output modes. + * ./plugins/macosx/aout_macosx.m, ./plugins/macosx/aout_macosx.m: removed + unused headers. + * ./plugins/macosx/intf_controller.[mh]: you can now drag & drop files onto + the vlc dock icon. CFBundleDocumentTypes in Info.plist doesn't seem to have + any effect, so you'll have to hold down command-option when dropping until + this is resolved. + * ./src/video_output/video_output.c: removed previous patch to the video + output since it causes problems for some people. + * ./plugins/macosx/*: worked around a bug in seeking. + * ./include/threads_func.h: OS X port now uses real-time threads. + * ./configure.in: fixes for ffmpeg and mad. + * ./extras/MacOSX/Resources/English.lproj/MainMenu.nib/objects.nib: OS X intf + is now more consistent with Apple guidelines. + * ./plugins/gtk/gtk_preferences.c: fixed a segfault I introduced lately in + gtk_preferences. + * ./plugins/macosx/intf_vlc_wrapper.m: don't try to eject unless there is + a disc to eject. + * ./plugins/macosx/intf_vlc_wrapper.m: fixed a segfault in the Mac OS X + interface. + * ./plugins/satellite/input_satellite.c: cosmetic changes in error messages. + * ./plugins/gtk/*: gtk and gnome interfaces now use frequency and symbol + rate default values. + * ./BUGS: removed fixed entries. + * ./plugins/spudec/spu_decoder.c: initialize p_spudec->p_vout to NULL to + prevent segfaults if InitThread does not complete. + * ./plugins/text/rc.c: on win32 the rc plugin opens a new console. + * ./plugins/filters/*: filters were using memalign but freeing p_data instead + of p_data_orig. + * ./extras/Win32_msvc/vlc.dsp: updated MSVC++ project. + * ./src/interface/main.c: small corrections to the LONGTEXT descriptions in + main.c. + * ./AUTHORS: a few additions. + * ./vlc.spec: updates, courtesy of Yves Duret . + * ./configure.in: new --with-ffmpeg option for standard installations. + * ./src/interface/main.c: updated long descriptions. + * ./plugins/dummy/intf_dummy.c: on win32 the dummy interface plugin will + open a dos command box. With this fix, vlc should never fail silently and + leave a ghost process running in the background when there isn't any + working GUI plugin. + * ./include/config.h: on win32 DVD/VCD_DEVICE defaults to to D:. + * ./src/interface/main.c: added a few *_LONGTEXT descriptions. + * ./plugins/mpeg_vdec/video_parser.c: moved the mpeg-motion and mpeg-idct + options to the mpeg_vdec plugin. + * ./plugins/spudec/spu_decoder.c: mark subpictures destroyed when we end + spudec thread. + * ./src/audio_output/aout_pcm.c: desperate attempt to improve audio output. + * ./doc/vlc-howto.sgml, ./doc/vlc.1, ./README.MacOSX.rtf: updated + documentation. + * ./INSTALL.win32: updated INSTALL.win32. + * ./plguins/directx/vout_directx.c, ./plugins/directx/vout_events.c: a little + bit of clean-up in the directx video output plugin + * ./plugins/macosx/*: fixed Mac OS X resizing. + * ./src/misc/configuration.c: warning levels are no longer additive, patch + courtesy of Arnaud de Bossoreille de Ribou . + * ALL: changed __inline__ with inline (autoconf does the job for us anyway, + and mipspro doesn't know about __inline__). + * ./src/audio_output/aout_pcm.c, ./src/audio_output/aout_ext-dec.c: fixed + deadlock in NextFrame() in aout_pcm.c. + * ./plugins/directx/vout_directx.c, ./plugins/directx/vout_events.c: fixed + a bug in the directx window creation function. We register a window + class once per process so we must be careful not to free the associated + resources. + * ./extras/Win32_msvc/vlc.dsp: updated the MSVC++ project files and added + support for dirent (vlc compiled with msvc can now load plugins - even + compiled with mingw). + * ALL: small portability fixes. + * ./plugins/macosx/*: menu item to maximize the volume in Mac OS X. + * ALL: dropped dependancy on autoconf 2.52. + * ./plugins/directx/vout_directx.c: modified the directx video plugin to try + to create an YUV surface before falling back to an RGB surface when it's + not possible to use overlays. Some graphic cards can do the YUV->RGB + conversion in hardware during the blitting stage. + * ./plugins/directx/vout_directx.c: in the directx video plugin, we now + request that the RGB surface be created in video memory. The reasoning + behind this is that usually surfaces in video memory benefit from more + hardware acceleration (like for instance hw rescaling, hw blitting, etc.). + * ./plugins/directx/directx.c: added two options to the directx video plugin + to disable the above features (mainly because my video driver is buggy and + doesn't handle them well). + * ./src/misc/configuration.c: small cosmetic changes to the generation of + the config file. + * ./src/misc/configuration.c: fix for config_GetHomeDir() on win32. + SHGetFolderPath() is located in shfolder.dll not shell32.dll. + * ./plugins/gtk/gtk_preferences.c: fix for the gtk preferences dialog box. To + be sure that an int or float value is actually changed we call + gtk_spin_button_update() in the GtkInt/FloatChanged() event handler. + * ./debian/control: made the Build-Depends: entry a one-liner (Closes + Debian bug #147103). + * ./src/audio_output/aout_spdif.c: a lock was not released. + * ./plugins/text/rc.c: added a safety lock. + * ./plugins/gtk/*: new Network dialog box for Gtk and Gnome interfaces. + * ./plugins/mpeg_system/mpeg_audio.c: you can now force the mpeg_audio demux + module. + * ./plugins/mpeg_vdec/vpar_headers.c: update reference in case of sequence + end code. + * ./src/input/input_clock.c: don't keep the control lock during the pause. + * ./plugins/ac3_spdif/ac3_spdif.c, ./src/audio_output/aout_spdif.c: check for + b_die and b_error in all loops so that we don't remain stuck waiting for + data whereas the vlc has tried to quit. + * ./src/misc/mtime.c: we use nanosleep whenever possible (patch from Meuuh). + * ./plugins/avi/avi.c : it will not segfault with broken avi with an unknown + stream. + * ./src/misc/mtime.c: removed usage of usleep (not thread safe) (by Meuuh). + * ./src/video_output/video_output.c: video output patch to improve handling + of late pictures (by Meuuh). + * ./src/interface/intf_msg.c, src/interface/intf_playlist.c: disabled + calls to realloc(_,0) in a similar way to input_programs.c. + * ./plugins/dvd/dvd_seek.c: fix random segfaults on title change (i_cell + should be tested _before_ we access the structures). + * ./src/input/input_programs.c: fixed memory corruption by setting a few + pointers to NULL after they have been free()ed. + * ./src/input/input_programs.c: removed now useless ASSERTs. + * ./plugins/beos/*: improved overlay and bitmap support, not tested on nVidia + cards. Lower CPU usage and no thread created per frame. + * ./plugins/dvd/dvd_summary.c: added a sanity check. + * ./plugins/vcd/*: vcd access plugin now uses mpeg_ps demux instead of its + own one. + * ./plugins/macosx/vout_qdview.m: attempt to fix the video output with + QuickTime 6. + * ./plugins/ac3_adec/ac3_adec.c: probably fixed most "crash when changing + audio track" problems by zeroing the p_ac3dec structure. + * ./plugins/ac3_adec/ac3_adec.c: fixed a "INPUT_MAX_ALLOCATION reached" + crash. + * ./src/input/input_dec.c, ./src/input/input_programs.c: check size to avoid + realloc(0). + * ./plugins/win32/network.*: new Network dialog box. + * ./src/input/input.c, ./plugins/access/http.c, ./plugins/access/udp.c: added + the input_FDNetworkClose() function to be called when closing a networking + stream instead of input_FDClose(). + * ./src/misc/netutils.c: use closesocket() instead of close() at the end + of the network_ChannelJoin() for WIN32. + * ./src/misc/configuration.c: fixed an issue with long options from + modules where option arguments and playlist entries were mixed. + * ./plugins/spudec/spu_decoder.c: fixed endianness issue; subtitles colors + should be OK now. + * ./plugins/satellite/input_satellite.c: fixed a compilation warning. + * ./configure.in: added libdvbpsi version check. + * ./include/modules_inner.h: fixed a bug in module reinitialization, + which should fix crashes after a long pause. + * ./src/input/*: fixed a bug (glitch/segfault) when seeking. + * ./src/input/mpeg_system.c: we handle PCR even if they are not attached + to a PMT. + * ./configure.in: new --with-mad-tree configure option. + * ./BUGS: updated BUGS file. + * ./src/input/mpeg_system.c: it should now be possible to quit when reading + a bogus file. + * ./src/misc/iso-639.def, ./include/iso_lang.h, ./src/misc/iso_lang.c: + iso-839-[12] tools. + * ./plugins/dvd/dvd_es.c, ./plugins/dvd/dvd_summary.c, + ./plugins/dvdread/input_dvdread.c: adapted DecodeLanguage calls to the new + behaviour. + * plugins/mpeg_system/mpeg_ts.c: ISO-639-2 descriptors handling. + * ./include/mmx.h, ./plugins/imdct/*: gcc-3.1 compilation fixes courtesy + of Yves Duret and other Mandrakesoft guys I don't know. + * ./plugins/macosx/intf_vlc_wrapper.m: do not eject when we're reading from + the disc... + * ./src/misc/modules.c: if a module has a zero-scored capability, we don't + try to use it, unless it was explicitely requested (--vout for example). + * ./plugins/sdl/vout_sdl.c: fixed an aspect ratio issue (thanks Meuuh). + * ./src/input/mpeg_system.c: fixed an old old bug in TS demux, thank you + Meuuh. + * ./plugins/mpeg_system/mpeg_audio.c: to avoid problem with PS, test only the + first 4 bytes for mpeg header so some broken files, and all web radio will + not work. You can change this by changing value of MPEGAUDIO_MAXTESTPOS. + * ./doc/vlc-howto.sgml: spelling mistakes, small updates, harmonization with + other documentations (thank you Alexis). + * ./plugins/satellite/*: some fixes in options parsing (thank you Sam). + * ./extras/MacOSX/Resources/vlc.icns: new OS X icon, courtesy of Joeri van + Dooren . + * ./plugins/mpeg_vdec/video_decoder.c: Mac OS X fix. + * ./plugins/mpeg_system/mpeg_audio.c: you should again be able to play PS + streams (I hope it will be enough). Sorry. + * ./plugins/ffmpeg/ffmpeg.c: CVS version of ffmpeg can now decode + msmpeg4 v1 v2, so I added support for this. But you can always use + the old ffmpeg library without any problem (I hope ;). + * ./include/video.h : added new fourcc codes for avi. + * ./plugins/filter/clone.c: New filter, `--filter clone', duplicates + display. To duplicate 12 times, use `--filter clone:12'. + * ./plugins/x11/xcommon.c, ./plugins/x11/xvideo.c: --xvideo-chroma flag to + force the XVimage format used. + * ./plugins/text/ncurses.c: ncurses interface improvements by Thomas Graf. + * ./plugins/mpeg_system/mpeg_audio.c: we don't use any more U32_AT. + * ./plugins/macosx/*: disabled auto-hiding of mouse cursor since it doesn't + work when browsing menus; instead, click in the video window + * ./plugins/macosx/*: fixed a major bug in the spu decoder. + * ./plugins/macosx/*: Objective-C files are now .m. + * ./plugins/macosx/*: fixed menus. + * ./plugins/macosx/*: menus for Program/Title/Chapter/Languages. + * ./plugins/avi/avi.c: we use input_ClockManageRef to do synchro. + * ./include/common.h, ./include/input_ext-plugins.h: exported + input_ClockGetTS for plugins. + * ./plugins/mpeg_system/mpeg_audio.c: a demux for mpeg audio stream (file, + web radio ...) + * ./src/interface/main.c: if Ctrl-C doesn't kill vlc cleanly for any + reason, user just needs to hit Ctrl-C again 1 second later and we'll + exit disgustingly instead of freezing. + * ./plugins/macosx/intf_vlc_wrapper.c: menu code fixes. + * ./plugins/macosx/*: fixed Mac OS X VOUT_SIZE_CHANGE signal. + * ./plugins/ffmpeg/ffmpeg.c: corrected some bad lock/unlock. + * ./plugins/avi/avi.c: can now use --novideo. + * ./plugins/macosx/*: improvements of the OS X GUI. + * ./plugins/mad/*: added mad plugin downscale config option for selecting + downscaling routine. Choices are: fast, mpg321. Default the fast version + is used. The downscale option mpg321 uses an algorithm that adapts to + dither errors. This routine is borrowed from MPG321 code. + * ./plugins/mad/*.c: mono audio streams get now duplicated on the right + channel instead of silencing the right channel (untested). + * ./plugins/avi/avi.c, ./plugins/ffmpeg/ffmpeg.c: improvements. + * ./src/video_output/video_output.c: video plugins that don't handle + rescaling themselves have to let the video_output thread know about + resizing events (with VOUT_SIZE_CHANGE event). (this part needs some + clean-up but it is basically working for the X11 and SDL plugins). + * ./plugins/sdl/vout_sdl.c: fixed fullscreen for the SDL plugin. + * ./plugins/sdl/vout_sdl.c, ./plugins/mga/xmga.c: xmga and sdl now switch to + fullscreen on double-click. + * ./plugins/avi/avi.c: try to not freeze when reaching end file. + * ./plugins/x11/xcommon.c, ./src/video_output.c: fixed the resizing and + scaling of the X11 video output. + * ./plugins/x11/xcommon.c: clicking on the video doesn't pause it anymore + (use spacebar for this), but double-clicking will now switch between + fullscreen and window mode. + * ./plugins/gtk/gtk_preferences.c: the Apply button in the preferences menu + is grayed out unless there's a change to apply. + * ./plugins/gtk/gtk_preferences.c: GtkConfigApply() now clears the list of + config changes before returning. + * ./plugins/network/ipv4.c: fixed ipv4.so compilation under QNX. + * ./configure.in: deactivated ipv6.so under QNX for now. + * ./plugins/macosx/aout_macosx.c: more stable audio output with more output + buffering. + * ./BUGS: no text in the status bar with gtk intf, no window title in gtk + intf on some machines, correct title on another. + * ./plugins/gtk/*.glade, ./plugins/gtk/*_interface.*: fix for interface + autoshrink when toolbar text isn't displayed. + * ./plugins/gtk/gnome.c, ./plugins/gtk/gtk.c, ./plugins/gtk/gtk_display.*: + callbacks for the hide tooltips and toolbar text options. + * ./plugins/mad/*: aout fifo adapts it size according to the length of the + first frame. The change is needed for MPEG1/2 layer III, because the size + of output pcm from mad_decoder is different. + * ./include/modules_inner.h, ./src/misc/configuration.c: support for config + options callbacks. + * ./configure.in: we check support for variadic macros (screw Borland!). + * ./plugins/gtk/gnome.c: new option lets you hide the text of the + GNOME interface toolbar. + * ./FAQ: small FAQ update. Please note that everyone can update this FAQ if + they want, it is not my property :-). + * ./AUTHORS: added quite a few missing names. + * ./plugins/qnx/vout_qnx.c: port of the QNX vout plugin to the vout4 API, + courtesy of Pascal Levesque . + * ./plugins/avi/avi.c: you can now use slow and fast reading. After seeking, + audio and video synchro is better. + * ./plugins/macosx/aout_macosx.c: misc sound fixes. + * ./configure.in: fixed VCD double detection. + * ./src/misc/configuration.c, ./plugins/text/logger.c: the configuration file + and the log file are opened in text mode. This mode should only have a + meaning on Win32 and isn't supposed to break any other platform. If does + give you any trouble then shout. + * ./configure.in: added a --with-a52-tree option to the configure script. + * ./plugins/spudec/spu_decoder.c: FOURCC_YUY2 subtitles support (for NVidia + overlay) courtesy of Rudolf Cornelissen . + * ./plugins/kde/*: configuration dialog for the KDE interface, courtesy + of Sigmund Augdal . + * ./plugins/chroma/i420_yuy2.h: workaround for yet another annoying gcc + behaviour with inline assembly (seems to be BeOS-specific). If anyone has + a better idea than the huge "memory" constraint, please have a look at + the MMX_CALL() macro! + * ./plugins/avi/avi.c: corrected a bug with broken avi files. + * ./src/misc/modules_plugin.h: added config_Get/PutFloatVariable to + p_sysmbols. Thanks to Sigmund Augdal for pointing this bug out. + * ./src/audio_output/aout_pcm.c: on Win32 the aout_pcm thread is given a high + priority. This avoids lots of audio underruns, especially when moving + around the video window. + * plugins/avi/avi.c : changed in order to read more avi files, Meuuh + you can now read your file ;) (but audio is awful, perhaps because of mad + plugin ?). Fix a bug for audio with some avi files. + * ./plugins/satellite/satellite.c: fixed a compilation issue in satellite + input. It now uses common or libdvbpsi ts demux. Untested cause I can't + get our Nova Card work again. + * ./src/video_output/vout_pictures.c: restored vout_CopyPicture(). It is + needed by the directx plugin damnit ;-) + * ./include/config.h: restored AOUT_BUFFER_DURATION to its old value. It + should solve quite a few underrun problems. + * ./plugins/directx/vout_directx.c: a little bit of DirectX plugin clean-up. + * ./ipkg/control: added more information in ipkg control file. + * ./include/modules_inner.h: the module name is now a default shortcut, for + it, no need to manually add it. + * ./plugins/sdl/vout_sdl.c, ./plugins/x11/xcommon.c: when in fullscreen + mode, the Esc key does not quit immediately, but first escapes from + fullscreen mode. User-requested feature. + * ./include/os_specific.h: fixed a C++ compilation issue. + * ./include/videolan/vlc.h: removed the main() declaration because SDL + defines it as a macro. + * ./plugins/avi/avi.c: with some broken avi files, will not freeze, and + try to detect end of file. + * ./include/threads_func.h: moved the function definitions from threads.h + into threads_funcs.h. This allows us to move p_main_sys into p_main + (p_main->p_sys). + * ./configure.in: fixed the --with-gtk-config-path and --with-sdl-config-path + options. + * ./plugins/avi/avi.c: seek is faster. + * ./configure.in: fixed a typo in libdvbpsi handling. + * ./plugins/vcd/cdrom_tools: FreeBSD 4.5 port of the vcd input. + * ./INSTALL.win32: updated win32 compilation instructions. + * ./plugins/mpeg_system/mpeg_ts.c: fixed --program option. + * ./include/common.h: fixed vlc_memalign. + * ./plugins/avi/avi.c: now it can play broken files with seek enabled but + it's very slow (will be fixed soon). + * ./src/misc/beos_specific.c: added system_Configure(). Sorry O:-) + * ./src/input/input_programs.c: a video divx ES will no longer be considered + as an audio ES (thanks sam). + * ./src/misc/darwin_specific.c: added system_Configure(). + * ./plugins/macosx/vout_macosx.c: cleaned up QTScaleMatrix(). + * ./plugins/macosx/*: A/V sync should be much more precise. + * ./plugins/macosx/vout_qdview.c: borders in fullscreen mode are now black + and the movie is centered. + * ./extras/MacOSX/vlc.pbproj/project.pbxproj: new creator ID: VLC#. + * ./src/misc/modules_plugin.h: exported input_ClockManageRef for fenrir. + * ./include/video.h: moved vout_CopyPicture out of the way, an inline + function did not make sense here. + * ./include/video.h: moved vout_ChromaCmp out of the way. + * ./plugins/avi/fourcc.h, ./include/video.h: merged these two files into + video.h. + * ./include/os_specific.h: this file is now always included. + * ./include/debug.h: removed this file which was almost useless, and moved + ASSERT to common.h. + * ./include/common.h: fixed vlc_memalign and changed its prototype to + follow posix_memalign's. + * ./configure.in: dropped usage of $withval and $enableval in favor of the + safer variants $with_foo and $enable_foo. + * ./plugins/avi/avi.c: will not segfault when no audio is found/supported. + * ./plugins/ffmpeg/ffmpeg.c: with empty frame(data_packet) it won't segfault. + * ./plugins/avi/avi.c: use KeyFrame to seek, so video will not be bad as + before. + * ./plugins/mpeg_system/mpeg_ts.c: moved Program Specific Information + decoder to the ts demux module. + * ./plugins/mpeg_system/Makefile: added a mpeg_ts_dvbpsi module tha uses + libdvbpsi to decode PSIs. It is used by default if the lib is found. It + shares much code with mpeg_ts. + * ./plugins/directx/vout_events.c: fixed typo. You have to double click on + the video window to switch to fullscreen. + * ./src/misc/configuration.c: on Win32 the config file is now stored under + the "Application Data" folder belonging to the user. (this works if at + least IE4 is installed, otherwise the old method is used to get the + config directory) + * ./configure.in: fixed MacOS X module linking problem. + * ./src/interface/main.c: we no longer segfault if argc == 0. + * ALL: renamed PLUGINS to __PLUGINS__ to avoid conflicts with libraries + defining it. Grmbl. + * ./src/input/input_ext-plugins.c: cosmetic change. + * ./plugins/ac3_adec/*: use of _M to avoid conflict with libavcodec.a. + * ./plugins/avi/*: a light AVI demux. + * ./plugins/ffmpeg/*: a video decoder for divx v3 and opendivx. + * ./plugins/win32/preferences.cpp: fixed a compilation bug + * ./plugins/avi, ./plugins/ffmpeg: created empty directories for fenrir's + upcoming work. + * ./plugins/spudec/spu_decoder.c: fixed the spu decoder to take the pitch + of the destination picture into account when rendering the subtitles + (Implemented only for the YUV modes). + * ./plugins/directx/vout_events.c: fixed the mouse autohidding feature in + the DirectX plugin (at least partially). + * ./plugins/directx/vout_directx.c: fixed the DirectX video output for + non-overlay modes. It was only working in RGB16 before. + * ./plugins/directx/vout_directx.c: DirectX video output plugin now uses + triple buffering for YUV overlay. This improves the video quality a lot + (no tearing) without affecting performance. (I knew double buffering + sucked but I just discovered why triple buffering is better: you don't + have to wait for the vsync to flip the buffers). + * ./plugins/spudec/spu_decoder.c, ./plugins/dvd/dvd_es.c: temporary fix + to avoid retrieving the spu palette from a network stream as if it was + a DVD. + * ./src/interface/main.c: tidied the help output code. + * ALL: removed underscores from option names and made a few options more + self-explanatory, for instance --input_channel becomes --audio-channel; + run vlc -H to see what has changed. + * ALL: replaced many occurences of "plugin" with the word "module". + * ./src/interface/main.c: moved all satellite-specific configuration options + to the satellite plugin. + * ./po/*: updated translations. + * ./plugins/chroma/i420_yuy2.h: optimized the 420 planar-to-packed chroma + transformations. They're now PIC-friendly as well. + * ./plugins/macosx/intf_open.c: added Open disc and network panels. + * ./plugins/macosx/intf_controller.c: some changes to the control layout. + * ./src/interface/main.c: i_warning_level is set to 0 to avoid unwanted + verbose messages. + * ./po/en_GB.po: British translation. + * ./src/interface/main.c, ./src/misc/configuration.c: fixed the warning_level + handling: "-v" and "--warning" are now working as they should and they also + are cumulative (using -vv --warning=3 you end up with i_warning_level=5). + * ./src/misc/configuration.c: support for short options. -V, -A, -I + are back, and we also have -4 and -6 for IPv4/IPv6. + * ./src/misc/configuration.c: added config_GetFloatVariable() and + config_PutFloatVariable() to the config module. + * ./src/video_output/video_output.c: added a --zoom config option. + * ./plugins/idct/idct_sparse.c: added a call to RestoreCPUState() in + InitIDCT() so that the FPU is still available after a call to InitIDCT(). + * ./plugins/text/logger.c: deactivated stream buffering when logging to a + file. + * ./po/*: re-ran make update-po, fixed a few translations. + * ./po/fr.po: completed the french translation. + * ./plugins/gtk/gtk.glade, ./plugins/gtk/gnome.glade: synchronized a few + strings between the Gtk+ and GNOME modules to avoid duplicate translations. + * ./po/de.po: updated german translation. Many thanks to Thomas Graf. + * ./doc/vlc-howto.sgml: URL & mailing-lists corrections. + * ./plugins/gtk/gtk_preferences.c: the last category from the config options + wasn't displayed. + * po/nl.po: updated Netherlands translation of interface. + * po/fr.po: completed french translations. + * ALL: internationalized all configuration strings. + * ./src/interface/main.c: we now set LC_CTYPE to get the right charset. + * ./src/misc/configuration.c: lots of simplifications in the code. + * ./po/vlc/pot: updated translations. + +0.3.1 +Thu, 18 Apr 2002 06:43:42 +0200 + * ./vlc.spec: fixed build dependencies. + * ./configure.in: when -lintl is available, we now also link plugins with it. + * ./include/threads.h: fixed a segfault under Solaris, thanks to Meuuh. + * ./plugins/spudec/spu_decoder.c: RGB 24bpp and 32bpp support. + * ./configure.in: switched version to 0.3.1. + * ./vlc.spec: imported Mandrakesoft's latest enhancements. + * ./configure.in, ./plugins/network/ipv6.c: support for the GNU glibc + extension gethostbyname2(), thanks to Thomas Graf. + * ./plugins/macosx/vout_macosx.c: finally fixed MacOS X aspect ratio. If you + know how to center the picture in the screen, and make the remaining space + black instead of white, PLEASE drop me a mail! + * ./src/input/mpeg_system.c: in TS demux, a program is selected only if a + PMT for it was found. This should fix the problem that occured when reading + a file directly extracted from a satellite card. + * ./plugins/access/udp.c: UDP access plugin uses input_SetProgram. + * ./AUTHORS: added people locations, just for fun. + * ./configure.in: disabled SSE plugins when using mingw32. + * ./src/misc/configuration.c: disabled the AltiVec warning message on the + PowerPC platform because it was misleading. + * ./plugins/dvdread/dvdread.c: have dvdread plug-in respond to dvd: URLs. + * ./plugins/macosx/intf_macosx.c: MacOS X interface shouldn't take as much + CPU as it used to. + * ./plugins/motion/motionaltivec.c: fixed a bug in AltiVec-enabled MC (thanks + walken). + * ./plugins/memcpy/memcpyaltivec.c: fixed a case of segfault in AltiVec- + enabled memcpy. + * ./doc/vlc-howto.sgml: big update of Henri's howto. + * ./plugins/mpeg_vdec/*: support for pictures with a pitch different from + the picture width, inspired by Gildas Bazin. + * ./plugins/satellite/input_satellite.c: fixed a typo in satellite input. + * ./src/interface/main.c: added options to configure antenna (sat_lnb_lof1, + sat_lnb_lof2, sat_lnb_slof and sat_diseqc). They only appear if satellite + input is compiled. + * ./plugins/satellite/input_satellite.c: fixed a few bugs in satellite + input (device was not closed in every failure case, symbol rate limits + in gnome interface were wrong). + * ./plugins/gtk/*: added FEC choice in command line, gtk and gnome + interfaces. Command line is now satellite:, + ,, + * ./plugins/beos/vout_beos.cpp: implemented a fix for nVidia overlays + thanks to Bertil. + * ./Makefile: fixed the Win32 interface under Win2k/XP. + * ./src/misc/modules_plugins.h: implemented a dlerror()-like wrapper + for the Win32 API. + * ./plugins/mpeg_system/mpeg_ps.c: fixed another bug in PS demux: the first + program added was at the same time declared as the current program and as + a new program, which made the ES be selected two times. + * ./src/input/input_programs.c: fixed a bug in input_SetProgram, that made + the ps file input launch without video. + * ./plugins/beos/vout_beos.cpp: fixed code to close vout window, does not + segfault anymore. + * ./po/fr.po: french translation update * ./configure.in: fixed a bug in the libdvdread detection. * ./configure.in: fixed plugin compilation under Win32. * ./vlc.spec: imported MandrakeSoft's enhancements. * ./doc/developer/decoders.xml: fixed a typo preventing compilation. * ./plugins/aa/aa.c: we now parse the AAOPTS environment variable. * ./plugins/aa/aa.c: a few simplifications in the code. + * ./src/input/input.c: made file access plugin use input_SetProgram so that + we may change program when reading a file. + * ./src/input/input_programs.c: fixed a bug in input_SetProgram. + * ./src/interface/main.c: added --input_program option, to choose the + program from the command line. + * ./plugins/memcpy/memcpyaltivec.c: fixed AltiVec-enabled version of + fastmemcpy. + * ./src/interface/main.c: fixed --memcpy switch. + * ./Makefile: changed CFLAGS_VLC to vlc_CFLAGS (last-minute changes are + great ideas :p) + * ./README - Mac OS X.rtf: new README file for MacOS X. + * ./Makefile: fixed the Win32 interface under Win2k/XP. + * ./src/misc/modules_plugins.h: implemented a dlerror()-like wrapper + for the Win32 API. * ./configure.in: wrote a better test for libdvdread detection. * ./plugins/gtk/gtk.glade: added lines this #@%$! Glade had munched, fixes a segfault in the Gtk+ popup menu when toggling the interface.