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