]> git.sesse.net Git - vlc/blob - NEWS
Synchronize with 0.9-bugfix
[vlc] / NEWS
1 Changes between 0.9.3 and 1.0.0-git:
2 ------------------------------------
3
4 Inputs:
5  * Mouse cursor support in x11 and win32 screen modules
6  * Screen module now supports partial screen capture and mouse following on
7    windows.
8
9 Decoders:
10  * AES3 (SMPTE 302M) support
11  * E-AC3 (A/52b) support
12
13 Stream output:
14  * Restored the old mpeg2 transrating module.
15  * Multiple bridge-in instances are now possible.
16  * bridge-in can be used to configure a placeholder stream.
17
18
19 Changes between 0.9.2 and 0.9.3:
20 --------------------------------
21
22 Various bugfixes:
23  * Fixed DTS channel order on 5.1 systems
24  * Fixed pausing behavior for subtitles and for Audio-CD
25  * Multiple subtitles and podcast fixes
26  * Various crashes fixed in PS, SSA, mkv, xspf, freetype
27  * Fixed update system bugs
28  * Other bug fixes (dvd language selection, subtitle colours, HTTP keep-alive...+)
29
30 Mac OS X port:
31  * Fixed ffmpeg slowness on PowerPC-based Macs
32  * Fixed crash on startup when installed on old preferences
33  * Fixed bug in directory opening on Mac OS X
34  * Fixed font selection in the Simple Preferences
35  * Thicker border to the subtitle renderer
36  * Fixed the appearance of playlist items in the Streaming/Transcoding Wizard
37  * Fixed AC3 passthrough on Mac OS X
38  * Fixed behavior of the Volume Normalizer settings on Mac OS X
39  * Removed the deprecated QuickDraw video output module to avoid crashes on
40    modern Mac OS X versions
41
42 Windows port:
43  * Fixed sensitivity of Fullscreen Controller
44  * Fixed error messages on startup when VLC wasn't correctly uninstalled
45    before installation
46  * Fix showing of controller when returning from fullscreen playback
47  * Multiple directory and path location fixes.
48
49 Qt4 interface:
50  * Added Faster/Slower icons to the controller panel
51  * Fixed lost playlist columns when switching the playlist view
52  * Added needed options to Simple preferences (to avoid NVIDIA drivers issues)
53  * Fullscreen controller: added time label, remembering of last position
54  * Fixed drag'n drop behaviour on the playlist
55  * Multiple other fixes (Enter hotkey in preferences, Skins selection...)
56
57
58 Changes between 0.9.1 and 0.9.2:
59 --------------------------------
60
61  * Restored the old behavior of --sout-keep. It is now de-activated by default.
62  * Skins2 interface repaired on Windows.
63  * Multiple bugfixes.
64
65
66 Changes between 0.9.1 and 0.9.0:
67 --------------------------------
68
69  * Multiple bug fixes.
70
71
72 Changes between 0.8.6i and 0.9.0:
73 ---------------------------------
74
75 Important notes:
76 ----------------
77  * This release will need Windows 2000 and Mac OS X 10.4 (Tiger), or more
78    recent to work correctly
79  * The HTTP interface is now only available on the local machine by default.
80    If you want to make it available from other machines, you will have to
81    edit the ".hosts" file.
82    - On UNIX/Linux, the file is in /usr/share/vlc/http/.hosts
83      If you're using the old http interface, it's located in
84      /usr/share/vlc/http/old/.hosts
85    - On Windows they are in C:\Program Files\VideoLAN\VLC\http\.hosts and
86      C:\Program Files\VideoLAN\VLC\http\old\.hosts
87    - On Mac OS X, you can find it in VLC.app/Contents/MacOS/share/http/.hosts
88      and respectively in VLC.app/Contents/MacOS/share/http/old/.hosts
89  * This version of VLC contains a new interface for Windows and Linux.
90    This interface has a fullscreen controller and simplified preferences.
91    This interface lacks the "Streaming Wizard" that used to be present in VLC
92    0.8.6, but provides basic profiles.
93  * The behavior of --sout-keep was changed. It's now activated by default.
94  * The marq, mosaic and logo commands in the rc interface changed. They
95    now require a target name as their first argument. Example:
96    vlc --sub-filter "marq@test{marquee=Hello}" -I rc <somevideo>
97    You can then use commands like: @test marq-marquee Goodbye
98    If you didn't name the object using @test, its name will default to the
99    plugin name (hence 'marq') in this example.
100    These new commands are also available in the telnet interface.
101  * The "rtp" access output module has been removed.
102    Please use the RTP stream output instead, e.g.:
103      Old: '#std{access=rtp,mux=ts,dst=239.255.1.2:5004,sap}'
104      New: '#rtp{mux=ts,dst=239.255.1.2,port=5004,sap}'
105  * You now need to append --m3u-extvlcopt to your command line to enable
106    EXTVLCOPT options parsing in m3u playlists. Note that only a limited set
107    of options is available to m3u playlists (CVE-2007-6683).
108  * The old access:url syntax is no longer supported to resolve ambiguities
109    with some file names. Use access://url instead.
110     E.g.:  vlc:quit -> vlc://quit ;
111            udp:@239.255.12.12 -> udp://@239.255.12.12
112  * The ffmpeg module has been removed and replaced by the new avcodec,
113    avformat, swscale (or imgresample if you use a swscale-less ffmpeg build)
114    and postproc modules.
115  * The web plugins ActiveX (IE)/Firefox/Mozilla/Safari now recognize the
116    following states: IDLE/CLOSE=0, OPENING=1, BUFFERING=2, PLAYING=3, PAUSED=4,
117    STOPPING=5, FORWARD=6, BACKWARD=7, ENDED=8, ERROR=9. With FORWARD and
118    BACKWARD being reserved for future implementations and are thus not
119    functional atm.
120  * Croping and padding in transcode are now done using the croppadd video
121    filter. For example:
122    transcode{vcodec=mp2v,vfilter=croppadd{cropttop=20,cropbottom=30,paddleft=100}}
123  * Canvas setting in transcode is now done using the canvas video filter.
124    For example:
125    transcode{vcodec=mp2v,vfilter=canvas{width=640,height=480}}
126  * Glide video output module has been removed.
127
128 Changes:
129 --------
130
131 Security updates:
132  * Updated libfreetype on Windows and Mac OS X (CVE-2008-1806, CVE-2008-1806,
133    CVE-2008-1807)
134  * TTA Parser improvements (CVE-2008-3732)
135  * MMS Access Module improvements (CVE-2008-3794 )
136
137 Playlist:
138  * Vastly improved playlist support:
139     * Media library creation to save all your playlist items
140     * "Live search"
141     * Shoutcast TV listings
142     * Audioscrobbler/Last.FM support
143  * Album art support
144  * User definable Lua playlist scripts. See share/lua/playlist/README.txt
145    (Default scripts open YouTube, DailyMotion, metacafe, Google Video and
146    lots of other URLs)
147  * User definable Lua album art fetcher scripts. See share/lua/meta/README.txt
148
149 Inputs:
150  * Video for Linux 2 (V4L2) input support
151  * UDP-Lite transport for RTP/AVP
152  * DCCP transport for RTP/AVP
153  * Proxy support for MMSH stream
154  * JACK audio input support
155  * Input run time option (improved live stream recording)
156  * BDA devices access module for DVB-C/S/T capture cards on Microsoft Windows
157  * Re-written Screen access module for Mac OS X 
158    using OpenGL instead of QuickDraw
159  * Screen module now supports partial screen capture and mouse following on X11.
160  * Experimental EyeTV access module
161    This requires the user to install a plugin to EyeTV.app
162    (available as a separate download).
163  * Simple RTP input (with MPEG A/V, G.711 and PCM support).
164  * RTMP input support
165  * QTKit-based Input module for Mac OS X allowing display and streaming of video
166    taken from all iSight-labelled video cameras (no audio support)
167  * HTTP access now supports gzip compressed data and Digest Access
168    Authentication.
169  * New options to reduce latency between arrival of raw data and display of
170    frames. (--auto-adjust-pts-delay and --use-stream-immediate)
171
172 Demuxers:
173  * MP4 gpac and Apple chapter support
174  * Fixed playback of AIFF stereo files
175  * Fixed audio glitch on seek
176  * Improved FLAC demuxer (duration / current time / meta data)
177  * AAC tags support
178  * APEv1/2 tags support
179  * Improved ID3v2 tags support
180  * Improved Ogg/Vorbis tags support
181  * Raw video support
182  * Standard MIDI File (types 0 & 1) support
183  * TiVo Series 2 support
184  * CD+G karaoke Files support
185  * MXF files support
186  * OMA support
187
188 Decoders:
189  * VP60/VP61/VP6F/VP62 support
190  * Flash Screen Video support
191  * CamStudio Screen Video support
192  * DosBox Capture support
193  * Karl Morton's Video support
194  * limited atrac3 support
195  * Fraps support
196  * Fluidsynth MIDI software synthesis (with external sound fonts)
197  * New codec FOURCCs to support more specific files:
198    Avid, FCP, Sony, Samsung, ...
199  * H.264 PAFF support
200  * DNxHD / VC-3 support
201  * NellyMoser ASAO support
202  * APE (Monkey audio) support
203  * RealVideo support (with the RealVideo run-time)
204  * Dirac video support using libschroedinger
205
206 Subtitles:
207  * Closed Caption Decoder (DVD, ReplayTV, TiVo, DVB/ATSC)
208  * VBI & EBU (Teletext) support (*nix, Mac OS)
209  * Ogg/Kate subtitles support
210  * AQTitle subtitles support
211  * MKV USF subtitles support
212  * HTML-based subtitles support
213  * MPSub subtitles support
214  * JacoSub subtitles basic support
215  * MPL2 subtitles support
216  * Rewrite of ASS/SSA scripts and subtitles support
217  * PowerDivx (.psb) Subtitles support
218  * Realtext subtitle support
219  * DKS subtitle support
220  * SubViewer 1.0 (SubRip09) subtitles support
221  * Correct Right-to-left languages in subtitles support
222
223 Encoders:
224  * Flash Screen Video support
225  * Improved H.264 encoding speed
226
227 Video outputs and filters:
228  * New CoreAnimation-based output module (VLCKit framework on OS X only)
229  * Adjust, Invert and Distort (now split into Wave, Ripple, Gradient and
230    Psychedelic) video filters can now be streamed
231  * New puzzle video output filter
232  * Re-written motion detection video filter
233  * New extract video filter (extract Red, Green and Blue components from a
234    video)
235  * New sharpen video filter (increase the contrast of adjacent pixels)
236  * New erase video filter (removes logos from a video)
237  * Enhanced subtitles' renderer to support bold, italic and some HTML tags
238    (Google Summer of Code Student project)
239  * Support for RGBA and I420 blending.
240    The latter improves Mosaic CPU usage *a lot*.
241  * New transparency mask video filter (for use with the mosaic_bridge module).
242  * New bluescreen video filter (for use with the mosaic_bridge module). 
243    This was previously part of the mosaic module.
244  * Fixed random characters problem in RSS filter.
245  * Add rotate-deciangle for more precision on rotate filter
246  * Support for Intel SSE2 instruction set in chroma converters
247  * Improved use of Intel MMX instruction set in chroma converters
248  * New croppadd and canvas video filters.
249
250 Audio outputs and filters:
251  * Replay gain support
252  * Audio playback when going slower/faster (with pitch correction via
253    new scaletempo audio filter)
254  * New spatializer audio filter
255  * Correct DTS output via S/PDIF
256
257 Stream output:
258  * RTSP for TS-multiplexed broadcast streams
259  * New RTP payload formats:
260    * Speex voice audio codec
261    * ITU T.140 (for text, subtitles) output
262    * G.711 (both A-law and ยต-law) output
263  * UDP-Lite transport for RTP
264  * DCCP transport for RTP
265  * Lots of fixes for RTSP broadcasting
266  * RTMP output
267
268 Interfaces:
269  * All
270    * New Simple Preferences dialogs showing the most important settings in an
271      end-user suitable way.
272    * Improved user interaction
273    * Improved mouse gestures
274    * Vastly improved Update checker
275    * Full support for meta data editing (ID3v2, Ogg/Vorbis, AAC, APEv1/2)
276  * Windows/Linux
277    * Brand new interface for Linux and Windows, based on the Qt toolkit
278    * Fullscreen controller (transparency on Linux+Composite)
279  * Mac OS X
280    * Improved video output features
281    * Online access to VideoLAN's Help Wiki within VLC
282    * New setting to disable the "Recent Items" service
283    * When playing Radio (live) streams, the current track is shown correctly
284    * Correct appearance on Macs using Aqua's graphite theme
285    * Simplified Extended Controls panel
286  * Ncurses:
287    * Correctly displays wide characters when using an UTF-8 locale, 
288      if libncursesw is available.
289    * Some nice colors if the terminal supports it (most do)
290  * Experimental Lua interface modules. See vlc -I lua and
291    share/lua/playlist/README.txt for more info.
292  * Unix
293    * Option to allow only one running instance, using D-Bus interface.
294    * D-Bus Interface implementing the MPRIS 
295      (Media Player Remote Interfacing specification), a common dbus control 
296      interface for media players that intends to become an xdg standard when 
297      finished: http://wiki.xmms2.xmms.se/index.php/Media_Player_Interfaces .
298    * Motion module using disk accelerometers to keep video horizontal
299    * Plugin to set Telepathy presence message using MissionControl
300  * Fixed VLM schedule time on Linux
301
302 Linux Port:
303  * VLC now complies with the XDG Base Directory Specification version 0.6
304    http://standards.freedesktop.org/basedir-spec/basedir-spec-0.6.html
305    (which means that VLC doesn't use the $HOME/.vlc directory anymore)
306
307 Mac OS X Port:
308  * Mac OS X Framework "VLCKit" that can be used to embed VLC in third party
309    applications (Google Summer of Code Student project, Mac OS X 10.5 only)
310  * New text renderer based on Quartz replacing the existing Freetype solution
311  * Complete compatibility with Mac OS X 10.5 Leopard
312    * It is now required to compile a fully featured build
313  * The support of Mac OS X 10.3.9 and QuickTime 6.x was discontinued.
314
315 LibVLC:
316  * Event management and various improvements in libvlc
317    (Part of a Google Summer of Code Student project)
318
319 New Localizations:
320  * Finnish
321  * Persian
322  * Polish
323  * Punjabi
324  * Bulgarian
325
326 Developers:
327   * LibVLC now supports externally built plugins properly.
328     A "vlc-plugin" pkg-config package is provided.
329   * Java bindings are now built from a separate source.
330
331
332 Changes between 0.8.6h and 0.8.6i:
333 ----------------------------------
334
335 Security updates:
336  * Fixed integer overflow in WAV demuxer (CVE-2008-2430)
337
338 Various bugfixes:
339  * Fixed option to use shared memory within the GLX video output module
340  * Improved galaktos-based audio visualizations on FreeBSD 
341  * Miscellaneous bugfixes in multiple modules and in libvlc
342    (transcode stream output, OSD menu video filter, VCD input, 
343     SAP services discovery, http control interface)
344  * Updated Polish translation
345
346
347 Changes between 0.8.6g and 0.8.6h:
348 ----------------------------------
349
350 Security updates:
351  * Updated GnuTLS and libgcrypt on Windows and Mac OS X (CVE-2008-1948, 
352    CVE-2008-1949, CVE-2008-1950)
353  * Updated libxml2 on Windows and Mac OS X (CVE-2007-6284)
354
355 Goodies:
356  * Updated libebml and libmatroska on Mac OS X. Reliability improvements.
357  * Miscellaneous bugfixes in multiple modules and in libvlc
358    (ftp access, record access filter, video filters, RC interface, 
359     playlist demuxer, IP networking, MPJPEG muxer, stream outputs)
360  * Improved support for MPEG2 content created by Final Cut Pro
361  * More reliable audio reception for MPEG TS streams
362  * Fixed a regression in 0.8.6g where usage of the snapshot feature could lead
363    to an unexpected application termination
364  * New Serbian translation
365  * Updated Romanian translation
366
367
368 Changes between 0.8.6f and 0.8.6g:
369 ----------------------------------
370
371 Security updates:
372  * Removed VLC variable settings from Mozilla and ActiveX 
373    (CVE-2007-6683, VideoLAN-SA-0804)
374  * Removed loading plugins from the current directory 
375    (CVE-2008-2147, VideoLAN-SA-0805)
376  * Updated libpng on Windows and Mac OS X (CVE-2008-1382)
377  * Fixed libid3tag denial of service (CVE-2008-2109)
378  * Fixed libvorbis vulnerabilities (CVE-2008-1419, CVE-2008-1420, CVE-2008-1423)
379  * Fixed speex insufficient boundary check (CVE-2008-1686, oCERT-2008-004)
380
381 Various bugfixes:
382  * Fixed various memory leaks, improving stability when running as a server
383  * Fixed compilation with recent versions of FFmpeg
384  * Correctly parses SAP announcements from MPEG-TS
385  * Fixed AAC resampling
386  * The Fullscreen Controller appears correctly on Mac OS X, 
387    if the 'Always-on-top' video option was selected.
388
389
390 Changes between 0.8.6e and 0.8.6f:
391 ----------------------------------
392
393 Security updates:
394  * Really fixed subtitle buffer overflow (CVE-2007-6681, CVE-2008-1881)
395  * Fixed Real RTSP code execution problem (CVE-2008-0073)
396  * Fixed MP4 integer overflows (CVE-2008-1489, CVE-2008-1768)
397  * Fixed cinepak vulnerabilities (CVE-2008-1769)
398  - More information can be found in VideoLAN-SA-0801 and VideoLAN-SA-0803.
399
400 Various bugfixes:
401  * The Mozilla plugin registers a usable range of MIME-types on Mac OS X
402  * Improved VLC's video output behavior on multi-screen setups running Mac OS X
403  * Fixed crashes in H264 packetizer
404  * Close MMS access on network timeout
405  * Fix some problems with AAC decoder & packetizer
406
407
408 Changes between 0.8.6d and 0.8.6e:
409 ----------------------------------
410
411 Various bugfixes:
412  * Resume playback for viewing content over FTP
413  * Fixed XShm detection with remote X11
414
415 Security updates:
416  * Subtitle demuxers overflow (CVE-2007-6681)
417  * HTTP listener format string injection (CVE-2007-6682)
418  * Fixed buffer overflow in the SDL_image library (CVE-2006-4484)
419  * Real RTSP overflows (CVE-2008-0225, CVE-2008-0295, CVE-2008-0296,
420    VideoLAN-SA-0801)
421  * Arbitrary memory overwrite in the MP4 demuxer (CORE-2008-0130, 
422    VideoLAN-SA-0802)
423
424 Audio filter:
425  * Fixed DTS to S/PDIF converter
426
427 Audio output:
428  * Fixed 5.1 audio on ALSA
429
430 Access:
431  * Fixed some RTSP hanging and user/password passing through RTSP URLs
432
433 Stream output:
434  * Fixed waiting for SPS/PPS problem in H.264 packetizer
435
436 Encoders:
437  * Improved compatibility for creating H.264 video files playable on iPhones
438  * Improved detection of optimal amount of threads for multi-threaded H.264 
439    encoding on multi-cpu systems
440     - Note that this is used when transcode threads is set to 0 (default)
441     - Not supported on Windows (multiple threads require manual configuration)
442
443 Mac OS X Interface & Port:
444  * Restored compatibility with Mac OS X 10.3.9
445  * Corrected behavior of the Preferences panel
446  * VLC no longer crashes on quit while playing
447
448 Localization:
449  * Updated Romanian and Polish translations
450
451
452 Changes between 0.8.6c and 0.8.6d:
453 ----------------------------------
454
455 Various bugfixes:
456  * Mozilla plugin: supports a reasonable amount of MIME types on Windows
457  * Linux: Fixed S/PDIF passthrough with ALSA
458  * Automatic recovery on unexpected stream discontinuity (clock gap) occurrences
459    in input
460  * Use field order (top/bottom) for correct bob/linear deinterlacing
461  * Fix invalid free in bookmarks loading code
462
463 Windows and Mac OS Binaries
464  * FLAC Security Update (CVE-2007-4619) to prevent multiple integer overflows 
465
466 Active X plugin:
467  * Security update (VideoLAN-SA-0703, CVE-2007-6262)
468  
469 Mac OS X Interface & Port:
470  * Apple Remote support on Mac OS X 10.5 Leopard with enhanced functionality
471  * Improved Video Output compatibility for Mac OS X 10.5 Leopard
472  * Improved behavior of the Fullscreen Controller and mode changes between 
473    Fullscreen and Windowed Video Output
474  * Softened the white flash artifacts that may appear during the transition of 
475    two different movies
476  * Support for current Ogg file formats
477  NOTE: This release requires Mac OS X 10.4 or higher. 
478        Mac OS X 10.3.9 is not supported anymore.
479
480 Encoders:
481  * Improved H.264 encoding speed on Mac OS X
482
483 Other changes:
484  * The automatic updating facility was removed
485  * You now need to append --m3u-extvlcopt to your command line to enable
486    EXTVLCOPT options parsing in m3u playlists.
487  * RTSP server remote denial of service fixed (CVE-2007-6684).
488
489
490 Changes between 0.8.6b and 0.8.6c:
491 ----------------------------------
492
493 Various bugfixes, notably:
494  * Windows Vista compatibility
495  * Cropping in Direct3D
496  * Fullscreen change crash on Mac OS X
497  * RSS filter string overflow
498  * Few memory leaks
499  * MKV demuxer crash (related to seeking)
500
501 CDDA / Vorbis / Theora / SAP plugins:
502  * Security updates (VideoLAN-SA-0702, CVE-2007-3316, US-CERT VU#200928)
503
504 Demuxers:
505  * Fixed a problem with detecting embedded subtitles (GAB2 format) in AVI
506  * Prevent WAV file integer overflow (CVE-2007-3467 & CVE-2007-3468)
507
508 Decoders:
509  * Updated FLAC API compatibility
510
511 Input:
512  * Support for new v4l2 encoder API
513
514 Localisation:
515  * New localisation: Arabic, Persian
516
517
518 Changes between 0.8.6a and 0.8.6b:
519 ----------------------------------
520
521 Various bugfixes, notably:
522  * Out-of-bound read in demuxers
523  * Demuxers crashes (incl. CVE-2007-0256)
524  * Mac OS X Interface crashes
525  * VP31 decoding on Windows platforms
526  * Direct3D Video Output modifications for Vista compatibility
527  * Correct behaviour for feeding streams to Icecast or Shoutcast servers
528
529 Decoders:
530  * Enhanced Flash Video support incl. VP61 and VP60
531  * Teletext subtitles (telx) support
532
533 Webbrowser plugins:
534  * Rectified behaviour and improved usability
535
536 Mac OS X Interface & Port:
537  * Diverse usability improvements
538  * New wizard option to embed subtitles
539  * Screensaver/automatic sleep mode is enabled when a video is paused
540  * Improved Delete-Preferences-Script
541
542
543 Changes between 0.8.6 and 0.8.6a:
544 ---------------------------------
545
546 CDDA / VCDX plugins:
547  * Security updates (VideoLAN-SA-0701, CVE-2007-0017)
548
549 Mac OS X Interface:
550  * Fullscreen controller improvements
551
552
553 Changes between 0.8.5 and 0.8.6:
554 --------------------------------
555
556 Playlist:
557  * Shoutcast TV listings support
558
559 Input:
560  * Support for RTSP authentication
561  * Support for adding subtitles on the fly
562  * Fixed MPEG-PS duration calculation
563  * ATSC support for DVB input
564  * Partial reading support for DVR-ms recordings
565  * Partial reading support for MXF and GXF fileformat
566  * Improved support for Flash Video files
567
568 Decoders:
569  * Native WMV9/VC-1 support
570  * WMA Speech support (through binary codecs)
571  * VP5/VP6 - Flash Video support (not VP61)
572  * The True Audio Lossless codec support
573  * Matroska WavPack support
574  * Improved H.264 support (interlaced, speed improvements etc but no PAFF)
575  * Fixed a problem with MPEG2 field pictures
576  * Fixed swapped colors on DVB subtitles
577  
578 Video output:
579  * Additional OpenGL effects (cylinder, torus, sphere, ...)
580  * Experimental Direct3D 9 video output (win32). Best served on Vista :)
581  * Improved libcaca support
582
583 Interfaces:
584  * All
585    * New hotkeys for crop and zoom
586    * Support for snapshots from the HTTP interface
587  * Windows
588    * Systray support in skins
589  * OS X
590    * Support for Apple Remote control
591    * Fullscreen controller panel (artwork by Simon Damkjรฆr Andersen)
592    * New playmode buttons (artwork by Simon Damkjรฆr Andersen)
593    * right/ctrl-click menu in video outputs
594    * Main Menu uses autohide when playing videos in fullscreen mode
595  * Linux
596    * Notifications using notification-daemon
597
598 Windows port:
599  * Support for Unicode filenames (Windows NT and above)
600    Windows 9x/ME users: 
601      - Please note that these versions of Windows are not officially supported
602      - Unicode support for Windows 9x/ME applications is available through the
603        Microsoft Layer for Unicode available from the following location:
604        http://www.microsoft.com.nsatc.net/globaldev/handson/dev/mslu_announce.mspx
605        Download the MSLU package (unicows) and extract the content into the folder
606        C:\Windows\System
607  * Fixed IPv6 support on the client side
608  * Fixed disable screensaver (Direct3D and DirectX video output)
609
610 Localization:
611  * Add Czech
612  * Add Slovak
613  * Add Malay
614  * Add Slovenian
615
616 Developers:
617  * Updates to the libvlc API
618  * Fixes for the mozilla and activeX plugins
619
620
621 Changes between 0.8.4a and 0.8.5
622 --------------------------------
623
624 Core support:
625  * Statistics collection (bitrates, packets, connections, ...)
626  * Support for downloading updates
627  * Updated strings
628
629 Input:
630  * Initial support for RTSP-over-HTTP (to allow NAT traversal)
631  * Linux DV (Digital Video - Firewire) input
632  * Improvements to the Audio CD input
633      - Separate playlist entries for the tracks 
634      - Support for CDDB 
635  * Support for more DVB (satellite) encryption modules
636  * Improved subtitles encoding support
637  * Improved support for playing MP4 files from the Web
638
639 Decoders:
640  * Cook (Real audio) support
641
642 Playlist / Services discovery:
643  * XSPF playlist support
644  * Podcast support
645  * Updated Shoutcast to use new listing
646
647 Audio output:
648  * New JACK audio output
649
650 Video output:
651  * New video filters: 
652     - magnify: allows you to zoom on part of the image
653     - gradient and edge detection: "cartoon-like" effect
654     - bluescreen: overlay parts of a video transparently on another one
655  * Logo video filter: can now loop through multiple images
656  * RSS video filter: display feed images. Support for Atom feeds.
657  * Improvements to the subtitles rendering
658
659 Stream output:
660  * Initial support for throttling users on VOD streams
661
662 Interfaces:
663  * System to inform the user and request information 
664     - HTTP authentication
665     - Fatal errors
666     - ...
667  * wxWidgets
668     - VLM (VideoLAN Media Manager) control panel
669     - Improved media information panel (shows statistics, metadata, ...)
670     - Drag & Drop support in the playlist
671  * Skins2 
672     - New default skin
673     - Support for Winamp 2 skins
674     - Improved playlist handling
675     - Support for popup menus, animated bitmaps, equalizer, ...
676  * OS X
677     - Embedded Video output
678     - new Go-To-Specific-Time feature
679     - Video cropping and aspect ratio changing while playing
680     - Improved media information panel (shows statistics, metadata, ...)
681     - support for processing multiple items with the wizard in a single run
682     - option to save selections in the wizard for a session (default enabled)
683  * HTTP
684     - New default interface pages for VLC and VLM (including a mosaic wizard)
685     - A bunch of new RPN functions
686
687 Windows Port:
688  * MSN messenger "Now playing" support
689
690 OS X Port:
691  * Mac-Intel compatibility
692  * Enhanced support of various audio output devices 
693  * Growl "Now playing" support
694
695 *Nix port:
696  * Ability to log to syslog
697  * Root wrapper to avoid running VLC as root
698
699 Developers:
700  * New libvlc API (not finished yet)
701  * Java bindings
702  * A bit more automatic testing
703
704
705 Changes between 0.8.4 and 0.8.4a:
706 ---------------------------------
707
708 Audio output:
709  * Fix a52 over spdif in alsa
710  * SPDIF output available again in the Mac OS X Audio menu.
711
712 Decoder:
713  * Add support for new BMP and Cook (RealAudio G2) decoders in ffmpeg
714  * Add support for some non-standard FOURCCs used for H.264/H.263
715
716 Demux:
717  * Fix bug with some HE-AAC audio tracks
718
719 Services Discovery:
720  * HAL fixes, should now work with new API
721  * SAP, fix 20 second freeze on windows
722  * UPnP fixes
723  * Avahi 0.6 support
724  
725 Interfaces:
726  * Mac OS X
727     - fixed encoding of H.264/H.263 content when using the wizard 
728
729
730 Changes between 0.8.2 and 0.8.4:
731 --------------------------------
732
733 Core support:
734  * Internal strings handling is now UTF-8 based
735  * New OSD system
736
737 Video output:
738  * Fixed problems with OpenGL output
739  * New --monitor-par (pixel aspect ratio) option
740  * Fixed display problems with HDTV-1080 format
741
742 Input:
743  * Improved DVB support for satellite bands other than Ku-band
744  * IPv6 and Extended passive mode support for FTP
745  * IPv6 Source Specific Multicast support
746  * GnomeVFS input module
747  * Support for RTP packet reordering
748  * Fixed syntax for FTP URLs
749
750 Decoders:
751  * Support for libSDL_image to import different image types
752  * Musepack decoder using libmpdec
753  * QDM2 audio support (needs ffmpeg from 19th Oct 2005 or later)
754
755 Services discovery:
756  * UPnP service discovery (Linux only at the moment)
757  * Bonjour service discovery using avahi (Linux only)
758
759 Video filters:
760  * RSS feed overlay
761
762 Audio filters:
763 * Fixes, enhancements and new options related to the Headphone Channel
764   Mixer and Dolby Surround
765
766 Stream output:
767  * New shout output module to forward streams to icecast servers
768  * Fixed several SAP and SDP announcement bugs
769  * Fixed MTU handling to avoid IP fragments
770  
771 Interfaces:
772 - new cone icon by Richard ยฏiestad (Eurodata, retron.info)
773  * Mac OS X
774     - New streaming and transcoding wizard
775     - New extended controls panel
776     - New bookmarks window
777     - Fixed playlist sorting
778     - Fixed drag-and-drop inside the playlist
779  * wxWidgets
780     - Rename wxWindows interface in wxWidgets.
781     - All the --wxwin-* options are now --wx-*
782     - Support for RTP streaming in Stream Ouput dialog
783     - Now require wx2.6 with Unicode support
784  * Skins2
785     - Tree playlist
786  * HTTP
787     - New RPN functions to control VLC features (see play-howto)
788     - Facilities to correctly handle non-ASCII characters and spaces in
789       the names of files
790     - Include macro to include other files
791     - CGI 1.0 support
792
793 ActiveX plugin:
794 * Should now work outside IE as well
795
796 Mac OS X port:
797 * New script to delete the preferences automatically
798
799 Windows port:
800 * Fixed bandwidth problems of HTTP streaming
801 * Fixed audio problems with DirectX audio output
802
803 Translations:
804  The following languages were added:
805  * Galician
806  * Korean
807  * Romanian
808  * Simplified Chinese
809  The following languages were re-added:
810  * Swedish
811
812
813 Changes between 0.8.1 and 0.8.2:
814 --------------------------------
815
816 Core support:
817  * Rewrite of the playlist
818     - Tree structure
819     - Input preparsing (for meta-data)
820     - Grouping (by artist, ...) support 
821  * Preferences improvements: 
822     - New organization, designed to improve usability
823     - New configuration types (list of modules, ...)
824  * XML parsers
825  * Core image manipulation support
826  * Client-side SSL/TLS support
827  * SSL Client certificates checking support (allows for secure VoD)
828  * Renamed --spu-channel to --sub-track
829  * Renamed --spumargin to --sub-margin
830  * Renamed --audio-channel to --audio-track
831  * Renamed --filter to --vout-filter
832  * filters, extra interfaces, visualizations and service discovery modules are
833    now separated by ':' instead of ','
834  * Access filter architecture
835  * Track selection based on preferred language (--sub-language and --audio-language)
836  * Zsh autocompletion for VLC's arguments
837  * Many bugfixes...
838
839 Input/Demuxers:
840  * Support for SOCKS proxy
841  * Support for Shoutcast Meta-data
842  * Support for (HE-)AAC raw-audio streams
843  * Support for images on a HTTP server that get refreshed on the server
844  * Better support for Kasenna streams
845  * RTSP UDP->TCP rollover support
846  * Massive Matroska improvements
847  * Support for XA and VOC audio files
848  * TiVo demuxer
849  * Samba (Windows shares) access module
850  * Improved CDDAX module (uses several playlist items)
851  * Fixes to Linux DVB support
852  * Fix the "negative subtitles delay" bug
853  * Support for FTP over IPv6
854
855 Decoders / Encoders:
856  * Dirac decoder and encoder
857  * PNG decoder/encoder
858  * Improvements to DVB subtitles encoder
859  * Support for Apple Lossless Audio Codec
860
861 Access filters:
862  * New Record and Timeshift filters
863
864 Services discovery:
865  * New type of modules, that add items to the playlist
866  * Brand new SAP module
867      * To enable SAP, you now need to use "-S sap" or add SAP in 
868        the "Manage->Services Discovery" menu
869      ( IPv6 SAP is now enabled by default )
870      * Non-standard support for HTTP streams SAP announces removed
871  * HAL (Hardware Abstraction Layer) discovery
872  * DAAP (iTunes shares) support
873  * Shoutcast
874
875 Audio output:
876  * Support for 20/24 bits LPCM
877
878 Video output:
879  * Video snapshot support (png or jpg)
880  * Image file video output (png)
881  * Motion detection filter (can trigger playlist actions)
882  * Improvements to wall video filter
883  * Support for font color and opacity
884
885 Stream output:
886  * Muxers
887     - ASF improvements
888  * VLM / VoD
889     - Ability to load a configuration file on startup
890     - Seeking support in VoD streams
891  * Mosaic (picture-in-picture system)
892
893 Interfaces:
894  * wxWidgets
895     - Redesigned playlist : add playlist, add directory, ...
896     - Improved preferences
897     - Improvements to the wizard
898     - DVD, VCD and Audio CD navigation buttons
899  * MacOS X
900     - Redesigned playlist
901     - Improved preferences
902  * Skins
903     - Support for multiple actions
904     - Fixes
905  * HTTP
906     - Support for the new playlist system
907  * Lirc
908     - Now uses new config settings. See doc/lirc/example.lirc
909
910 Windows port:
911  * Screensaver disabling fix
912  * DirectShow tuner configuration
913  * Support for no-decoration windows
914
915 MacOS X port:
916  * Many Mac OS X 10.4 Tiger related fixes
917  * The OpenGL video output is back
918  * A new audio module that should work more reliable for analog audio output in various configurations.
919    - Supports multichannel discrete analog output
920    - Digital audio output requires you to change a preference setting because it
921      is not yet available in the new module
922    - Please read the README.MacOSX.rtf file for more information.
923
924 BeOS port:
925  * Support for single-buffered overlay
926
927 Pocket PC port:
928  * Many fixes
929  * New interface
930  * New video output
931
932 Mozilla Plugin:
933  * Javascript fixes
934  * Mozilla plugin for MacOS X is back (not yet distributed)
935
936 IE Plugin:
937  * Brand new Internet Explorer ActiveX plugin
938
939 Translations:
940  The following languages were added:
941  * Catalan
942  * Danish
943  * Turkish
944
945
946 Changes between 0.8.0 and 0.8.1:
947 --------------------------------
948
949 Core support:
950  * Include TLS/SSL API (on plattforms where libgnutls is available)
951  * SSL support in the HTTP daemon (HTTP stream output and HTTP interface)
952
953 Windows port:
954  * Fixed win32 multichannel audio output support (which was broken in 0.8.0)
955  * Fixed DV and MPEG (WinTV PVR 250/350) support in the dshow input
956  * Fixed spurious taskbar item after switching to fullscreen
957
958 WinCE port:
959  * A few more updates (we still miss an interface and a fast video output).
960
961 Audio Output:
962  * Portaudio audio output plugin improvements
963
964 Video Output:
965  * Proper subpictures scaling using the aspect-ratio info when available
966
967 Demuxers:
968  * Fixed crash with ODML avi files
969  * Fixed autodetection of VCD/SVCD bin files
970  * Supports Kasenna VoD (MPEG2 only) and simulcast streaming
971
972 Stream Output:
973  * Encoders:
974    * Fixed aspect ratio and interlaced support in ffmpeg encoder module
975  * Stream output:
976    * Support of playlist group announcement
977
978
979 Changes between 0.7.2 and 0.8.0:
980 --------------------------------
981
982 Core support:
983  * Major work on libvlc. Changed/renamed/added functions
984  * Complete switch to the new input core (better seeking, multi-input, ...)
985  * New plugins cache to speed up launch time
986  * New --play-and-stop feature which stops the playlist after each played item
987  * Daemon mode (to run vlc in the background)
988  * Major improvements to the subtitle/OSD subsystem
989
990 Input:
991  * New screen capture input plugin for X11, Win32, BeOS and Mac OS X 
992     (Stream your desktop)
993  * Improved DVD support:
994     - uses libdvdnav for playing DVDs with menus support
995     - uses libdvdread for simple playback with menus (eg. for streaming)
996  * Experimental multi-input support ( use --input-slave to play with it )
997  * Automatic MTU discovery for UDP streams
998  * More powerful MRL syntax for DVD/VCD/CDDA access 
999     (selection of titles/chapters).
1000
1001 Demuxers:
1002  * Support for iTunes Music Store previews
1003  * Support for MJPEG webcams (i.e. AXIS cams)
1004  * Added initial mp4 and mpeg-ts text track support
1005  * Windows Media Server RTSP support
1006  * Support for MPEG TS streams with error correction (204/192 bytes TS packets)
1007  * Support for DTS audio in MPEG TS (ETSI TS 102 154 Annex G)
1008  * Skins2 .vlt file loader (only when skins2 is the current interface)
1009  * Improved Ogg demuxer
1010  * Support for MPEG PS streams with MPEG 4 video.
1011  * Support for so called AACPlus webstreams
1012
1013 Codecs:
1014  * G.726 audio support
1015  * 14496-17 MPEG TS text support
1016  * MPEG-4 text support
1017  * Vastly improved DVB subtitles decoder (ETS 300 743)
1018  * Enabled color in DVB subtitles rendering
1019  * VobSub supported both externally and in Matroska
1020
1021 Stream Output:
1022  Encoders:
1023   * Re-use audio/video/spu decoders in transcoder module. From now on,
1024      everything that is playable by VLC should be transcodable as well
1025   * Subtitles overlaying in transcoder
1026   * Subpictures overlaying in transcoder (see video output)
1027   * Frame rate selection in the transcoder
1028   * DVB subtitles encoder
1029   * MPEG 1 layer 2 audio encoder using libtoolame
1030   * Improved vorbis/theora encoding
1031  Muxers: 
1032   * Text track muxing for mp4
1033   * Multipart mjpeg muxing. Your video is directly viewable in a Mozilla Browser
1034   * 14496-17 text track muxing for MPEG TS
1035   * Support for DTS audio in MPEG TS (ETSI TS 102 154 Annex G)
1036   * Teletext (0x56 descriptor) streaming support in MPEG TS.
1037   * New WAV muxer (supports multi-channel audio)
1038   * Improved ASF muxer
1039  Misc:
1040   * H.263 RTP streaming support
1041   * SDP generation outputs more compliant SDPs and can create SDP files now
1042   * Improved RTSP and VoD server (experimental)
1043
1044 Audio Output:
1045  * New audio equalizer filter
1046  * Very trivial volume normalizer
1047  * True channel downmixing when playing 5:1 material on Stereo
1048  * More gradual resampling which should improve the pitch changing effect
1049  * New audio output plugin using portaudio v19
1050
1051 Video Output:
1052  * Roku HD1000 Video output
1053  * Experimental generic OpenGL video output (X11, Win32, MacOS X)
1054    with support for effects.
1055  * Improved filter and subpictures support :
1056     - New filters can be streamed.
1057     - "Subpicture filters" to overlay subpictures on video 
1058     - Centralized scaling and blending
1059  * New filters : 
1060     - "time", to display current time 
1061     - "marq", to display a marquee
1062
1063 Interfaces:
1064  * OSD sliders for volume and postition information
1065  * OSD icons for Play and Pause
1066  * New Streaming Wizard for Windows and Linux default interfaces (wxWindows)
1067  * A few skins2 improvements
1068  * Added search, volume, loop and random functions to the ncurses interface
1069  * Added a filesystem browser to the ncurses interface
1070  * The remote control interface can now listen for commands on sockets
1071  * Improved CORBA control module
1072
1073 Mac OS X port:
1074  * Fixed the "cannot set buffersize:[nope]" coreaudio problem
1075  * Major speed improvements to the Quartz video output
1076  * The Mac OS X interface is no longer required to display video
1077
1078 Linux port:
1079  * New galaktos visualization plugin (MilkDrop-compatible)
1080  * Experimental SVG rendering module
1081  * Support for DVB CAM modules.
1082
1083 Windows port:
1084  * DirectX Media Object decoder (allows playing some media types, like WMV3)
1085  * DirectX Media Object audio and video encoder
1086  * Fixed long standing win32 thread handles leak
1087  * Fixed problem with CPU usage with subtitles rendering
1088  * Wallpaper mode for the DirectX video output (only in overlay mode)
1089
1090 WinCE port:
1091  * Massive update (we still miss an interface and a fast video output).
1092
1093 Mozilla plugin:
1094  * Added a lot of Javascript accessible funtionality
1095  * Volume, position, length, seek etc etc etc.
1096
1097 Misc:
1098  * Server/client network synchronization module
1099  * VBrick streams fully supported
1100  * Cisco IP/TV streams supported
1101  * VLM enhancements
1102
1103
1104 Changes between 0.7.1 and 0.7.2:
1105 --------------------------------
1106
1107 Core support:
1108  * Bookmarks feature for easier seeking/access inside medias.
1109  * Support for video output embedded in interfaces.
1110  * Improved HTTP daemon.
1111  * Saved playlists now remember VLC-specific options.
1112
1113 Codecs:
1114  * New Continuous Media Markup Language (CMML) codec.
1115    (http://www.annodex.net/overview.html)
1116  * New H.261 video decoder using openmash.
1117  * H264 encoder, demuxer and packetizer.
1118  * Packetizer interfaces between demux and codec when needed
1119    (allows using ffmpeg plugin to decode MPEG streams and better aac decoding).
1120  * Support for Theora alpha3 (both decoding and encoding).
1121
1122 Input:
1123  * --start-time <sec> and --stop-time <sec> to start and stop playing a 
1124    file at the specified amount of seconds. Only works with a few
1125    fileformats (avi, mov, mkv, mp4 )
1126  * Improved directory access module.
1127  * New "file-cat" option to play truncated movies.
1128  * Better handling of meta info (title, author, description, etc...).
1129  * New options to pass meta info to the input.
1130  * It is now possible to stream programs from a DVB-S/C/T stream
1131    (satellite, cable, or digital terestrial television)
1132
1133 Demux:
1134  * Annodex (http://www.annodex.net) support.
1135  * mmsh streaming fixes.
1136  * Fixed infinite loop in the AVI demux on broken/incomplete files.
1137
1138 Subtitles:
1139  * Subviewer and subviewer v2 subtitles support.
1140  * Ability to choose autodetected subtitles path.
1141  * Subtitles delay can be changed in real time with hotkeys.
1142
1143 Stream output:
1144  * Improved session announcement system.
1145  * Minimize threads usage by default.
1146  * Added faster than realtime stream output (limited by CPU) for file output.
1147  * Improved MOV/MP4 muxer.
1148  * Improved MPEG TS muxer.
1149  * Improved transrater.
1150  * Meta info options used by the muxers.
1151  * New configuration system.
1152  * Better audio channels downmixing when transcoding.
1153
1154 VideoLAN manager:
1155  * New videolan (media) manager (vlm): a little manager designed to launch
1156    and manage multiple streams from within one instance of VLC.
1157  * Supports live streams and VoD.
1158  * Supports scheduling.
1159  * Telnet interface for vlm.
1160  * HTTP interface for vlm.
1161
1162 Interfaces:
1163  * Skins II (Windows and Linux only)
1164     - Ability to embed video output.
1165     - Support for bitmap fonts.
1166     - Lots of improvements.
1167  * wxWindows (default Windows and Linux interface)
1168     - New design and set of icons.
1169     - Ability to embed video output.
1170     - Support for hotkeys.
1171     - Support for bookmarks.
1172  * Mac OS X
1173     - Support for 'groups' and playlist item properties.
1174     - Better hotkeys handling.
1175
1176 Mac OS X port:
1177  * OpenGL video output is now the default when available.
1178  * Added FAAC encoder (mp4a).
1179  * Audio output fix to work with multiple streams on a HAL device.
1180  * Possible fix for conflict with CodeTek VirtualDesktop (untested).
1181
1182 Win32 port:
1183  * DirectShow input plugin should work with more devices.
1184  * Disable monitor power down when watching movies.
1185  * Improved Windows installer.
1186
1187 Linux port:
1188  * PowerPC fixes.
1189
1190 Misc:
1191  * Improvements to the Goom visualisation plugin.
1192  * Roku HD1000 audio output.
1193
1194
1195 Changes between 0.7.1 and 0.7.1a:
1196 ---------------------------------
1197
1198 Mac OS X:
1199  * Fixed the infamous 'mp3 takes twice the CPU it should take' bug
1200  * Playing MOD files is working now.
1201
1202
1203 Changes between 0.7.0 and 0.7.1:
1204 --------------------------------
1205
1206 Core support:
1207  * Fixed a nasty bug that causes preferences not to be saved some times.
1208  * IGMPv3 support for VLC under Windows XP and Linux.
1209
1210 Codecs:
1211  * Brand new DTS Coherent Acoustics audio decoder based on libdts
1212    (http://www.videolan.org/dtsdec.html)
1213  * Fixed DTS S/PDIF output
1214  * SVCD (Philips OGT) and CVD subtitles
1215
1216 Playlist:
1217  * Internal improvments
1218  * Improved import/export
1219
1220 Input:
1221  * Experimental support for Nullsoft streaming video(.nsv) and real media(.rm)
1222    container formars.
1223  * New demux module that uses libavformat from ffmpeg. Adds support for many
1224    small and strange formats.
1225  * New PVA demux.
1226  * New MOD audio demux.
1227  * Support for DTS and A52/AC3 wav files.
1228  * Support for DTS and A52/AC3 audio CD.
1229  * New and experimental DVD input plugin with menus support (using libdvdnav).
1230  * Added back DV audio support in raw DV demuxer.
1231
1232 Stream output:
1233  * MP4/MOV muxer improvements (fast-start, aac in mov, etc...).
1234  * Fixed a nasty bug in the mpeg video packetizer.
1235  * Improved transcoding (multithreading, more tuning, etc...).
1236
1237 Service discovery:
1238  * Fixed sdp in SAP.
1239
1240 Mac OS X port:
1241  * New opengl video output plugin.
1242
1243 Win32 port:
1244  * A few improvements to the DirectShow input plugin.
1245  * Fixed ipv6 name resolution.
1246
1247
1248 Changes between 0.6.2 and 0.7.0:
1249 --------------------------------
1250
1251 Core support:
1252  * Brand new decoder/packetizer api.
1253    Adds a lot more flexibility while also simplifying the decoder plugins.
1254  * New encoder api (Ffmpeg, Vorbis, Theora, Flac and Speex encoders available).
1255  * Video outputs are recycled if possible.
1256    This removes any 'flicker' between two similiar video files.
1257  * Fixed the video filters. Video should no longer go black when using filters.
1258  * New input core. Advantages are: better seeking, more responsive, support for
1259    subtitle files at the core, and much much more.
1260
1261 Playlist:
1262  * Added a repeat mode to repeat a single file over and over.
1263  * Playlist sorting 
1264
1265 Input:
1266  * RTP/RTSP support.
1267  * Fixed annoying seeking problem with Ogg files (seeking would take ages).
1268  * Support for Flac in Ogg files.
1269  * MPEG TS demuxer also handles A52 and AAC audio in DVB streams.
1270  * Rewrite of the Flac demuxer.
1271  * cddax and vcdx plugins using libcdio, libvcd and libvcdinfo. (Linux only)
1272  * Reworked DVB tuning.
1273  * Better Icecast support.
1274  * New MPEG video elementary streams demuxer.
1275  * New DTS audio elementary streams demuxer.
1276
1277 Codecs:
1278  * Support for Theora video encoding.
1279  * Support for Speex audio decoding/encoding.
1280  * Rewrite of the Flac decoder + encoding support.
1281  * Support for MPEG2 422 decoding which was recently added to libmpeg2 (cvs).
1282  * Support for AAC + SBR and proper multi-channel re-ordering.
1283  * MPEG 2.5 audio support.
1284  * Removed deprecated decoders (a52_old, mpeg_video and mpeg_audio).
1285
1286 Stream output:
1287  * Improvements to the MPEG TS muxer.
1288  * New transrating module for MPEG2 video.
1289  * Added packetization for MPEG AAC ADTS streams.
1290  * Added packetizers for Flac, Speex, Theora, LPCM, DTS and SPU streams.
1291  * Improved mp4 muxing and added AAC/MP4V support when transcoding.
1292  * Improved Ogg muxing and added Theora, Speex, Flac and subtitles support.
1293  * MPEG TS muxer follows the ATSC/DVB specs for embedded A52 audio.
1294  * --sout-keep option to keep the stream open while changing input.
1295  * Preliminary RTP support.
1296  * Fixes to SAP announces.
1297
1298 Interface:
1299  * Skins:
1300     - Bugfixes
1301     - misc improvements (eg, "stay on top" option).
1302  * New standardized and customizable hotkeys.
1303  * wxWindows
1304     - Playlist improvements (Sort, Search, mode buttons).
1305     - Improvements and help in preferences
1306     - New streaming wizard
1307     - Revised Disc Open menu
1308  * HTTP
1309     - Improvements of the standard pages
1310     - Support for new commands
1311  * OSD ( OS X and hotkeys only atm ).
1312
1313 Service discovery:
1314  * Many fixes to the SAP module
1315  * SAP now supports HTTP streams
1316
1317 Subtitles:
1318  * Text subtitles now have a black outline.
1319  * Text subtitles autodetection.
1320  * Text subtitles charset autodetection.
1321  * Text subtitles for all videofiles. Results may vary.
1322  * Text subtitles in Hebrew are supported. Arabic partially.
1323  * Automatic fontsize selection for text subtitles.
1324  * Fixed SAMI text subtitles support.
1325  * Support for subtitles in Matroska files.
1326  * Support for subtitles in DVB streams.
1327
1328 Mac OS X port:
1329  * New controller designed by Max Rudberg from www.maxthemes.com
1330  * Save playlist.
1331  * Works on 10.1.x again. Apologies for that problem.
1332  * Support for Panther.
1333  * Support for raw dumping of streams to disk.
1334  * Mozilla plugin for Mac OS X (experimental).
1335
1336 Win32 port:
1337  * New DirectShow input module (for video acquisition cards, webcams, PVRs...).
1338  * VLC can be installed as a Windows NT service.
1339  * Allow on the fly switching of the main interface.
1340  * Support for 3F2R in audio output.
1341  * New --one-instance option to "force" only one running instance of VLC.
1342  * Mozilla plugin for Windows (experimental).
1343  * Multimonitor support (untested).
1344  * Fixed nasty timing bug on some dual-cpu / P4 with hyperthreading systems.
1345
1346 Linux port:
1347  * Improved Video4Linux input. Also added support for an audio only input.
1348  * Support for real-time priority when running with root privileges.
1349  * Allow on the fly switching of the main interface.
1350
1351 iPaq port: 
1352  * Brand new Gtk 2 interface
1353
1354 Miscellaneous:
1355  * Audio visual effects filters (spectrum, scope and random).
1356  * Audio visual effects filter using goom.
1357  * Spanish, Portuguese Brazilian and Hungarian translations.
1358  * libcaca video output (colored ascii)
1359
1360
1361 Changes between 0.6.1 and 0.6.2:
1362 --------------------------------
1363
1364 Core support:
1365  * Fixed a nasty regression in 0.6.1 which made some streams unplayable.
1366
1367 Stream output:
1368  * Transcoder now generates proper pts/dts thus should work a lot better.
1369  * Improved MPEG TS muxer.
1370
1371 Access input:
1372  * Support for DVB-S/C/T cards using v4l2 API for Linux 2.6.x kernels.
1373  * Few fixes to the VCD navigation.
1374
1375 Interfaces:
1376  * Support for DVD menus navigation added to the wxWindows interface.
1377
1378 UNIX ports:
1379  * ALSA multi-channel support fixed and tested.
1380  * Fixed fullscreen with gnome metacity.
1381
1382 Win32 port:
1383  * Fixed VCD support which was broken on some machines.
1384
1385 iPaq port:
1386  * Familiar interface with Gtk+-1.2 and GPE support removed (deprecreated).
1387
1388 Miscellaneous:
1389  * Text subtitles now centered on the picture.
1390  * Ffmpeg decoder now generates proper pts and can be used to play
1391    mpeg1/2 videos.
1392
1393
1394 Changes between 0.6.0 and 0.6.1:
1395 --------------------------------
1396
1397 Core support:
1398  * There should be less bogus resampling, particularly on DVDs.
1399  * VLC will now wait for the medium to wake up before starting its clock
1400    after a pause.
1401
1402 Stream output:
1403  * Added vorbis audio support in Ogg streaming.
1404  * Added vorbis audio transcoding support.
1405  * Added mp3 audio transcoding support (when ffmpeg is compiled with mp3lame).
1406 UNIX ports:
1407  * ALSA multi-channel support fixed and tested.
1408  * Fixed fullscreen with gnome metacity.
1409
1410 Win32 port:
1411  * Fixed VCD support which was broken on some machines.
1412
1413 iPaq port:
1414  * Familiar interface with Gtk+-1.2 and GPE support removed (deprecreated).
1415
1416 Miscellaneous:
1417  * Text subtitles now centered on the picture.
1418  * Ffmpeg decoder now generates proper pts and can be used to play
1419    mpeg1/2 videos.
1420
1421
1422 Changes between 0.6.0 and 0.6.1:
1423 --------------------------------
1424
1425 Core support:
1426  * There should be less bogus resampling, particularly on DVDs.
1427  * VLC will now wait for the medium to wake up before starting its clock
1428    after a pause.
1429
1430 Stream output:
1431  * Added vorbis audio support in Ogg streaming.
1432  * Added vorbis audio transcoding support.
1433  * Added mp3 audio transcoding support (when ffmpeg is compiled with mp3lame).
1434  * PS muxer can create mpeg1 files now and produce streams with system headers.
1435  * You can transcode a52 with more than two channels to mpga now.
1436
1437 Win32 port:
1438  * Fixed DVD support which was partly broken due to a bug in libdvdcss
1439  * Fixed 5.1 audio support for the sblive/audigy soundcards.
1440  * Fixed sound on Windows NT.
1441
1442 UNIX ports:
1443  * Fixed/improved ALSA support and enabled multi-channel audio output.
1444  * X11/Xvideo: Should now work on big endian machines, and you can now
1445    use the arrow keys to browse through the DVD menus.
1446
1447 iPaq port:
1448  * Gtk+2 interface called PDA
1449  * Familiar Gtk+ is now deprecreated
1450  * Codec a52, Faad2 and flac added
1451  * Video4Linux enabled (demux and transcode)
1452  * Stream Out with transcode support enabled (use codecs: HuffYuvv and A-law).
1453
1454 Interfaces:
1455  * Small updates/fixes to the wxWindows interface.
1456  * Improved HTTP remote control interface. You can now create your own HTML pages.
1457  * A new CORBA control plugin.
1458
1459 Input demux:
1460  * Improved support for the Matroska container format.
1461
1462 Miscellaneous:
1463  * Improved build system.
1464  * New video filter plugin to overlay logos.
1465  * Added support for Winamp 3 B4S files.
1466  * New subtitle module which uses freetype2 to render arbitrary fonts in any size.
1467    Should also work with languages like russion for instance.
1468
1469
1470 Changes between 0.5.3 and 0.6.0:
1471 --------------------------------
1472
1473 Core Support:
1474  * Channel Server support was removed (was deprecated)
1475
1476 Input access:
1477  * Fixed a big bug in ftp and http access that prevented many platforms (OSX most prominently) to view ftp and http streams.
1478  * Fixed large file support on Windows
1479  * Video 4 Linux support
1480  * CD Digital Audio support
1481  * Fixed IPv6 multicasting on Windows and OSX.
1482
1483 Input demux:
1484  * Better detection of AAC and mp3 files
1485  * Support for OpenDML avi files
1486  * More complete .mp4/.mov support
1487  * Very early support for the Matroska container format (don't complain if it doesn't work ;)
1488
1489 Codecs:
1490  * VLC's own MPEG1/2 decoder has been replaced with libmpeg2
1491  * Support for Sorenson 3 (SVQ3 or Quicktime content) via ffmpeg
1492  * OSX support for QDM2 and QDMC sound, often used in QT content.
1493  * Fixed a bug which was causing artefacts in DivX video (ffmpeg)
1494  * Updated our theora decoder to use the alpha 2 release of libtheora
1495  * If ffmpeg cannot keep up, skip and try to recover instead of stopping altogether
1496  * Indeo Video 3 (IV32) support for little-endian computers. (so not for OSX)
1497
1498 Interfaces:
1499  * The wxWindows interface is now fully useable as well as Unicode safe
1500  * New HTTP remote control interface
1501
1502 Stream output:
1503  * New stream output scheme. It is now possible to build a chain of stream outputs allowing for instance to stream and display some content at the same time.
1504  * The stream output now allows to transcode content on the fly.
1505  * Fixed major bug that prevented streaming mpeg 1/2 video with pulldown content.
1506  * SAP/SDP announcing support. (both IPv4 and IPv6)
1507
1508 Miscellaneous:
1509  * New reset option for the preferences
1510  * You can set your language in the prefences
1511  * New video chroma conversion module using ffmpeg
1512  * Added a Gentoo ebuild to the distribution
1513  * Added a new smaller subtitles font (now the default) + scripts to generate your own
1514  * SAP/SDP IPv6 support
1515
1516 UNIX ports:
1517  * Basic support for the X11 Xinerama extension.
1518  * New skinable interface ported to X11.
1519  * Run opie-vlc and zaurus-vlc as GuiServer
1520
1521 Mac OS X port:
1522  * When you add several items to the playlist, they are sorted alphabetically.
1523  * New about panel and revamped preferences panel.
1524  * Fixed the deinterlace menu.
1525  * Float on top, Fit to Screen and a Transparency option for video out.
1526  * New output dialog for transcode and display while stream capabilities.
1527  * New icons by Davor Orel.
1528  * New audio resampler. Should make VLC much faster.
1529  * Fixed disappearing and crackling sound (PTS is out of range bug)
1530  * We no longer automatically save the preferences when you quit the application
1531  * Arrow keys are now use to browse the menus in a DVD
1532
1533 Win32 port:
1534  * the wxWindows interface is now the default interface
1535  * The keyboard shortcuts are now identical to the linux version
1536  * Fixed the "no sound" problem on NT4
1537  * Improved skinnable interface (it now uses the wxWindows interface dialogs).
1538  * Added support for compressed skins files (.vlt files)
1539  * Fixed SVCD chapters support.
1540  * Fixed memory leak with 5.1 audio.
1541
1542 BeOS port:
1543  * Interface localization
1544  * Screensaver disabled if playing in fullscreen
1545  * A few new keyboard shortcuts
1546  * New full-featured Preferences window
1547
1548
1549 Changes between 0.5.2 and 0.5.3:
1550 --------------------------------
1551
1552 Core Support:
1553  * fixed DTS S/PDIF output on little-endian machines
1554  * support for skins at the interface level
1555  * new OSD module using Freetype2
1556  * video outputs are now destroyed when the associated input ends
1557  * the video output takes into account the caching delay introduced at the
1558    input level before dropping out of date frames.
1559  * configuration option to disable the translation of the interface
1560
1561 Input access:
1562  * fixed HTTP redirects
1563  * support for opening an entire directory
1564  * EOF should be detected more reliably
1565  * new video4linux access plug-in
1566  * new kfir access plug-in designed to work around a bug in the kfir driver
1567
1568 Input demux:
1569  * added stream type for some Motorola MPEG-2 video encoders
1570  * fix for some ogg web radio streams
1571  * fixed reading TS streams over HTTP
1572
1573 Codecs:
1574  * support for 3ivx D4 (not previous versions)
1575  * support for '3ivd' and '3vid' encodings
1576  * support for 'MSS1' codec ( same as WMV2 )
1577  * support for SAMI subtitles (untested and incomplete)
1578  * better SSA4 subtitles recognition
1579  * new codec for raw I420 video
1580  * improvements to the libmpeg2-based MPEG video decoder
1581
1582 Interfaces:
1583  * improvements to wxWindows based interface
1584    (although it still misses some important features)
1585  * skeleton for a Gnome2/GTK2 plug-in
1586
1587 Stream output:
1588  * new HTTP output support
1589  * fixed a segfault in the AVI muxer
1590  * fixed AV synchronization issues
1591
1592 Miscellaneous:
1593  * support for oldstyle id3 genres
1594
1595 UNIX ports:
1596  * the SDL vout plug-in will now work on big-endian machines
1597
1598 Mac OS X port:
1599  * reorderable playlist
1600  * fixed the hiding of the mouse on multiple monitors
1601  * fixed a big issue with some USB speakers
1602  * support for mono audio output devices
1603  * reset the audio-device to its default mode before quitting VLC
1604  * fixed several cosmetic issues
1605  * you can drag the controller window by its background (as it should be)
1606  * the messages window remembers more lines
1607  * delay and fps can now be overruled with subtitles files
1608  * http and ogg stream output options
1609  * Apple menu and friends will now be translated as well
1610
1611 Win32 port:
1612  * new skinnable interface
1613  * the directx video output doesn't crash anymore on ctrl+alt+del events.
1614
1615 iPAQ familiar Linux port:
1616  * support for FLAC audio format
1617  * the interface adapts to the screen size/rotation
1618  * playlist
1619  * network tab in the interface
1620  * "apply" handling in preferences
1621
1622
1623 Changes between 0.5.1a and 0.5.2:
1624 ---------------------------------
1625
1626 Core support:
1627  * advanced config options are now hidden by default
1628  * new --spdif option to use the S/PDIF audio output by default
1629  * fixed a 'clicking' sound when switching between streams
1630  * new bandlimited resampler that should improve audio quality on primarily
1631    Mac OS X
1632  * fixed a problem with audio over http that caused some web radios to not work
1633  * DTS S/PDIF support
1634
1635 Codecs:
1636  * support for DV audio through the ffmpeg library
1637  * support for FLAC audio through libflac
1638  * new but basic MPEG video decoder based on libmpeg2
1639  * fixed a major bug in LPCM code (fixes a problem with iDVD disks)
1640
1641 Stream output:
1642  * support for streaming DivX 1/2/3, wmv1/2, h/i263 over MPEG-2 TS
1643  * new --ttl option for Time To Live
1644
1645 DVD support:
1646  * fixed quite a few problems with the dvd menu support
1647
1648 UNIX ports:
1649  * fixed the GNU-pth support
1650
1651 Win32 port:
1652  * multi-channel audio and S/PDIF support for both the DirectX and Waveout
1653    plugins
1654  * localization support via gettext is now fully working
1655  * rc interface is now fully useable
1656  * fixed the MSVC project files generation
1657
1658 Mac OS X port:
1659  * several fixes for multi channel audio devices. AC3 over SPDIF with
1660    M-Audio Sonica Theater still does not work. this is most likely a driver
1661    bug and has been reported to M-Audio. (Sonica, Revolution, Delta, Griffin
1662    iMate and MOTU firewire devices should work)
1663  * VLC now uses the default audio device
1664  * new info panel
1665  * very preliminary support for VLC control via applescript
1666  * support for mouse gestures
1667  * new priority scheme allowing to avoid lock-ups on low-end machines
1668
1669 Linupy port:
1670  * there is a whole new port for the linupy distribution used by o.a. the
1671    YOPY PDA. It is still experimental, please test it
1672
1673 Miscellaneous:
1674  * improved ID3 tag detection
1675  * changed several errors into warnings ; the frequently reported "this is
1676    not a PS stream, continuing" is one of these
1677  * mouse gestures work on windows and osx, but there still isn't any useful
1678    gestures
1679  * some support for .pls playlists used by shoutcast
1680
1681
1682 Changes between 0.5.1 and 0.5.1a:
1683 ---------------------------------
1684
1685 Mac OS X port:
1686  * fixed a problem that caused VLC to select the wrong language when
1687    English was set as the preferred language
1688
1689
1690 Changes between 0.5.0 and 0.5.1:
1691 --------------------------------
1692
1693 Core support:
1694  * new mouse gesture interface
1695  * audio volume can now be changed at any time, even when no file is
1696    playing
1697
1698 Input access:
1699  * various minor fixes on the network inputs
1700  * fixed some weird URL parsing problems (/Volumes/toto:tata/harry@coin.mpg)
1701  * VCD: fixed track number and chapter indexing
1702
1703 Input demux:
1704  * fixed a bad initialization in the mp4 plug-in
1705  * new --buggy-psi option for TS streams which do not update their
1706    continuity counter
1707
1708 Codecs:
1709  * support for MPEG-2 intra slice refresh (aka. Slice-I) streams
1710
1711 DVD support:
1712  * fixed a bug which turned the default interface command-line only
1713    without the user consent
1714
1715 UNIX ports:
1716  * GTK: fixed a crash when going fullscreen or changing volume from the
1717    popup menu
1718  * X11: new screen saver disabling plug-in (--extraintf screensaver)
1719  * KDE: fixed compilation with KDE 3.1
1720  * ALSA: fixed mono files output
1721
1722 Mac OS X port:
1723  * fixed a crash on start-up on some localized systems
1724  * lowered real-time priorities to avoid lock-ups on slow machines
1725  * VLC can now be made the handler of ftp http mms and udp URLs
1726  * playlist enhancements
1727  * added half, normal and double video window menu items
1728  * new step forward/step backward commands
1729  * the dock should no longer be visible in fullscreen mode
1730  * the Mac OS X binary is now compiled with Ogg/Theora support
1731  * vlc.app is now VLC.app
1732
1733 Win32 port:
1734  * fixed the "RichEdit line insertion error" bug
1735  * VLC can now be run from outside its installation directory
1736  * fixed a bug that prevented to find the default subtitle font
1737
1738 BeOS port:
1739  * smarter BeOS priorities to avoid lock-ups
1740  * few enhancements in the interface (especially the Settings window)
1741
1742 Opie port:
1743  * native video output is working again
1744  * only commandline interface support
1745  * support for MPEG4, DivX through ffmpeg package
1746
1747
1748 Changes between 0.4.6 and 0.5.0:
1749 --------------------------------
1750
1751 Core structure:
1752   * object structure which allows for full re-entrancy, known as libvlc
1753   * new audio output architecture based on filter pipelines, providing
1754     S/PDIF and multi-channel support
1755   * localization support via gettext on most architectures
1756   * new stream output architecture, allowing to use VLC to unicast,
1757     multicast or broadcast a stream to another VLC (only MPEG 1, 2 and 4
1758     and A/52 streams are supported)
1759   * build system now uses autoconf/automake/autopoint
1760
1761 Input access:
1762   * mms:// support
1763   * ftp:// support
1764   * stability fixes in the HTTP access
1765   * auto-detection of RTP encapsulation
1766   * VCD entry points support
1767   * VCD image file support
1768
1769 Input demux:
1770   * support for *.asf format
1771   * improved support for *.avi, especially over an HTTP connection
1772   * support for *.mp4 and *.mov format
1773   * support for ogg encapsulation
1774   * support for raw DV format
1775   * support for *.wav format
1776   * new demuxdump demux allowing to save a stream to a file
1777   * raw AAC support
1778
1779 Stream discovery & playlists:
1780   * support for the SAP/SDP and SLP protocols
1781   * support for .m3u file format
1782   * support for .asx file format
1783   * hack to find the streaming sources in html-pages with embedded wmp
1784
1785 Codecs:
1786   * support for the microdvd, subrip, ssa1, ssa2-4 subtitles file formats
1787     (only available with the .avi demux)
1788   * support for ADPCM audio codec
1789   * support for raw PCM data
1790   * support for Cinepak video codec
1791   * support for DV video codec via libdv or ffmpeg
1792   * support for AAC audio codec via libfaad2
1793   * support for Xvid codec
1794   * support for Xiph.org's Vorbis audio codec
1795   * support for Xiph.org's Tremor audio codec (when compiling from sources)
1796   * support for Xiph.org's Tarkin and Theora video codecs (when compiling
1797     from sources)
1798   * new codecs supported by latest ffmpeg versions: WMV, WMA, SVQ 1, H263,
1799     H263i, MJPEG A/B
1800   * fixed an endianness bug in LPCM codec
1801
1802 DVD support:
1803   * experimental preliminary support for DVD menus via libdvdplay
1804
1805 Miscellaneous:
1806   * new WxWindows interface
1807   * all interfaces allow to dynamically change the volume, the audio
1808     device and the channels configuration
1809   * headphone channel mixer with virtual spatialization effect
1810   * Mozilla plugin based on libvlc for embedded playback in webpages of any
1811     format that VLC can play
1812   * new swedish translation
1813   * enhancements of the playlist window
1814   * new messages window to see debug info
1815   * fixed a few crashes
1816
1817 iPaq port:
1818   * slider bar in GTK+/GPE Familiar interface
1819   * fixed crash on directory change in Familiar interface
1820   * added qte_main module for use in all modules that need Opie or Qte support
1821   * native video output module for Qt Embedded/Opie is not working
1822