]> git.sesse.net Git - vlc/blob - NEWS
Mention webUI in NEWS
[vlc] / NEWS
1 Changes between 1.1.x and 1.2.0-git:
2 ------------------------------------
3
4 Important changes for packagers:
5  * The default builds now assume that the operating system uses UTF-8 for
6    its file systems and files content (except the Windows port). If this is
7    not acceptable, pass --enable-non-utf8 to the configure script.
8    Non-UTF-8 file systems support will be removed in future versions.
9  * The VLC plugins path can be overridden with the VLC_PLUGIN_PATH environment
10    variable. The --plugin-path command line option was removed.
11  * The default tarballs are now compressed with XZ/LZMA: .tar.xz
12  * OSS support is not compiled on Linux by default, pass --enable-oss to the
13    configure script if you use OSSv4 or really want to use OSS emulation.
14  * The Windows version will only work with Windows XP SP2 or later.
15    Windows 2000 SP4, Windows XP < SP2, Windows 2003 SP0 are now unsupported.
16
17  * The NPAPI webplugin has moved to git://git.videolan.org/npapi-vlc.git
18  * The ActiveX webplugin has moved to git://git.videolan.org/activex-vlc.git
19
20
21 Core:
22  * Major Video Core and Outputs rework and rewrite:
23    Subtitles, subpictures and OSD can now be sized and blent inside video outputs
24    x11 (Unix), OpenGL (Unix) and Direct3D (Windows) are such video outputs.
25  * Almost every video filter can now be transcoded
26  * Playback rate doesn't get resetted to 1 between items anymore
27  * Option --sub-filter was renamed --sub-source
28
29 Access:
30  * Multiple files are now supported inside RAR files
31  * BDA: experimental support for ClearQam devices
32  * DVB-S scanning support on Unix
33  * DVB-C scanning on Unix scans correct modulation/symbolrate if needed
34  * DShow: support for freq and video standard selection
35  * Support for VDR recordings (http://www.tvdr.de/) folders
36  * Blu-Ray Discs integration using libbluray
37  * HTTP Live Streaming (IETF draft) playback support
38  * Blackmagic DeckLink SDI cards input support (Linux only currently)
39  * Linear Systems (HD-)SDI cards input support (Linux)
40  * RTP: support for dynamic payload types by specifying the payload format
41    in an option (no autodetection): only Theora supported for now
42  * Basic HTCPCP implementation for Coffee Pot control
43  * QTCapture: added support for all QTKit-compatible video input devices
44  * X11 Screen: support for capturing partially hidden windows
45
46 Codecs:
47  * You can now use ffmpeg-mt in conjunction with vlc
48  * Important fixes for RealVideo 3.0 and 4.0 playback, notably in MKV
49  * Experimental Hardware decoding using Broadcom CrystalHD cards
50  * New module for decoding EBU subtitles (.stl)
51
52 Demuxers:
53  * New images demuxer supporting jpeg, png, targa, xcf, git, tiff, bmp, pcx, lbm
54  * C64 SID file playback support using sidplay2
55  * Ogg seeking improvements
56  * Support for images/cover art in wma/wmv/asf files
57  * Improvements in .ape files metadata reading and writing
58  * New demuxer module for EBU subtitles (.stl)
59
60 Interfaces:
61  * Skins2 / Qt: misc improvements and usability fixes
62  * Qt: effects dialogs rework
63  * Qt: new CoverFlow-like view of the playlist
64  * Qt: port to MacOS X platform
65  * Skins2: fullscreen controller support, relative placement support
66    and important cleanups and optimisations
67  * ncurses: heavy refactor of the complete interface
68  * Mac OS X: new Audio Effects panel adding Compressor and Spatializer filters
69  * Mac OS X: new Track Synchronization panel
70  * The rc and telnet lua interfaces were merged into a new "cli" interface
71  * dbus: Rewrite of the main loop to use a more efficient poll-based model
72  * dbus: Upgrade to an mpris2 compliant interface, see http://www.mpris.org
73  * webUI/http: Rewrite of the web interface, using jQuery
74
75 Video Output:
76  * New video output based on Direct2D for Windows 7 and Vista (with Platform Update)
77  * New video output for iOS platform
78  * Experimental work in progress on a video output using EGL
79  * Adaptation of the OpenGL layer for OpenGL ES 1.1
80  * Various vmem improvements
81  * OpenGL video output now accepts YUV as input and uses fragment programs for
82    chroma conversion
83  * New video output for Android platform, based on Surface
84
85 Audio Output:
86  * New audio output based on AudioQueue API for iOS
87  * New audio output in memory (amem)
88  * Important simplification and improvements in the core audio output
89  * New audio output based on OpenSL ES API for Android
90
91 Video Filter:
92  * New gradfun filter for debanding videos using dithering
93  * Rewrite of the grain filter, faster and with better quality
94  * New posterize filter for lowering the number of colors
95  * Atmo ambilight: improve Fnordlicht up to 254 channels
96  * New sepia filter for creating sepia effect in videos
97  * New deinterlacer mode Phosphor, a framerate doubling CRT TV simulator
98  * New deinterlacer mode IVTC, to do live inverse telecine for NTSC films
99  * New subsdelay filter to change subtitles delay
100  * New anti-flickering filter
101  * New OpenMAX DL IPCS filter for color space conversion and resizing
102
103 Audio Filter:
104  * New Compressor filter, a dynamic range compressor
105
106 Stream output:
107  * New livehttp-module for HTTP Live Streaming (IETF draft) output
108    example: vlc inputfile :sout="#transcode{vcodec=h264,acodec=mp3,
109     venc=x264{profile=baseline},width=320,vb=256,ab=96}:std{
110     access=livehttp{index=public_html/iphonestream.m3u8,
111     index-url=http://url-to-iphonestreamfile-###.ts},mux=ts{use-key-frames},
112     dst=public_html/iphonestreamfile-###.ts}"
113  * RTP: support for Vorbis and Theora
114  * Major rework of VoD support
115  * New delay module, to introduce delays of one ES, when streaming:
116        #delay{id=12,delay=500}:standard...
117  * New setlang, setid modules to change lang or id of one ES, when streaming:
118        #setid{id=12,new-id=42}:std...
119  * New langfromtelx module, to change lang of one ES, when streaming, based on
120    a telextex page: #langfromtelx{id=12,magazine=7,page=0x99,row=1}:std...
121  * New select module, to replace an existing ES with another ES in the same track
122       #duplicate{dst=bridge-out{id=1},select=video,dst=bridge-out{id=0xa3},select=audio}
123       #transcode{...}:bridge-in{id-offset=0}:select{disable=0}:setid{id=0,newid=0xa3}:autodel:std{...}
124
125 Services Discovery:
126  * Search API to be able to query distant search APIs from the interfaces
127  * Upnp module was ported to Win32
128
129 libVLC:
130  * New capabilities for libVLC:
131   ** libvlc_media_player_navigate for DVD navigation
132   ** libvlc_audio_filter_list_get, libvlc_video_filter_list_get to get the
133      list of available audio and video filters
134   ** libvlc_audio_set_format, libvlc_audio_set_format_callbacks, libvlc_audio_set_callbacks
135      allow grabbing audio data from a chosen memory location in real-time.
136
137 Removed modules:
138  * asademux: use libass only
139  * subsass: use libass
140  * fake, invmem: use the new image demuxers
141  * hal, v4l, gapi, omapfb, hd1000a, hd1000v: obsolete unmaintained modules
142  * id3tag: use taglib
143  * upnp: use upnp_intel
144  * removal of old telnet interface in favor of the new lua CLI
145  * removal of http interface in favor of luahttp
146
147
148 Changes between 1.1.9 and 1.1.10:
149 ---------------------------------
150
151 Windows and Mac OS X:
152  * Update of external library modplug, to address multiple security issues
153
154 Mac OS X Interface:
155  * Improved Media Key handling based upon SPMediaKeyTap by Spotify AB
156  * Fix for various crashes and small issues
157
158 Demuxer:
159  * Fix heap corruption / integer overflow in XSPF playlist parser
160
161 Audio output:
162  * PulseAudio output re-written due to unstability of the current one
163
164 Win32 port:
165  * Remove the fontconfig dependency from the freetype module
166
167 Miscellaneous fixes in:
168  * Windows 7 taskbar buttons
169  * Qt interface
170  * asx, live555, dvdnav demuxer
171  * RTP output and XML export
172  * Subtitles colours when using GPU decoding on Windows
173  * v4l2 access
174
175 Translations:
176  * Update of Norwegian BokmÃ¥l, Slovak, Afrikaans, Luganda,
177    Brazillian Portuguese, Irish, Thai, Estonian, Chinese, Polish,
178    Dutch, German, Galician, Bulgarian, Lithuanian and Japanese translations
179  * Initial Basque, Zulu, Peul, Amharic, Acoli, Chiga translations
180
181
182 Changes between 1.1.8 and 1.1.9:
183 --------------------------------
184
185 Windows and Mac OS X:
186  * Update of external library modplug, to address a security issue
187
188 Demuxers:
189  * mp4: Fix heap-based buffer overflow (VideoLAN-SA-1103)
190
191 Mac OS X Interface:
192  * Miscellaneous interface look adjustments
193  * Improve Apple Remote handling
194  * Fixe bugs in the Streaming / Transcoding wizard
195  * Layout fixes in the Preferences and Controls windows
196  * Fix incomplete list of hotkeys in the Preferences dialog
197  * Fix quitting through Apple Events (Dock menu, App Switcher, AppleScript, etc.)
198
199 Mac OS X Port:
200  * Fix Growl local notification plugin
201  * VLC bundle now includes the Growl framework
202  * Fixes for eyeTV
203
204 Translations:
205  * Updates of Lithuanian, Estonian, Chinese, Japanese, Bengali, Dutch, Polish,
206    German, Galician, Traditional Chinese translations
207  * New Luganda Translation
208
209
210 Changes between 1.1.7 and 1.1.8:
211 --------------------------------
212
213 Mac OS X Interface:
214  * New UI graphics by Damien Erambert
215
216 Interfaces:
217  * Oldrc interface is again the default RC interface, on Windows
218  * Luarc, luahttp and luatelnet fixes
219  * Qt and Mac OS X fixes
220  * numerous Skins2 fixes, notably winamp2 skins
221
222 Encoder:
223  * new libschroedinger-based Dirac codec encoder, faster than the current one
224
225 Access/Demuxers/Codecs:
226  * Subtitles auto-detection is back for .txt files
227  * vod/rtsp server and rtsp input fixes
228  * mp4 demuxer improvements
229  * ogg, rstp input, video filters minor fixes
230  * taglib's replaygain is fixed for mp3
231  * vobsub support has an improved auto-detection
232  * fix a crash in malformed ape files
233
234 Miscellaneous fixes in:
235  * Pulseaudio audio output, notably for usb cards
236  * Stacktraces are now limited in size on Windows
237  * Video resolution is now limited to 8192x8192, for security reasons
238    See CORE-2011-0208, CVE-2010-3275, CVE-2010-3276
239  * Configure and build system improvements
240  * DirectShow and BDA build headers have been updated
241
242 Translations:
243  * Update for Finnish, Galician, Dutch, Chinese, German, Japanese, Lithuanian,
244    Slovak, French, Polish, Estonian, Brazillian Portuguese and Hebrew
245  * New icelandic translation
246
247
248 Changes between 1.1.6 and 1.1.7:
249 --------------------------------
250
251 Linux port:
252  * Integration with the KDE GUI platform is disabled due to KDE bugs
253    #234484 and #260719.
254
255 Mac OS X port:
256  * Updated live555 library to fix playback of RTSP and Freebox streams
257  * Running VLC in 64bit mode requires Mac OS X 10.6.0 or later for speed
258    and stability reasons
259
260 Demuxers:
261  * Fix for Matroska / WebM remote code execution vulnerability.
262    VideoLAN-SA-1102
263
264 Translations:
265  * Update for Hebrew, Japanese, Danish and Russian translations
266
267
268 Changes between 1.1.6 and 1.1.6.1:
269 ----------------------------------
270
271 Source:
272  * Fix libnotify, lirc, pulse compilation and packaging for Unix/Linux
273
274
275 Changes between 1.1.5 and 1.1.6:
276 ---------------------------------
277
278 Audio output:
279  * Multiple fixes and improvements on PulseAudio output
280    PACKAGERS are VERY STRONGLY advised to update libpulse to 0.9.22.
281    Update is required to use PulseAudio with the Phonon-VLC backend (KDE)
282    and with the Mozilla VLC web browser plugin.
283
284 Access:
285  * Fix the Audio CD crash when looking for CDDB metadata on Windows
286
287 Decoders:
288  * Support for MPC SV7 and SV8 on Windows and Mac OS X (Unix was already working)
289  * Enabled FluidSynth MIDI playback plugin on Mac OS X
290  * Faster VP8/Webm decoding with recent codecs libraries
291  * Fix heap corruption in CD+G decoder - CVE-2011-0021 / VideoLAN-SA-1101
292
293 Demuxers:
294  * Fix Buffer overflow in Real demuxer - CVE-2010-3907 / VideoLAN-SA-1007
295  * Fix some asf/wmv seeking issues, notably when seek didn't go to a keyframe
296  * Support for 24-bits PCM over RTP (audio/L24)
297
298 Subtitles and renderer:
299  * Do not auto-detect .txt files for subtitles
300  * Mark more freetype options as safe
301  * Mac OS X: fixed fontconfig cache creation
302  * Fix heap corruption in subtitle decoders, potentially exploitable,
303    discovered by Harry Sintonen - sintonen at iki.fi - CVE-2011-0522
304
305 Visualization:
306  * Fix projectM visualization for Linux in all locales
307  * Fix projectM visualization support for Windows
308  * Various projectM improvements: the module should be working now
309  * Fix goom crash on Windows XP and Mac OS X
310
311 Interfaces:
312  * Qt4: fixes for media keys processing and MCE remotes
313  * Qt4: various fixes and portability improvements
314
315 Miscellaneous fixes:
316  * KDE device solid actions
317  * XDG screensaver
318  * Transcode integer overflow
319  * HTTP Icy metadata reading
320  * Windows: revert to 1.1.4 performance timers
321
322 Translations:
323  * Update translations for Chinese, Nippon, Slovak, Estonian, Spanish, Galician,
324    Swedish, Bulgarian, French, Bengalese, German, Slovak, Japanese, Dutch,
325    Polish, Hungarian, Indonesian, Sinhala and Irish
326
327
328 Changes between 1.1.4.1 and 1.1.5:
329 ----------------------------------
330
331 Security:
332  * Fix a Windows crash on accessing Network Shared files/drives,
333    VideoLAN-SA-1006
334
335 Access:
336  * Support for RTP access for H264 streams by specifying the demux in the MRL
337
338 Services Discovery:
339  * Integration in the playlist, of a list of web shows, provided by channels.com
340
341 Demuxers:
342  * Game Music Emu (GME) plugin rewritten, using the proper C API
343  * DVDnav and DVDread fixes for encoding and misc issues
344  * Playback of live http .Webm streams
345  * Taglib thread-safety fix
346
347 Decoders:
348  * Fix decoding of H264 using DxVA2 using Intel IGP, thanks to the donation from
349    "Puget Systems"
350
351 Skins:
352  * Add an icon to VLC on Linux
353
354 Video Output:
355  * fix a bug that could lead to 100% CPU usage on XCB
356
357 Interfaces:
358  * fix for Qt bug where VLC didn't exit properly on some Windows XP configuration
359  * fixes on luatelnet and luarc
360
361 Miscellaneous crashes and fixes in various plugins (telnet, live555, theora and
362  TS-mux, Qt)
363
364 libLVC:
365  * add libvlc_media_new_fd() to play directly file descriptors (not Win32/Win64)
366  * Miscellaneous fixes
367
368 Translations:
369  * Update translations for Walloon, Lithuanian, Spanish, Turkish, Estonian, Dutch,
370    Bengali, German, Polish, Brazillian Portuguese, Japanese, Italian, Galician,
371    French and Ukrainian
372  * Major update and activation on Windows of Modern Greek
373  * New Asturian translation
374
375
376 Changes between 1.1.4 and 1.1.4.1:
377 ----------------------------------
378
379 Mac OS X:
380  * Fixed video output on PowerPC-based Macs for videos with widths divisible
381    by 16
382  * Fixed an issue with the Equalizer's 170Hz slider
383
384 Demuxer:
385  * Fix crash when closing rtsp streams
386
387 Qt interface:
388  * Fix Windows 7 jumplists with Unicode files
389  * Various fixes for Windows
390
391 Translations:
392  * New Armenian translation
393  * Update translations for Dutch, Estonian, Lithuanian, Japanese, Nynorsk,
394    Brazillian Portuguese, Armenian, Wallon
395
396
397 Changes between 1.1.3 and 1.1.4:
398 --------------------------------
399
400 Win32:
401  * Fix a security issue when loading DLLs, especially in Qt4 and dmo modules,
402    See VideoLAN-SA-1005
403  * Fix folders opening from the interface
404
405 Translations:
406  * Update translations for Lithuanian, Bengali, Slovak, French, Dutch, Ukranian
407    Polish, Simplified Chinese, German and Galician
408
409
410 Changes between 1.1.2 and 1.1.3:
411 --------------------------------
412
413 Access and demuxers:
414  * fixes for FTP relatives path and FTP directory support
415  * fix for podcasts parsing
416  * DVD: fix an assert error and various memory leaks
417
418 Taglib:
419  * fix NULL dereferences, as reported by FortiGuard Lab,
420    CVE-2010-2937 / VideoLAN-SA-1004
421
422 Playlist:
423  * fix a regression where the wrong entry was played
424  * fix m3u playlists exports
425
426 Skins2:
427  * fix video autoresize behaviour
428
429 Translations:
430  * Update translations for Dutch, Sinhala, Hebrew, Estonian, Spanish and Bengali
431
432 Windows and Mac:
433  * Update of many codecs libraries, fixing bugs and improving speed
434
435 Mac:
436  * architecture-specific installations will now be replaced by specific updates
437
438 BSD:
439  * Add AltiVec detetion for OpenBSD/powerpc
440
441
442 Changes between 1.1.1 and 1.1.2:
443 --------------------------------
444
445 Demuxers:
446  * Avformat fps displaying fix
447  * TS, fix an issue where some programs would get dropped (fixes DVB issues too)
448
449 Audio filters:
450  * fix timestamps handling on some filters that provoked issues when playback
451    of mono streams, especially on Windows
452
453 Windows:
454  * fix a bug in direct3d video output with old nVidia drivers that broke video
455    playback with overlay (YUV->RGB)
456  * fix console output encoding
457
458 Interface and extensions:
459  * Youtube and other scripts updates
460  * Misc fixes in Qt4 (especially VLM and EPG dialogs) and MacOS interface
461
462
463 Changes between 1.1.0 and 1.1.1:
464 --------------------------------
465
466 libVLC:
467  * New capabilities for libVLC:
468    * Adjust video filter control: libvlc_adjust_Enable,
469      libvlc_adjust_Contrast, libvlc_adjust_Brightness, libvlc_adjust_Hue,
470      libvlc_adjust_Saturation, libvlc_adjust_Gamma
471    * libvlc_media_player_set_pause() can force the pause state, whereas
472      libvlc_media_player_pause() would only toggle it.
473    * libvlc_set_user_agent() configures the "user agent" strings used for some
474      protocols (HTTP, PulseAudio...). This replaces the --http-user-agent and
475      the former --user-agent libvlc_new() parameters.
476    * libvlc_video_set_callbacks() and libvlc_video_set_format() allow grabbing
477      video frames from a chosen memory location in real-time. This replace the
478      ugly --vmem-* libvlc_new() parameters in previous versions.
479      See http://wiki.videolan.org/LibVLC_SampleCode_SDL as an example.
480    * libvlc_audio_get_delay() and libvlc_audio_set_delay() configure the delay
481      between audio and video/subpictures for the current input.
482  * Various fixes and crash preventions, especially when video functions were
483    called early
484
485 Decoders/Demuxers:
486  * Fix performance issues with GPU decoding using DxVA2 using ATI graphic cards
487    You NEED ATI Catalyst 10.7
488  * Fix :program selection in TS and DVB-T
489  * Fixes and improvements for MKV, Avformat and Avcodec modules
490  * Fix mod (.xm, .s3m, .it) files support on Windows and Mac builds
491
492 Stream output:
493  * Fix h264 streaming in ts
494
495 Interfaces:
496  * Qt: fix preferences, hotkeys, messages and some fulscreen behaviour
497  * Skins: support for mousewheel in fullscreen, fix radialsliders
498  * Http: fix fullscreen toggle
499
500 Linux:
501  * Fix pulse closing
502  * VAAPI small improvements, notably for extraction mode selection
503
504 MacOS:
505  * Multiple interface and crash fixes
506  * Deinterlace selection is repaired
507  * Crashes when playing multi-channel tracks fixes
508
509 Windows:
510  * Activation of DEP on XP SP3
511  * Fix opening of .m3u and .pls playlists
512  * Fix crash when My Document isn't available
513  * Fix crash when Windows was getting into standby while playing video
514
515 Translations:
516  * Update translations for Spanish, Polish, German, Sinhala, Hungarian, Khmer,
517    Brazilian Portuguese, Chinese, Hebrew, Slovak, Galician
518
519
520 Changes between 1.0.6 and 1.1.0:
521 --------------------------------
522
523 Important changes for users:
524  * On Linux, known bugs in the ALSA library might prevent audio output.
525    Update to alsa-lib 1.0.24 or later, or use the PulseAudio output instead.
526
527 Important changes for packagers:
528  * The module cache has moved to ${libdir}/vlc/. The module cache can now be
529    generated at install time except if you use staged installation. In the
530    later case, you can generate the module cache in your post-inst script
531    by invoking 'vlc-cache-gen'. If the module cache is not present and vlc
532    can't write in ${libdir}/vlc/, it will result it vlc taking a long time to
533    launch each time.
534  * Most X11-related plugins now use XCB instead of Xlib. VLC now uses
535    - xproto,
536    - xcb, xcb-shm, xcb-xv, xcb-randr (from libxcb),
537    - xcb-keysyms (from xcb-utils),
538    - x11-xcb (from libx11) - only for GLX support.
539  * On X11 platforms, a _working_ version of xdg-screensaver is typically
540    required to inhibit the screensaver during video playback.
541
542 Access:
543  * Support for the sftp protocol
544  * Support for CDDB servers for Audio-CD on the Windows port
545  * New memory input (imem) access and access_demux module to feed VLC from data in memory
546  * New avio module to use libavformat capabilities for network streams, like rtmp://
547  * Port of the screen module from Xlib to XCB
548  * Port of the dc1394 module from libdc1394 to libdc1394 v2.0
549
550 Decoders:
551  * Support for DxVA2 for H.264 decoding on GPU on Windows Vista and 7
552  * Support for VAAPI for H.264 decoding on GPU on GNU/Linux
553  * Support for Audio/Video decoders and encoders using OpenMAX IL components for DSP
554
555  * Support PGS subtitles for Blu-Ray
556  * Support for HD-DVB subtitles - Display Definition Segment
557  * Invmem module improvements
558  * Support for Atrac1 audio codec
559  * Support for SSE3 and SSE4 capabilities in some codecs
560  * Multiple improvements for subtitles styles in .SRT and .SSA
561  * Support for native decoding of Windows Media Speech (Voice) audio codec
562  * Support for AMR-NB audio codec on the Windows and Mac port
563  * Support for Indeo5 video codec
564  * Improvements on the FLAC format (7.1 channels and 88.2/176.4/192 kHz support)
565  * Direct rendering is used more often with H.264 in avcodec module
566  * Support for MPEG-4 ALS lossless audio codec
567  * Support for VP8 codec
568  * Support for 7.1 channels in vorbis audio
569
570 Demuxers:
571  * Many fixes on Matroska support (notably seeking) and support for Webm format
572  * Support for .aob files from DVD-Audio (MLP and LPCM) (Full disc support is NOT present yet)
573  * Support for ADPCM in .flv streams
574  * Support for TwinVQ (.vqf) and AMV (.amv) files
575  * Various EGP improvements
576  * Support for embedded subtitles in OpenDML and legacy .avi files
577  * Metadata and cover art improvements
578
579 Playlist:
580  * WPL and ZPL playlist support
581  * Lua scripts for Mpora, Vimeo playback and Rockbox FM radios
582  * New Play-And-Pause function to stop playback on latest video image
583  * Podcast images are now displayed
584
585 Video Output:
586  * Rewrite of the video output core and most video outputs
587  * Added desktop mode to the Direct3D output module. It differs from DirectX
588    desktop mode, because it hides the desktop icons, but reacts to mouse clicks.
589  * New x11, glx and xv modules based on XCB
590  * New deinterlacing modes based on yadif and yadif(x2)
591  * New audio/video filter to show audio level on the video output
592  * Enhanced AtmoLight filter with hardware support for
593      Classic AtmoLight (http://www.vdr-wiki.de/wiki/index.php/Atmo-plugin)
594      Quattro AtmoLight (use just 4 Classic AtmoLights as one)
595      MoMoLight (http://www.ambilight4pc.com/momolight/momolight.html)
596      Simple serial DMX controller (http://www.ulrichradig.de/ search for DMX)
597
598 Extensions:
599  * New content extensions lua framework
600
601 Audio filters:
602  * Chorus/Flanger audio filter
603  * 3F1R to stereo down-mix filter
604  * Dolby mixer, parameterized equalizer, trivial mixer, scaletempo, bandlimited
605    resampler, linear resampler, ugly resampler, converter_fixed, DTS to SPDIF
606    and A/52 to SPDIF filters have been upgraded to the "audio filter2" API
607  * NEON assembly audio converter module
608  * Converter filters have been rewritten and extended to support s32 as input
609
610 Service discovery:
611  * Service discoveries can now be written in lua
612  * Service discovery for Picture/Music/Video user directories
613  * Service discovery based on libudev
614  * Shoutcast Service discoveries are now removed
615
616 Encoders:
617  * x264, add psy-rd parameter and change default settings
618  * x264, add profile-limitter same way as x264.exe has, for example
619     #transcode{vcodec=h264,venc=x264{profile=baseline,level=1.2},vb=384,width=320,height=176}
620  * x264, defaults to crf=23 as x264.exe-does, if bitrate is given,
621    uses ABR and if qp-value is set uses CQP
622  * libx264-version 0.76 or higher is required
623  * x264 has tune/preset parameters supported
624
625 Stream output:
626  * New smem module, streaming to memory
627  * Allow duplicate outputs to be merged, like:
628    --sout "#duplicate{dst=transcode{vcodec=mp2v},select=es=0,dst=transcode,select=es=1}:std{...}"
629
630 Interfaces:
631  * Renamed the legacy rc, telnet and http interfaces to oldrc, oldtelnet
632    and oldhttp.
633  * rc, telnet and http are now implemented using the lua interface system.
634  * qt4 interface contains new iconview and listview mode for playlist
635
636 Visualization:
637  * Support of .milk visualization files using projectM libraries
638
639 Mac OS X Port:
640  * Vastly improved VLCKit framework
641  * A new dialog provider for libvlc-internal interaction without full interface
642  * Improved update detection and installation by using the Sparkle framework
643    by Andy Matuschak et al.
644  * New CoreText based text renderer replacing the former ATSUI renderer
645  * New Video output module (mostly targetting VLCKit)
646  * Optimised behavior when using the 2009 Apple Remote
647
648 Windows port:
649  * Integration in Windows 7 taskbar
650  * Playback of .Midi files is supported through fluidsynth's module
651
652 Maemo port:
653  * Multiple improvements for N900 compliance and efficiency
654  * Support for HW accelerated video decoding on N900
655  * Improvements to the maemo/hildon interface
656
657 Misc:
658  * new sqlite module
659  * --save-config command line option not supported anymore.
660  * Fixed and reenabled netsync module.
661  * Improved Solaris port
662
663 Bindings:
664  * new C++ wrapper around libVLC: libVLCpp
665  * phonon-VLC backend is now usable
666
667 Removed modules:
668  * csri codec: use the libass module instead.
669  * galaktos visualisation: use the new projectM module instead.
670  * showintf: Useless in Qt and on Mac OS X
671  * transrate: broken since too long
672  * Xlib x11, Xlib xvideo, Xlib glx: Use the new XCB modules instead.
673  * HAL: Use libudev instead.
674  * gtk_main, gtk_main2, gnome_main, gnome_main2 and pda interfaces
675  * WinCE, BeOS and qnx interfaces
676  * opie, qte and qte_main interfaces
677  * linear_resampler and trivial_resampler are removed: use the ugly one.
678  * XvMC accelerated modules: use VAAPI instead.
679  * MGA (Matroska) for Linux: use Linux Framebuffer (or X) instead.
680  * opengllayer: use macosx_video instead.
681  * cddax: use cdda instead.
682  * cmml and tarkin codecs are removed because they are dead codecs.
683  * realaudio codecs: use libavcodec
684  * access_file removed in favor of filesystem
685  * RTMP input and output: use avio module
686
687
688 Changes between 1.0.5 and 1.0.6:
689 --------------------------------
690
691 Access:
692  * Fix crash on FTP URI with no file path
693
694 Decoders/Packetizers:
695  * Fix overflows in A/52, DTS, MPEG Audio and subtitles support
696
697 Demuxers:
698  * Update LUA script for Youtube pages
699  * Fix crashes in AVI, ASF and Matroska files
700  * Fix crashes on malformatted ZIP archives
701  * Fix crashes and leaks in the FFmpeg/avformat plugin
702  * Fix crash on invalid XSPF playlist
703
704 X11 port:
705  * Partial Xlib threading fixes
706    More complete fixes are available in VLC 1.1.0. Please update!
707
708 Interfaces:
709  * Fix crash (use after free) in Qt4 bookmarks
710  * Fix a few crashes in Qt4 playlist
711
712 Translations:
713  * Simplified Chinese, Estonian, French, Japanese, Korean, Spanish, Swedish
714    and Walloon translations updated
715  * Sinhala translation started
716
717 Removed modules:
718  * RTMP input and output are removed due to security problems. Please update
719    to VLC 1.1.0 which provides an FFmpeg-based RTMP input if needed.
720
721
722 Changes between 1.0.4 and 1.0.5:
723 --------------------------------
724
725 Decoders:
726  * SubRip extra styles improvements
727  * Fix potential crashes in SSA and svg decoders
728
729 Mac OS X Interface:
730  * Improved support for the 2009 Apple Remote
731
732 Windows port:
733  * Use of gcc 4.4.2 to compile instead of gcc 4.2. This might slightly
734    increase performance and fix x264 issues
735
736 Translations:
737  * Portuguese Brazilian, Lithuanian, Romanian, Ukrainian, Japanese, Bengali,
738    Walloon, Galician, Danish, Khmer, Polish, Slovenian, Vietnamese, Finnish
739    Russian, Slovak translation updates
740  * New Malayalam, Macedoninan, Nynorsk translations
741
742
743 Changes between 1.0.3 and 1.0.4:
744 --------------------------------
745
746 Audio outputs:
747  * Fix deadlocks in the audio output core
748  * Make PulseAudio the default output if available
749
750 Video outputs:
751  * Fix fullscreen mode with KDE 4.3.3 and other window managers
752  * Fix incompatibility with cairo-dock and compositing
753
754 Input:
755  * Fix DVB scanning regression from VLC 1.0.3
756  * Support for XZ-compressed byte stream (LZMA algorithm)
757
758 Playlist:
759  * Support for .m3u8 playlist files (UTF-8 M3U)
760
761 Unix:
762  * Support for xcb-keysyms version 0.3.4 or higher
763  * Fix globalhotkeys on FreeBSD
764
765 Qt4 interface:
766  * Fix opening V4L version 1 devices
767  * Fix default destination ports in the streaming wizard
768
769 Translations:
770   * New Walloon translation
771   * Swedish, Ukrainian and French translation updates
772
773
774 Changes between 1.0.2 and 1.0.3:
775 --------------------------------
776
777 Video outputs:
778  * Fix video quality when resizing the video on Windows Vista and 7, due to
779    regressions in most popular drivers
780  * New deinterlacers modules based on yadif and yadif(x2) algorithms
781
782 Decoders:
783  * Windows version supports now natively the WMA Professional codec, as it
784    didn't work in the packaged version of 1.0.2
785  * Fix downmixing of particual 4.0 AC-3 audio tracks
786
787 Encoders:
788  * x264 has profile-limitter, like:
789     #transcode{vcodec=h264,venc=x264{profile=baseline,level=12}..}
790
791 Input:
792  * Update for appletrailers lua script
793  * Fixes on the RAR stream filter
794  * Fix for E-AC3 in ATSC/TS streams
795  * Various fixes for v4l and v4l2
796  * Fix a crash in mjpeg demuxer
797
798 Service discovery:
799  * New udev module for linux
800
801 Qt4 interface:
802  * Fixes on the playlist and the stream output panels
803
804 Translations:
805  * French, Galician, Korean, Polish, Russian, Romanian, Slovak and Ukrainian updates
806
807
808 Changes between 1.0.1 and 1.0.2:
809 --------------------------------
810
811 Decoders:
812  * Native support for WMA Professional, without the use of the Win32 dlls
813  * Fix issues in subtitles, especially SSA ones
814  * Various fixes on theora and ogg
815
816 Demuxers:
817  * Various fixes for EPG support in MPEG-TS demuxer
818  * Fixes for potential stack overflow in .avi, .mp4 and .asf demuxers
819
820 Access:
821  * Fixes for v4l2 devices
822  * Fixes for dvb-c channels-scanning
823
824 Qt Interface:
825  * Fix some playlist sorting issues
826
827 Mac OS X Interface:
828  * Fixed a crash when updating VLC
829  * Fixed a crash related to QTKit when opening video files (10.6 only)
830  * Added the ability to play 2nd media in sync to the primary item (input-slave)
831  * Added the "Quit after Playback" feature
832
833 Mac OS X Port:
834  * The "Delete Preferences" script is now delivered as a Universal Binary
835    with native code for PowerPC, Intel and Intel 64bit
836  * Full 64bit runtime compatibility on both Mac OS X 10.5 and 10.6
837    - no support for Goom and SDL
838    - limited text rendering support
839    - This port is still considered as EXPERIMENTAL despite its binary release.
840
841 Encoders:
842  * MPEG2 transrate stream output removed
843  * x264 default-values closer to x264.exe defaults.
844  * x264 rc-behaviour fixes:
845    - if user defines qp-value, CQP-mode is used
846    - otherwise if user defines vb=0, CRF-mode is used
847    - otherwise ABR-mode is used
848  * x264 set vbv-bufsize/vbv-maxsize better if user hasn't defined these:
849    - ABR mode set vbv-max-bitrate=bitrate
850    - vbv-bufsize is bitrate * seconds between keyframes (keyint/fps)
851
852
853 Playlist:
854  * Lua scripts for Mpora and Vimeo playback
855
856 Unix builds:
857  * Various fixes to enable 1.0 to build on Solaris and OpenBSD
858
859 Translations:
860  * New Kazakh and Croatian translations
861  * Lithunanian translation is available on Windows
862  * Galician, Korean, Nepali, Vietnamese, Ukrainian, Portuguese Brazilian,
863    Arabic and French translation updates
864
865
866 Changes between 1.0.0 and 1.0.1:
867 --------------------------------
868
869 Demuxers:
870  * Fix wmv/asf issues that caused audio to drop
871  * Various fixes for ac3, mp3, dts and stability for wav format
872  * Fix seek in RTSP in conformity to RFC 2326
873  * Fix Dailymotion access script
874  * Fix crashes in xspf files handler
875  * Fix seeking and timing issues in some flv files on Windows version
876
877 Access:
878  * Add extra caching for files on network shares
879  * Prevent integer underflow in Real pseudo-RTSP module, discovered by tixxDZ, DZCORE Labs, Algeria
880
881 Decoders:
882  * Fix seeking in mpeg2 video files
883  * Improve SSA subtitles rendering
884  * Update most codecs for the Windows and Mac version
885
886 Muxers:
887  * Fix sound recording of .flv files with mp3 audio
888
889 Qt Interface:
890  * Possibility to change the opacity level of the Fullscreen controller
891  * Fix various crashes and VIDEO_TS folders opening
892
893 Mac OS X Interface:
894  * Added options to disable support for Apple Remote and Media Keys
895  * Fixed options for Volume, Last.fm password and Subtitle Encoding
896  * Fixed redraw issues when autosizing the video window
897  * Preferences panel now includes help through tool-tips
898  * More reliable Information and Messages panels
899  * Fix various crashes
900
901 Windows port:
902  * The ZVBI module is now available for Windows, for complete teletext support
903
904 Translations updates for Brazillian, French, German, Korean, Norwegian Nynorsk, Lithuanian
905
906
907 Changes between 0.9.10 and 1.0.0:
908 ---------------------------------
909
910 Important notes:
911 ----------------
912  * Alsa and OSS audio capture has been removed from the v4l and v4l2 accesses.
913    See 'Access:' for more info.
914  * Support for Mac OS X 10.4.x was dropped due to its technical limitations
915
916 Playback:
917  * Instantaneous pausing
918  * Frame-by-Frame playback
919  * Finer speed control
920  * On-the-fly recording for all medias
921  * Timeshift for most medias
922  * RTSP trickplay support
923  * Subtitles core improvements and fixes
924
925 Decoders:
926  * New AES3 (SMPTE 302M) decoder
927  * New Dolby Digital Plus - E-AC-3 (A/52b) decoder
928  * New True HD/MLP decoder and parser
929  * New Blu-Ray Linear PCM decoder
930  * New QCELP (Qualcomm PureVoice) decoder
931  * Improved Real Video 3.0 & 4.0 decoder
932  * New WMA v1/2 fixed point integer decoder
933  * Closed Captions using the SCTE-20 standard are now correctly decoded
934  * Improvement of WavPack decoder to support all integer modes and float mode
935  * Corrections on 5.1 and 7.1 channel decoding and ordering
936
937 Demuxers:
938  * Support for Dirac, MLP and RealVideo in Matroska files
939  * Major improvements in RealMedia files opening (.rm and .rmvb)
940  * Improvements of the TS demuxer for M2TS files from Blu-Ray and AVCHD
941  * Metadata for mod files are supported
942  * GSM codecs in Wav files are supported
943  * New raw audio demuxer supporting raw PCM streams
944  * New Dirac demuxer for raw Dirac streams
945
946 Encoders:
947  * Dirac encoding using libdirac (supported in Ogg and in TS)
948  * Shine mp3 fixed-point encoder
949
950 Access:
951  * RTSP authentication with Darwin Streaming Server
952  * On-the-fly gzip and bzip2 file decompression (except on Windows)
953  * Playback for video in uncompressed multi-RAR archives
954  * DVB-S and ATSC cards support on Windows
955  * New OSS and Alsa accesses. The v4l2 and v4l modules no longer support
956    OSS or Alsa audio input. Use --input-slave alsa:// or oss:// if needed.
957  * DVB scanning on linux
958  * EXPERIMENTAL Blu-Ray Disc and AVCHD Folders support
959  * On-the-fly zip file decompression and browsing (MRL of the form
960    zip://file.zip!/file.avi to specify the file - the development form of
961    zip://file.zip|file.avi is not supported anymore)
962  * Opening of any file descriptor using 'fd://'
963  * MTP device access on Unix
964  * CD-Text support on the cdda module (CD-Audio)
965  * :start-time and :stop-time can handle sub-second values
966
967 Inputs:
968  * Mouse cursor support in x11 and win32 screen modules
969  * Screen module now features partial screen capture and mouse following on
970    Windows and Mac OS X.
971
972 Playlist:
973  * Export the playlist in HTML
974  * Lua script for BBC radio playback
975  * Better metadata handling and reading
976
977 Linux/Windows interface:
978  * Global Hotkeys on Windows and Linux
979  * Various fixes for skins2 interface
980  * Recently played items list
981  * Interface toolbar customizations
982  * Various Improvements on the Qt interface:
983     - More menus actions
984     - Finer speed slider
985     - Improvements on many dialogs
986     - New dialog for plugins listing
987     - Fixed-size mode for videos
988     - Better Teletext, trickplay and encrypted streams control
989  * Better integration in GTK environments
990
991 Mac OS X Interface:
992  * Controllable by the Media Keys on modern Apple keyboards (brushed Aluminium)
993  * Reveal-in-Finder functionality for locally stored items.
994  * Easy addition of subtitles through the Video menu
995  * Additional usability improvements
996
997 Stream output:
998  * Restored the old mpeg2 transrating module.
999  * Multiple bridge-in instances are now possible.
1000  * bridge-in can be used to configure a placeholder stream.
1001  * Remote Audio Output Protocol (AirTunes) module.
1002  * Fixed mosaic memleak. Mosaics are now usable again.
1003
1004 Maemo Port:
1005  * New Maemo port with:
1006    - an interface based on Hildon framework.
1007    - scaler based on the swscale_nokia770 library.
1008
1009 Windows CE Port:
1010  EXPERIMENTAL work for the winCE port has been done.
1011
1012 Mac OS X Port:
1013  * EXPERIMENTAL 64bit support
1014  * Speed improvements by using llvm-gcc
1015  * New document icons by Dominic Spitaler
1016  * Support for latest iSight models
1017
1018 Audio output:
1019  * Removed obsolete Esound and aRts plugins
1020  * Surround support for PulseAudio
1021
1022 Video output:
1023  * Effects (cube, torus, etc.) removed from OpenGL video output
1024  * Video is able to stay in original size and to zoom in fullscreen
1025    (hotkey 'o') while keeping black borders
1026  * Image video output has been rewritten into a video-filter named 'scene'.
1027    The old image video output has been removed.
1028  * Support for scaling and converting video chromas with FFMPEG imgresample was
1029    withdrawn due to bugs. Please use the newer FFMPEG swscale instead.
1030
1031 Miscellaneous:
1032  * Invmem, a fake codec to display images from external applications
1033
1034 New Localization:
1035  * Khmer
1036  * Mongolian
1037  * Sorani
1038
1039
1040 Changes between 0.9.9a and 0.9.10:
1041 --------------------------------------
1042
1043 HTTP Interface:
1044  * Fixed default ACL
1045
1046 Mac OS X:
1047  * Fixed crashes on multi-screen setups
1048  * Corrected volume and subtitle encoding options in the Preferences
1049  * Improved Information panel behavior, when playlist is not displayed
1050  * Fixed QTCapture input support for the latest iSight models
1051  * Added a menu-item to unlock the video window's aspect ratio
1052  * Fixed redraw issues when autosizing the video window
1053  * Updated libpng, libgpg-error, libgcrypt, fribidi
1054
1055 Various fixes to the following modules:
1056  * access:
1057    - HTTP, SMB
1058    - updated and additional access scripts (BBC radio, dailymotion, ...)
1059    - Prevent integer underflow in Real pseudo-RTSP module, discovered by tixxDZ,
1060      DZCORE Labs, Algeria
1061  * stream out:
1062    - RTP, RTSP VoD, Mosaic Bridge
1063  * decoder:
1064    - TSCC
1065
1066
1067 Changes between 0.9.9 and 0.9.9a:
1068 ---------------------------------
1069
1070 Mac OS X:
1071  * Updated multiple 3rd party libraries to keep in sync with the Win32 port
1072  * Playback fixes for PowerPC-based Macs
1073
1074
1075 Changes between 0.9.8a and 0.9.9:
1076 ---------------------------------
1077
1078 Decoders:
1079  * Experimental new decoder for Real Video 3.0 & 4.0
1080
1081 Demuxers:
1082  * Various fixes related to real demuxer
1083
1084 Mac OS X Interface:
1085  * Fixed circumstances, which could lead to an empty Information panel
1086    - Note that VLC will show information on the currently _selected_ item
1087      instead of the currently _playing_ item, if the playlist is visible in the
1088      main controller window.
1089  * Fixed multiple UTF8 issues in the Streaming / Exporting Wizard
1090
1091 Mac OS X Port:
1092  * Improved video playback performance on Intel-based Macs
1093
1094 New Localizations:
1095  * Indonesian
1096  * Bengali
1097  * Updates of other localizations
1098
1099 Various bugfixes:
1100  * Support for receiving RTP packets on odd port numbers.
1101  * Lots of small bugfixes.
1102  * Correct Fullscreen behaviour on Multi-Screen setups on Windows
1103  * Telnet fixes on Windows
1104  * Resampling fixes when transcoding
1105
1106
1107 Changes between 0.9.6 and 0.9.8a:
1108 ---------------------------------
1109
1110 Security update:
1111  * Fixed buffer overflow in Real demuxer (SA-0811, CVE-2008-5276)
1112
1113 Bunch of small bugfixes.
1114
1115
1116 Changes between 0.9.5 and 0.9.6:
1117 --------------------------------
1118 New Localizations:
1119  * Ukranian
1120
1121 Security updates:
1122  * Fixed overflow in CUE support from VCD access (SA-0810, CVE-2008-5032)
1123  * Fixed overflow in RealText subtitles support (SA-0810, CVE-2008-5036)
1124
1125
1126 Changes between 0.9.4 and 0.9.5:
1127 --------------------------------
1128 Security updates:
1129  * Fixed buffer overflow in TiVo demuxer (SA-0809, CVE-2008-4686, CVE-2008-4654)
1130  * Fixed libpng CVE-2008-3964 in Win32 and MacOS builds
1131
1132 Features:
1133  * Closed Caption EIA 608/708 parsing enabled for libmpeg2
1134
1135 Various bugfixes:
1136  * Fixed various potential crashes and memleaks
1137  * Fixed issues with reading from files (especially non-local)
1138
1139 Windows port:
1140  * Fix bug where interface was "eating" some media keys
1141  * Fix some crashes in DirectShow access
1142
1143 Qt Interface:
1144  * Fix bug when the resetting of preferences didn't reset the dialog states
1145  * Right-click menu to select playlist columns reenabled
1146  * Various fixed in playlist
1147
1148 Access:
1149  * MMAP module is now deactivated by default
1150
1151 Translations:
1152  * Update of Brazillian, Swedish translation
1153
1154
1155 Changes between 0.9.3 and 0.9.4:
1156 ------------------------------------
1157 Various bugfixes:
1158  * Crashes fixed in ogg, vobsub, dvdread
1159  * Fixes several memory leaks.
1160
1161 Mac OS X port:
1162  * Apple machines without Quartz Extreme are no longer supported (use 0.9.2 or earlier )
1163  * Fixed a crash with deletion of old preferences.
1164  * Fixed targetname for downloaded updates
1165
1166 Windows port:
1167  * Stability fix for the video output.
1168
1169
1170 Changes between 0.9.2 and 0.9.3:
1171 --------------------------------
1172
1173 Various bugfixes:
1174  * Fixed DTS channel order on 5.1 systems
1175  * Fixed pausing behavior for subtitles and for Audio-CD
1176  * Multiple subtitles and podcast fixes
1177  * Various crashes fixed in PS, SSA, mkv, xspf, freetype
1178  * Fixed update system bugs
1179  * Other bug fixes (dvd language selection, subtitle colours, HTTP keep-alive...+)
1180
1181 Mac OS X port:
1182  * Fixed ffmpeg slowness on PowerPC-based Macs
1183  * Fixed crash on startup when installed on old preferences
1184  * Fixed bug in directory opening on Mac OS X
1185  * Fixed font selection in the Simple Preferences
1186  * Thicker border to the subtitle renderer
1187  * Fixed the appearance of playlist items in the Streaming/Transcoding Wizard
1188  * Fixed AC3 passthrough on Mac OS X
1189  * Fixed behavior of the Volume Normalizer settings on Mac OS X
1190  * Removed the deprecated QuickDraw video output module to avoid crashes on
1191    modern Mac OS X versions
1192
1193 Windows port:
1194  * Fixed sensitivity of Fullscreen Controller
1195  * Fixed error messages on startup when VLC wasn't correctly uninstalled
1196    before installation
1197  * Fix showing of controller when returning from fullscreen playback
1198  * Multiple directory and path location fixes.
1199
1200 Qt4 interface:
1201  * Added Faster/Slower icons to the controller panel
1202  * Fixed lost playlist columns when switching the playlist view
1203  * Added needed options to Simple preferences (to avoid NVIDIA drivers issues)
1204  * Fullscreen controller: added time label, remembering of last position
1205  * Fixed drag'n drop behaviour on the playlist
1206  * Multiple other fixes (Enter hotkey in preferences, Skins selection...)
1207
1208
1209 Changes between 0.9.1 and 0.9.2:
1210 --------------------------------
1211
1212  * Restored the old behavior of --sout-keep. It is now de-activated by default.
1213  * Skins2 interface repaired on Windows.
1214  * Multiple bugfixes.
1215
1216
1217 Changes between 0.9.1 and 0.9.0:
1218 --------------------------------
1219
1220  * Multiple bug fixes.
1221
1222
1223 Changes between 0.8.6i and 0.9.0:
1224 ---------------------------------
1225
1226 Important notes:
1227 ----------------
1228  * This release will need Windows 2000 and Mac OS X 10.4 (Tiger), or more
1229    recent to work correctly
1230  * The HTTP interface is now only available on the local machine by default.
1231    If you want to make it available from other machines, you will have to
1232    edit the ".hosts" file.
1233    - On UNIX/Linux, the file is in /usr/share/vlc/http/.hosts
1234      If you're using the old http interface, it's located in
1235      /usr/share/vlc/http/old/.hosts
1236    - On Windows they are in C:\Program Files\VideoLAN\VLC\http\.hosts and
1237      C:\Program Files\VideoLAN\VLC\http\old\.hosts
1238    - On Mac OS X, you can find it in VLC.app/Contents/MacOS/share/http/.hosts
1239      and respectively in VLC.app/Contents/MacOS/share/http/old/.hosts
1240  * This version of VLC contains a new interface for Windows and Linux.
1241    This interface has a fullscreen controller and simplified preferences.
1242    This interface lacks the "Streaming Wizard" that used to be present in VLC
1243    0.8.6, but provides basic profiles.
1244  * The behavior of --sout-keep was changed. It's now activated by default.
1245  * The marq, mosaic and logo commands in the rc interface changed. They
1246    now require a target name as their first argument. Example:
1247    vlc --sub-filter "marq@test{marquee=Hello}" -I rc <somevideo>
1248    You can then use commands like: @test marq-marquee Goodbye
1249    If you didn't name the object using @test, its name will default to the
1250    plugin name (hence 'marq') in this example.
1251    These new commands are also available in the telnet interface.
1252  * The "rtp" access output module has been removed.
1253    Please use the RTP stream output instead, e.g.:
1254      Old: '#std{access=rtp,mux=ts,dst=239.255.1.2:5004,sap}'
1255      New: '#rtp{mux=ts,dst=239.255.1.2,port=5004,sap}'
1256  * You now need to append --m3u-extvlcopt to your command line to enable
1257    EXTVLCOPT options parsing in m3u playlists. Note that only a limited set
1258    of options is available to m3u playlists (CVE-2007-6683).
1259  * The old access:url syntax is no longer supported to resolve ambiguities
1260    with some file names. Use access://url instead.
1261     E.g.:  vlc:quit -> vlc://quit ;
1262            udp:@239.255.12.12 -> udp://@239.255.12.12
1263  * The ffmpeg module has been removed and replaced by the new avcodec,
1264    avformat, swscale (or imgresample if you use a swscale-less ffmpeg build)
1265    and postproc modules.
1266  * The web plugins ActiveX (IE)/Firefox/Mozilla/Safari now recognize the
1267    following states: IDLE/CLOSE=0, OPENING=1, BUFFERING=2, PLAYING=3, PAUSED=4,
1268    STOPPING=5, FORWARD=6, BACKWARD=7, ENDED=8, ERROR=9. With FORWARD and
1269    BACKWARD being reserved for future implementations and are thus not
1270    functional atm.
1271  * Croping and padding in transcode are now done using the croppadd video
1272    filter. For example:
1273    transcode{vcodec=mp2v,vfilter=croppadd{cropttop=20,cropbottom=30,paddleft=100}}
1274  * Canvas setting in transcode is now done using the canvas video filter.
1275    For example:
1276    transcode{vcodec=mp2v,vfilter=canvas{width=640,height=480}}
1277  * Glide video output module has been removed.
1278
1279 Changes:
1280 --------
1281
1282 Security updates:
1283  * Updated libfreetype on Windows and Mac OS X (CVE-2008-1806, CVE-2008-1806,
1284    CVE-2008-1807)
1285  * TTA Parser improvements (CVE-2008-3732)
1286  * MMS Access Module improvements (CVE-2008-3794 )
1287
1288 Playlist:
1289  * Vastly improved playlist support:
1290     * Media library creation to save all your playlist items
1291     * "Live search"
1292     * Shoutcast TV listings
1293     * Audioscrobbler/Last.FM support
1294  * Album art support
1295  * User definable Lua playlist scripts. See share/lua/playlist/README.txt
1296    (Default scripts open YouTube, DailyMotion, metacafe, Google Video and
1297    lots of other URLs)
1298  * User definable Lua album art fetcher scripts. See share/lua/meta/README.txt
1299
1300 Inputs:
1301  * Video for Linux 2 (V4L2) input support
1302  * UDP-Lite transport for RTP/AVP
1303  * DCCP transport for RTP/AVP
1304  * Proxy support for MMSH stream
1305  * JACK audio input support
1306  * Input run time option (improved live stream recording)
1307  * BDA devices access module for DVB-C/S/T capture cards on Microsoft Windows
1308  * Re-written Screen access module for Mac OS X
1309    using OpenGL instead of QuickDraw
1310  * Screen module now supports partial screen capture and mouse following on X11.
1311  * Experimental EyeTV access module
1312    This requires the user to install a plugin to EyeTV.app
1313    (available as a separate download).
1314  * Simple RTP input (with MPEG A/V, G.711 and PCM support).
1315  * RTMP input support
1316  * QTKit-based Input module for Mac OS X allowing display and streaming of video
1317    taken from all iSight-labelled video cameras (no audio support)
1318  * HTTP access now supports gzip compressed data and Digest Access
1319    Authentication.
1320  * New options to reduce latency between arrival of raw data and display of
1321    frames. (--auto-adjust-pts-delay and --use-stream-immediate)
1322
1323 Demuxers:
1324  * MP4 gpac and Apple chapter support
1325  * Fixed playback of AIFF stereo files
1326  * Fixed audio glitch on seek
1327  * Improved FLAC demuxer (duration / current time / meta data)
1328  * AAC tags support
1329  * APEv1/2 tags support
1330  * Improved ID3v2 tags support
1331  * Improved Ogg/Vorbis tags support
1332  * Raw video support
1333  * Standard MIDI File (types 0 & 1) support
1334  * TiVo Series 2 support
1335  * CD+G karaoke Files support
1336  * MXF files support
1337  * OMA support
1338
1339 Decoders:
1340  * VP60/VP61/VP6F/VP62 support
1341  * Flash Screen Video support
1342  * CamStudio Screen Video support
1343  * DosBox Capture support
1344  * Karl Morton's Video support
1345  * limited atrac3 support
1346  * Fraps support
1347  * Fluidsynth MIDI software synthesis (with external sound fonts)
1348  * New codec FOURCCs to support more specific files:
1349    Avid, FCP, Sony, Samsung, ...
1350  * H.264 PAFF support
1351  * DNxHD / VC-3 support
1352  * NellyMoser ASAO support
1353  * APE (Monkey audio) support
1354  * RealVideo support (with the RealVideo run-time)
1355  * Dirac video support using libschroedinger
1356
1357 Subtitles:
1358  * Closed Caption Decoder (DVD, ReplayTV, TiVo, DVB/ATSC)
1359  * VBI & EBU (Teletext) support (*nix, Mac OS)
1360  * Ogg/Kate subtitles support
1361  * AQTitle subtitles support
1362  * MKV USF subtitles support
1363  * HTML-based subtitles support
1364  * MPSub subtitles support
1365  * JacoSub subtitles basic support
1366  * MPL2 subtitles support
1367  * Rewrite of ASS/SSA scripts and subtitles support
1368  * PowerDivx (.psb) Subtitles support
1369  * Realtext subtitle support
1370  * DKS subtitle support
1371  * SubViewer 1.0 (SubRip09) subtitles support
1372  * Correct Right-to-left languages in subtitles support
1373
1374 Encoders:
1375  * Flash Screen Video support
1376  * Improved H.264 encoding speed
1377
1378 Video outputs and filters:
1379  * New CoreAnimation-based output module (VLCKit framework on OS X only)
1380  * Adjust, Invert and Distort (now split into Wave, Ripple, Gradient and
1381    Psychedelic) video filters can now be streamed
1382  * New puzzle video output filter
1383  * Re-written motion detection video filter
1384  * New extract video filter (extract Red, Green and Blue components from a
1385    video)
1386  * New sharpen video filter (increase the contrast of adjacent pixels)
1387  * New erase video filter (removes logos from a video)
1388  * Enhanced subtitles' renderer to support bold, italic and some HTML tags
1389    (Google Summer of Code Student project)
1390  * Support for RGBA and I420 blending.
1391    The latter improves Mosaic CPU usage *a lot*.
1392  * New transparency mask video filter (for use with the mosaic_bridge module).
1393  * New bluescreen video filter (for use with the mosaic_bridge module).
1394    This was previously part of the mosaic module.
1395  * Fixed random characters problem in RSS filter.
1396  * Add rotate-deciangle for more precision on rotate filter
1397  * Support for Intel SSE2 instruction set in chroma converters
1398  * Improved use of Intel MMX instruction set in chroma converters
1399  * New croppadd and canvas video filters.
1400
1401 Audio outputs and filters:
1402  * Replay gain support
1403  * Audio playback when going slower/faster (with pitch correction via
1404    new scaletempo audio filter)
1405  * New spatializer audio filter
1406  * Correct DTS output via S/PDIF
1407
1408 Stream output:
1409  * RTSP for TS-multiplexed broadcast streams
1410  * New RTP payload formats:
1411    * Speex voice audio codec
1412    * ITU T.140 (for text, subtitles) output
1413    * G.711 (both A-law and Âµ-law) output
1414  * UDP-Lite transport for RTP
1415  * DCCP transport for RTP
1416  * Lots of fixes for RTSP broadcasting
1417  * RTMP output
1418
1419 Interfaces:
1420  * All
1421    * New Simple Preferences dialogs showing the most important settings in an
1422      end-user suitable way.
1423    * Improved user interaction
1424    * Improved mouse gestures
1425    * Vastly improved Update checker
1426    * Full support for meta data editing (ID3v2, Ogg/Vorbis, AAC, APEv1/2)
1427  * Windows/Linux
1428    * Brand new interface for Linux and Windows, based on the Qt toolkit
1429    * Fullscreen controller (transparency on Linux+Composite)
1430  * Mac OS X
1431    * Improved video output features
1432    * Online access to VideoLAN's Help Wiki within VLC
1433    * New setting to disable the "Recent Items" service
1434    * When playing Radio (live) streams, the current track is shown correctly
1435    * Correct appearance on Macs using Aqua's graphite theme
1436    * Simplified Extended Controls panel
1437  * Ncurses:
1438    * Correctly displays wide characters when using an UTF-8 locale,
1439      if libncursesw is available.
1440    * Some nice colors if the terminal supports it (most do)
1441  * Experimental Lua interface modules. See vlc -I lua and
1442    share/lua/intf/README.txt for more info.
1443  * Unix
1444    * Option to allow only one running instance, using D-Bus interface.
1445    * D-Bus Interface implementing the MPRIS
1446      (Media Player Remote Interfacing specification), a common dbus control
1447      interface for media players that intends to become an xdg standard when
1448      finished: http://wiki.xmms2.xmms.se/index.php/Media_Player_Interfaces .
1449    * Motion module using disk accelerometers to keep video horizontal
1450    * Plugin to set Telepathy presence message using MissionControl
1451  * Fixed VLM schedule time on Linux
1452
1453 Linux Port:
1454  * VLC now complies with the XDG Base Directory Specification version 0.6
1455    http://standards.freedesktop.org/basedir-spec/basedir-spec-0.6.html
1456    (which means that VLC doesn't use the $HOME/.vlc directory anymore)
1457
1458 Mac OS X Port:
1459  * Mac OS X Framework "VLCKit" that can be used to embed VLC in third party
1460    applications (Google Summer of Code Student project, Mac OS X 10.5 only)
1461  * New text renderer based on Quartz replacing the existing Freetype solution
1462  * Complete compatibility with Mac OS X 10.5 Leopard
1463    * It is now required to compile a fully featured build
1464  * The support of Mac OS X 10.3.9 and QuickTime 6.x was discontinued.
1465
1466 LibVLC:
1467  * Event management and various improvements in libvlc
1468    (Part of a Google Summer of Code Student project)
1469
1470 New Localizations:
1471  * Finnish
1472  * Persian
1473  * Polish
1474  * Punjabi
1475  * Bulgarian
1476
1477 Developers:
1478   * LibVLC now supports externally built plugins properly.
1479     A "vlc-plugin" pkg-config package is provided.
1480   * Java bindings are now built from a separate source.
1481
1482
1483 Changes between 0.8.6h and 0.8.6i:
1484 ----------------------------------
1485
1486 Security updates:
1487  * Fixed integer overflow in WAV demuxer (CVE-2008-2430)
1488
1489 Various bugfixes:
1490  * Fixed option to use shared memory within the GLX video output module
1491  * Improved galaktos-based audio visualizations on FreeBSD
1492  * Miscellaneous bugfixes in multiple modules and in libvlc
1493    (transcode stream output, OSD menu video filter, VCD input,
1494     SAP services discovery, http control interface)
1495  * Updated Polish translation
1496
1497
1498 Changes between 0.8.6g and 0.8.6h:
1499 ----------------------------------
1500
1501 Security updates:
1502  * Updated GnuTLS and libgcrypt on Windows and Mac OS X (CVE-2008-1948,
1503    CVE-2008-1949, CVE-2008-1950)
1504  * Updated libxml2 on Windows and Mac OS X (CVE-2007-6284)
1505
1506 Goodies:
1507  * Updated libebml and libmatroska on Mac OS X. Reliability improvements.
1508  * Miscellaneous bugfixes in multiple modules and in libvlc
1509    (ftp access, record access filter, video filters, RC interface,
1510     playlist demuxer, IP networking, MPJPEG muxer, stream outputs)
1511  * Improved support for MPEG2 content created by Final Cut Pro
1512  * More reliable audio reception for MPEG TS streams
1513  * Fixed a regression in 0.8.6g where usage of the snapshot feature could lead
1514    to an unexpected application termination
1515  * New Serbian translation
1516  * Updated Romanian translation
1517
1518
1519 Changes between 0.8.6f and 0.8.6g:
1520 ----------------------------------
1521
1522 Security updates:
1523  * Removed VLC variable settings from Mozilla and ActiveX
1524    (CVE-2007-6683, VideoLAN-SA-0804)
1525  * Removed loading plugins from the current directory
1526    (CVE-2008-2147, VideoLAN-SA-0805)
1527  * Updated libpng on Windows and Mac OS X (CVE-2008-1382)
1528  * Fixed libid3tag denial of service (CVE-2008-2109)
1529  * Fixed libvorbis vulnerabilities (CVE-2008-1419, CVE-2008-1420, CVE-2008-1423)
1530  * Fixed speex insufficient boundary check (CVE-2008-1686, oCERT-2008-004)
1531
1532 Various bugfixes:
1533  * Fixed various memory leaks, improving stability when running as a server
1534  * Fixed compilation with recent versions of FFmpeg
1535  * Correctly parses SAP announcements from MPEG-TS
1536  * Fixed AAC resampling
1537  * The Fullscreen Controller appears correctly on Mac OS X,
1538    if the 'Always-on-top' video option was selected.
1539
1540
1541 Changes between 0.8.6e and 0.8.6f:
1542 ----------------------------------
1543
1544 Security updates:
1545  * Really fixed subtitle buffer overflow (CVE-2007-6681, CVE-2008-1881)
1546  * Fixed Real RTSP code execution problem (CVE-2008-0073)
1547  * Fixed MP4 integer overflows (CVE-2008-1489, CVE-2008-1768)
1548  * Fixed cinepak vulnerabilities (CVE-2008-1769)
1549  - More information can be found in VideoLAN-SA-0801 and VideoLAN-SA-0803.
1550
1551 Various bugfixes:
1552  * The Mozilla plugin registers a usable range of MIME-types on Mac OS X
1553  * Improved VLC's video output behavior on multi-screen setups running Mac OS X
1554  * Fixed crashes in H264 packetizer
1555  * Close MMS access on network timeout
1556  * Fix some problems with AAC decoder & packetizer
1557
1558
1559 Changes between 0.8.6d and 0.8.6e:
1560 ----------------------------------
1561
1562 Various bugfixes:
1563  * Resume playback for viewing content over FTP
1564  * Fixed XShm detection with remote X11
1565
1566 Security updates:
1567  * Subtitle demuxers overflow (CVE-2007-6681)
1568  * HTTP listener format string injection (CVE-2007-6682)
1569  * Fixed buffer overflow in the SDL_image library (CVE-2006-4484)
1570  * Real RTSP overflows (CVE-2008-0225, CVE-2008-0295, CVE-2008-0296,
1571    VideoLAN-SA-0801)
1572  * Arbitrary memory overwrite in the MP4 demuxer (CORE-2008-0130,
1573    VideoLAN-SA-0802)
1574
1575 Audio filter:
1576  * Fixed DTS to S/PDIF converter
1577
1578 Audio output:
1579  * Fixed 5.1 audio on ALSA
1580
1581 Access:
1582  * Fixed some RTSP hanging and user/password passing through RTSP URLs
1583
1584 Stream output:
1585  * Fixed waiting for SPS/PPS problem in H.264 packetizer
1586
1587 Encoders:
1588  * Improved compatibility for creating H.264 video files playable on iPhones
1589  * Improved detection of optimal amount of threads for multi-threaded H.264
1590    encoding on multi-cpu systems
1591     - Note that this is used when transcode threads is set to 0 (default)
1592     - Not supported on Windows (multiple threads require manual configuration)
1593
1594 Mac OS X Interface & Port:
1595  * Restored compatibility with Mac OS X 10.3.9
1596  * Corrected behavior of the Preferences panel
1597  * VLC no longer crashes on quit while playing
1598
1599 Localization:
1600  * Updated Romanian and Polish translations
1601
1602
1603 Changes between 0.8.6c and 0.8.6d:
1604 ----------------------------------
1605
1606 Various bugfixes:
1607  * Mozilla plugin: supports a reasonable amount of MIME types on Windows
1608  * Linux: Fixed S/PDIF passthrough with ALSA
1609  * Automatic recovery on unexpected stream discontinuity (clock gap) occurrences
1610    in input
1611  * Use field order (top/bottom) for correct bob/linear deinterlacing
1612  * Fix invalid free in bookmarks loading code
1613
1614 Windows and Mac OS Binaries
1615  * FLAC Security Update (CVE-2007-4619) to prevent multiple integer overflows
1616
1617 Active X plugin:
1618  * Security update (VideoLAN-SA-0703, CVE-2007-6262)
1619
1620 Mac OS X Interface & Port:
1621  * Apple Remote support on Mac OS X 10.5 Leopard with enhanced functionality
1622  * Improved Video Output compatibility for Mac OS X 10.5 Leopard
1623  * Improved behavior of the Fullscreen Controller and mode changes between
1624    Fullscreen and Windowed Video Output
1625  * Softened the white flash artifacts that may appear during the transition of
1626    two different movies
1627  * Support for current Ogg file formats
1628  NOTE: This release requires Mac OS X 10.4 or higher.
1629        Mac OS X 10.3.9 is not supported anymore.
1630
1631 Encoders:
1632  * Improved H.264 encoding speed on Mac OS X
1633
1634 Other changes:
1635  * The automatic updating facility was removed
1636  * You now need to append --m3u-extvlcopt to your command line to enable
1637    EXTVLCOPT options parsing in m3u playlists.
1638  * RTSP server remote denial of service fixed (CVE-2007-6684).
1639
1640
1641 Changes between 0.8.6b and 0.8.6c:
1642 ----------------------------------
1643
1644 Various bugfixes, notably:
1645  * Windows Vista compatibility
1646  * Cropping in Direct3D
1647  * Fullscreen change crash on Mac OS X
1648  * RSS filter string overflow
1649  * Few memory leaks
1650  * MKV demuxer crash (related to seeking)
1651
1652 CDDA / Vorbis / Theora / SAP plugins:
1653  * Security updates (VideoLAN-SA-0702, CVE-2007-3316, US-CERT VU#200928)
1654
1655 Demuxers:
1656  * Fixed a problem with detecting embedded subtitles (GAB2 format) in AVI
1657  * Prevent WAV file integer overflow (CVE-2007-3467 & CVE-2007-3468)
1658
1659 Decoders:
1660  * Updated FLAC API compatibility
1661
1662 Input:
1663  * Support for new v4l2 encoder API
1664
1665 Localisation:
1666  * New localisation: Arabic, Persian
1667
1668
1669 Changes between 0.8.6a and 0.8.6b:
1670 ----------------------------------
1671
1672 Various bugfixes, notably:
1673  * Out-of-bound read in demuxers
1674  * Demuxers crashes (incl. CVE-2007-0256)
1675  * Mac OS X Interface crashes
1676  * VP31 decoding on Windows platforms
1677  * Direct3D Video Output modifications for Vista compatibility
1678  * Correct behaviour for feeding streams to Icecast or Shoutcast servers
1679
1680 Decoders:
1681  * Enhanced Flash Video support incl. VP61 and VP60
1682  * Teletext subtitles (telx) support
1683
1684 Webbrowser plugins:
1685  * Rectified behaviour and improved usability
1686
1687 Mac OS X Interface & Port:
1688  * Diverse usability improvements
1689  * New wizard option to embed subtitles
1690  * Screensaver/automatic sleep mode is enabled when a video is paused
1691  * Improved Delete-Preferences-Script
1692
1693
1694 Changes between 0.8.6 and 0.8.6a:
1695 ---------------------------------
1696
1697 CDDA / VCDX plugins:
1698  * Security updates (VideoLAN-SA-0701, CVE-2007-0017)
1699
1700 Mac OS X Interface:
1701  * Fullscreen controller improvements
1702
1703
1704 Changes between 0.8.5 and 0.8.6:
1705 --------------------------------
1706
1707 Playlist:
1708  * Shoutcast TV listings support
1709
1710 Input:
1711  * Support for RTSP authentication
1712  * Support for adding subtitles on the fly
1713  * Fixed MPEG-PS duration calculation
1714  * ATSC support for DVB input
1715  * Partial reading support for DVR-ms recordings
1716  * Partial reading support for MXF and GXF fileformat
1717  * Improved support for Flash Video files
1718
1719 Decoders:
1720  * Native WMV9/VC-1 support
1721  * WMA Speech support (through binary codecs)
1722  * VP5/VP6 - Flash Video support (not VP61)
1723  * The True Audio Lossless codec support
1724  * Matroska WavPack support
1725  * Improved H.264 support (interlaced, speed improvements etc but no PAFF)
1726  * Fixed a problem with MPEG2 field pictures
1727  * Fixed swapped colors on DVB subtitles
1728
1729 Video output:
1730  * Additional OpenGL effects (cylinder, torus, sphere, ...)
1731  * Experimental Direct3D 9 video output (win32). Best served on Vista :)
1732  * Improved libcaca support
1733
1734 Interfaces:
1735  * All
1736    * New hotkeys for crop and zoom
1737    * Support for snapshots from the HTTP interface
1738  * Windows
1739    * Systray support in skins
1740  * OS X
1741    * Support for Apple Remote control
1742    * Fullscreen controller panel (artwork by Simon Damkjær Andersen)
1743    * New playmode buttons (artwork by Simon Damkjær Andersen)
1744    * right/ctrl-click menu in video outputs
1745    * Main Menu uses autohide when playing videos in fullscreen mode
1746  * Linux
1747    * Notifications using notification-daemon
1748
1749 Windows port:
1750  * Support for Unicode filenames (Windows NT and above)
1751    Windows 9x/ME users:
1752      - Please note that these versions of Windows are not officially supported
1753      - Unicode support for Windows 9x/ME applications is available through the
1754        Microsoft Layer for Unicode available from the following location:
1755        http://www.microsoft.com.nsatc.net/globaldev/handson/dev/mslu_announce.mspx
1756        Download the MSLU package (unicows) and extract the content into the folder
1757        C:\Windows\System
1758  * Fixed IPv6 support on the client side
1759  * Fixed disable screensaver (Direct3D and DirectX video output)
1760
1761 Localization:
1762  * Add Czech
1763  * Add Slovak
1764  * Add Malay
1765  * Add Slovenian
1766
1767 Developers:
1768  * Updates to the libvlc API
1769  * Fixes for the mozilla and activeX plugins
1770
1771
1772 Changes between 0.8.4a and 0.8.5
1773 --------------------------------
1774
1775 Core support:
1776  * Statistics collection (bitrates, packets, connections, ...)
1777  * Support for downloading updates
1778  * Updated strings
1779
1780 Input:
1781  * Initial support for RTSP-over-HTTP (to allow NAT traversal)
1782  * Linux DV (Digital Video - Firewire) input
1783  * Improvements to the Audio CD input
1784      - Separate playlist entries for the tracks
1785      - Support for CDDB
1786  * Support for more DVB (satellite) encryption modules
1787  * Improved subtitles encoding support
1788  * Improved support for playing MP4 files from the Web
1789
1790 Decoders:
1791  * Cook (Real audio) support
1792
1793 Playlist / Services discovery:
1794  * XSPF playlist support
1795  * Podcast support
1796  * Updated Shoutcast to use new listing
1797
1798 Audio output:
1799  * New JACK audio output
1800
1801 Video output:
1802  * New video filters:
1803     - magnify: allows you to zoom on part of the image
1804     - gradient and edge detection: "cartoon-like" effect
1805     - bluescreen: overlay parts of a video transparently on another one
1806  * Logo video filter: can now loop through multiple images
1807  * RSS video filter: display feed images. Support for Atom feeds.
1808  * Improvements to the subtitles rendering
1809
1810 Stream output:
1811  * Initial support for throttling users on VOD streams
1812
1813 Interfaces:
1814  * System to inform the user and request information
1815     - HTTP authentication
1816     - Fatal errors
1817     - ...
1818  * wxWidgets
1819     - VLM (VideoLAN Media Manager) control panel
1820     - Improved media information panel (shows statistics, metadata, ...)
1821     - Drag & Drop support in the playlist
1822  * Skins2
1823     - New default skin
1824     - Support for Winamp 2 skins
1825     - Improved playlist handling
1826     - Support for popup menus, animated bitmaps, equalizer, ...
1827  * OS X
1828     - Embedded Video output
1829     - new Go-To-Specific-Time feature
1830     - Video cropping and aspect ratio changing while playing
1831     - Improved media information panel (shows statistics, metadata, ...)
1832     - support for processing multiple items with the wizard in a single run
1833     - option to save selections in the wizard for a session (default enabled)
1834  * HTTP
1835     - New default interface pages for VLC and VLM (including a mosaic wizard)
1836     - A bunch of new RPN functions
1837
1838 Windows Port:
1839  * MSN messenger "Now playing" support
1840
1841 OS X Port:
1842  * Mac-Intel compatibility
1843  * Enhanced support of various audio output devices
1844  * Growl "Now playing" support
1845
1846 *Nix port:
1847  * Ability to log to syslog
1848  * Root wrapper to avoid running VLC as root
1849
1850 Developers:
1851  * New libvlc API (not finished yet)
1852  * Java bindings
1853  * A bit more automatic testing
1854
1855
1856 Changes between 0.8.4 and 0.8.4a:
1857 ---------------------------------
1858
1859 Audio output:
1860  * Fix a52 over spdif in alsa
1861  * SPDIF output available again in the Mac OS X Audio menu.
1862
1863 Decoder:
1864  * Add support for new BMP and Cook (RealAudio G2) decoders in ffmpeg
1865  * Add support for some non-standard FOURCCs used for H.264/H.263
1866
1867 Demux:
1868  * Fix bug with some HE-AAC audio tracks
1869
1870 Services Discovery:
1871  * HAL fixes, should now work with new API
1872  * SAP, fix 20 second freeze on windows
1873  * UPnP fixes
1874  * Avahi 0.6 support
1875
1876 Interfaces:
1877  * Mac OS X
1878     - fixed encoding of H.264/H.263 content when using the wizard
1879
1880
1881 Changes between 0.8.2 and 0.8.4:
1882 --------------------------------
1883
1884 Core support:
1885  * Internal strings handling is now UTF-8 based
1886  * New OSD system
1887
1888 Video output:
1889  * Fixed problems with OpenGL output
1890  * New --monitor-par (pixel aspect ratio) option
1891  * Fixed display problems with HDTV-1080 format
1892
1893 Input:
1894  * Improved DVB support for satellite bands other than Ku-band
1895  * IPv6 and Extended passive mode support for FTP
1896  * IPv6 Source Specific Multicast support
1897  * GnomeVFS input module
1898  * Support for RTP packet reordering
1899  * Fixed syntax for FTP URLs
1900
1901 Decoders:
1902  * Support for libSDL_image to import different image types
1903  * Musepack decoder using libmpdec
1904  * QDM2 audio support (needs ffmpeg from 19th Oct 2005 or later)
1905
1906 Services discovery:
1907  * UPnP service discovery (Linux only at the moment)
1908  * Bonjour service discovery using avahi (Linux only)
1909
1910 Video filters:
1911  * RSS feed overlay
1912
1913 Audio filters:
1914 * Fixes, enhancements and new options related to the Headphone Channel
1915   Mixer and Dolby Surround
1916
1917 Stream output:
1918  * New shout output module to forward streams to icecast servers
1919  * Fixed several SAP and SDP announcement bugs
1920  * Fixed MTU handling to avoid IP fragments
1921
1922 Interfaces:
1923 - new cone icon by Richard Â¯iestad (Eurodata, retron.info)
1924  * Mac OS X
1925     - New streaming and transcoding wizard
1926     - New extended controls panel
1927     - New bookmarks window
1928     - Fixed playlist sorting
1929     - Fixed drag-and-drop inside the playlist
1930  * wxWidgets
1931     - Rename wxWindows interface in wxWidgets.
1932     - All the --wxwin-* options are now --wx-*
1933     - Support for RTP streaming in Stream Ouput dialog
1934     - Now require wx2.6 with Unicode support
1935  * Skins2
1936     - Tree playlist
1937  * HTTP
1938     - New RPN functions to control VLC features (see play-howto)
1939     - Facilities to correctly handle non-ASCII characters and spaces in
1940       the names of files
1941     - Include macro to include other files
1942     - CGI 1.0 support
1943
1944 ActiveX plugin:
1945 * Should now work outside IE as well
1946
1947 Mac OS X port:
1948 * New script to delete the preferences automatically
1949
1950 Windows port:
1951 * Fixed bandwidth problems of HTTP streaming
1952 * Fixed audio problems with DirectX audio output
1953
1954 Translations:
1955  The following languages were added:
1956  * Galician
1957  * Korean
1958  * Romanian
1959  * Simplified Chinese
1960  The following languages were re-added:
1961  * Swedish
1962
1963
1964 Changes between 0.8.1 and 0.8.2:
1965 --------------------------------
1966
1967 Core support:
1968  * Rewrite of the playlist
1969     - Tree structure
1970     - Input preparsing (for meta-data)
1971     - Grouping (by artist, ...) support
1972  * Preferences improvements:
1973     - New organization, designed to improve usability
1974     - New configuration types (list of modules, ...)
1975  * XML parsers
1976  * Core image manipulation support
1977  * Client-side SSL/TLS support
1978  * SSL Client certificates checking support (allows for secure VoD)
1979  * Renamed --spu-channel to --sub-track
1980  * Renamed --spumargin to --sub-margin
1981  * Renamed --audio-channel to --audio-track
1982  * Renamed --filter to --vout-filter
1983  * filters, extra interfaces, visualizations and service discovery modules are
1984    now separated by ':' instead of ','
1985  * Access filter architecture
1986  * Track selection based on preferred language (--sub-language and --audio-language)
1987  * Zsh autocompletion for VLC's arguments
1988  * Many bugfixes...
1989
1990 Input/Demuxers:
1991  * Support for SOCKS proxy
1992  * Support for Shoutcast Meta-data
1993  * Support for (HE-)AAC raw-audio streams
1994  * Support for images on a HTTP server that get refreshed on the server
1995  * Better support for Kasenna streams
1996  * RTSP UDP->TCP rollover support
1997  * Massive Matroska improvements
1998  * Support for XA and VOC audio files
1999  * TiVo demuxer
2000  * Samba (Windows shares) access module
2001  * Improved CDDAX module (uses several playlist items)
2002  * Fixes to Linux DVB support
2003  * Fix the "negative subtitles delay" bug
2004  * Support for FTP over IPv6
2005
2006 Decoders / Encoders:
2007  * Dirac decoder and encoder
2008  * PNG decoder/encoder
2009  * Improvements to DVB subtitles encoder
2010  * Support for Apple Lossless Audio Codec
2011
2012 Access filters:
2013  * New Record and Timeshift filters
2014
2015 Services discovery:
2016  * New type of modules, that add items to the playlist
2017  * Brand new SAP module
2018      * To enable SAP, you now need to use "-S sap" or add SAP in
2019        the "Manage->Services Discovery" menu
2020      ( IPv6 SAP is now enabled by default )
2021      * Non-standard support for HTTP streams SAP announces removed
2022  * HAL (Hardware Abstraction Layer) discovery
2023  * DAAP (iTunes shares) support
2024  * Shoutcast
2025
2026 Audio output:
2027  * Support for 20/24 bits LPCM
2028
2029 Video output:
2030  * Video snapshot support (png or jpg)
2031  * Image file video output (png)
2032  * Motion detection filter (can trigger playlist actions)
2033  * Improvements to wall video filter
2034  * Support for font color and opacity
2035
2036 Stream output:
2037  * Muxers
2038     - ASF improvements
2039  * VLM / VoD
2040     - Ability to load a configuration file on startup
2041     - Seeking support in VoD streams
2042  * Mosaic (picture-in-picture system)
2043
2044 Interfaces:
2045  * wxWidgets
2046     - Redesigned playlist : add playlist, add directory, ...
2047     - Improved preferences
2048     - Improvements to the wizard
2049     - DVD, VCD and Audio CD navigation buttons
2050  * MacOS X
2051     - Redesigned playlist
2052     - Improved preferences
2053  * Skins
2054     - Support for multiple actions
2055     - Fixes
2056  * HTTP
2057     - Support for the new playlist system
2058  * Lirc
2059     - Now uses new config settings. See doc/lirc/example.lirc
2060
2061 Windows port:
2062  * Screensaver disabling fix
2063  * DirectShow tuner configuration
2064  * Support for no-decoration windows
2065
2066 MacOS X port:
2067  * Many Mac OS X 10.4 Tiger related fixes
2068  * The OpenGL video output is back
2069  * A new audio module that should work more reliable for analog audio output in various configurations.
2070    - Supports multichannel discrete analog output
2071    - Digital audio output requires you to change a preference setting because it
2072      is not yet available in the new module
2073    - Please read the README.MacOSX.rtf file for more information.
2074
2075 BeOS port:
2076  * Support for single-buffered overlay
2077
2078 Pocket PC port:
2079  * Many fixes
2080  * New interface
2081  * New video output
2082
2083 Mozilla Plugin:
2084  * Javascript fixes
2085  * Mozilla plugin for MacOS X is back (not yet distributed)
2086
2087 IE Plugin:
2088  * Brand new Internet Explorer ActiveX plugin
2089
2090 Translations:
2091  The following languages were added:
2092  * Catalan
2093  * Danish
2094  * Turkish
2095
2096
2097 Changes between 0.8.0 and 0.8.1:
2098 --------------------------------
2099
2100 Core support:
2101  * Include TLS/SSL API (on plattforms where libgnutls is available)
2102  * SSL support in the HTTP daemon (HTTP stream output and HTTP interface)
2103
2104 Windows port:
2105  * Fixed win32 multichannel audio output support (which was broken in 0.8.0)
2106  * Fixed DV and MPEG (WinTV PVR 250/350) support in the dshow input
2107  * Fixed spurious taskbar item after switching to fullscreen
2108
2109 WinCE port:
2110  * A few more updates (we still miss an interface and a fast video output).
2111
2112 Audio Output:
2113  * Portaudio audio output plugin improvements
2114
2115 Video Output:
2116  * Proper subpictures scaling using the aspect-ratio info when available
2117
2118 Demuxers:
2119  * Fixed crash with ODML avi files
2120  * Fixed autodetection of VCD/SVCD bin files
2121  * Supports Kasenna VoD (MPEG2 only) and simulcast streaming
2122
2123 Stream Output:
2124  * Encoders:
2125    * Fixed aspect ratio and interlaced support in ffmpeg encoder module
2126  * Stream output:
2127    * Support of playlist group announcement
2128
2129
2130 Changes between 0.7.2 and 0.8.0:
2131 --------------------------------
2132
2133 Core support:
2134  * Major work on libvlc. Changed/renamed/added functions
2135  * Complete switch to the new input core (better seeking, multi-input, ...)
2136  * New plugins cache to speed up launch time
2137  * New --play-and-stop feature which stops the playlist after each played item
2138  * Daemon mode (to run vlc in the background)
2139  * Major improvements to the subtitle/OSD subsystem
2140
2141 Input:
2142  * New screen capture input plugin for X11, Win32, BeOS and Mac OS X
2143     (Stream your desktop)
2144  * Improved DVD support:
2145     - uses libdvdnav for playing DVDs with menus support
2146     - uses libdvdread for simple playback with menus (eg. for streaming)
2147  * Experimental multi-input support ( use --input-slave to play with it )
2148  * Automatic MTU discovery for UDP streams
2149  * More powerful MRL syntax for DVD/VCD/CDDA access
2150     (selection of titles/chapters).
2151
2152 Demuxers:
2153  * Support for iTunes Music Store previews
2154  * Support for MJPEG webcams (i.e. AXIS cams)
2155  * Added initial mp4 and mpeg-ts text track support
2156  * Windows Media Server RTSP support
2157  * Support for MPEG TS streams with error correction (204/192 bytes TS packets)
2158  * Support for DTS audio in MPEG TS (ETSI TS 102 154 Annex G)
2159  * Skins2 .vlt file loader (only when skins2 is the current interface)
2160  * Improved Ogg demuxer
2161  * Support for MPEG PS streams with MPEG 4 video.
2162  * Support for so called AACPlus webstreams
2163
2164 Codecs:
2165  * G.726 audio support
2166  * 14496-17 MPEG TS text support
2167  * MPEG-4 text support
2168  * Vastly improved DVB subtitles decoder (ETS 300 743)
2169  * Enabled color in DVB subtitles rendering
2170  * VobSub supported both externally and in Matroska
2171
2172 Stream Output:
2173  Encoders:
2174   * Re-use audio/video/spu decoders in transcoder module. From now on,
2175      everything that is playable by VLC should be transcodable as well
2176   * Subtitles overlaying in transcoder
2177   * Subpictures overlaying in transcoder (see video output)
2178   * Frame rate selection in the transcoder
2179   * DVB subtitles encoder
2180   * MPEG 1 layer 2 audio encoder using libtoolame
2181   * Improved vorbis/theora encoding
2182  Muxers:
2183   * Text track muxing for mp4
2184   * Multipart mjpeg muxing. Your video is directly viewable in a Mozilla Browser
2185   * 14496-17 text track muxing for MPEG TS
2186   * Support for DTS audio in MPEG TS (ETSI TS 102 154 Annex G)
2187   * Teletext (0x56 descriptor) streaming support in MPEG TS.
2188   * New WAV muxer (supports multi-channel audio)
2189   * Improved ASF muxer
2190  Misc:
2191   * H.263 RTP streaming support
2192   * SDP generation outputs more compliant SDPs and can create SDP files now
2193   * Improved RTSP and VoD server (experimental)
2194
2195 Audio Output:
2196  * New audio equalizer filter
2197  * Very trivial volume normalizer
2198  * True channel downmixing when playing 5:1 material on Stereo
2199  * More gradual resampling which should improve the pitch changing effect
2200  * New audio output plugin using portaudio v19
2201
2202 Video Output:
2203  * Roku HD1000 Video output
2204  * Experimental generic OpenGL video output (X11, Win32, MacOS X)
2205    with support for effects.
2206  * Improved filter and subpictures support :
2207     - New filters can be streamed.
2208     - "Subpicture filters" to overlay subpictures on video
2209     - Centralized scaling and blending
2210  * New filters :
2211     - "time", to display current time
2212     - "marq", to display a marquee
2213
2214 Interfaces:
2215  * OSD sliders for volume and postition information
2216  * OSD icons for Play and Pause
2217  * New Streaming Wizard for Windows and Linux default interfaces (wxWindows)
2218  * A few skins2 improvements
2219  * Added search, volume, loop and random functions to the ncurses interface
2220  * Added a filesystem browser to the ncurses interface
2221  * The remote control interface can now listen for commands on sockets
2222  * Improved CORBA control module
2223
2224 Mac OS X port:
2225  * Fixed the "cannot set buffersize:[nope]" coreaudio problem
2226  * Major speed improvements to the Quartz video output
2227  * The Mac OS X interface is no longer required to display video
2228
2229 Linux port:
2230  * New galaktos visualization plugin (MilkDrop-compatible)
2231  * Experimental SVG rendering module
2232  * Support for DVB CAM modules.
2233
2234 Windows port:
2235  * DirectX Media Object decoder (allows playing some media types, like WMV3)
2236  * DirectX Media Object audio and video encoder
2237  * Fixed long standing win32 thread handles leak
2238  * Fixed problem with CPU usage with subtitles rendering
2239  * Wallpaper mode for the DirectX video output (only in overlay mode)
2240
2241 WinCE port:
2242  * Massive update (we still miss an interface and a fast video output).
2243
2244 Mozilla plugin:
2245  * Added a lot of Javascript accessible funtionality
2246  * Volume, position, length, seek etc etc etc.
2247
2248 Misc:
2249  * Server/client network synchronization module
2250  * VBrick streams fully supported
2251  * Cisco IP/TV streams supported
2252  * VLM enhancements
2253
2254
2255 Changes between 0.7.1 and 0.7.2:
2256 --------------------------------
2257
2258 Core support:
2259  * Bookmarks feature for easier seeking/access inside medias.
2260  * Support for video output embedded in interfaces.
2261  * Improved HTTP daemon.
2262  * Saved playlists now remember VLC-specific options.
2263
2264 Codecs:
2265  * New Continuous Media Markup Language (CMML) codec.
2266    (http://www.annodex.net/overview.html)
2267  * New H.261 video decoder using openmash.
2268  * H264 encoder, demuxer and packetizer.
2269  * Packetizer interfaces between demux and codec when needed
2270    (allows using ffmpeg plugin to decode MPEG streams and better aac decoding).
2271  * Support for Theora alpha3 (both decoding and encoding).
2272
2273 Input:
2274  * --start-time <sec> and --stop-time <sec> to start and stop playing a
2275    file at the specified amount of seconds. Only works with a few
2276    fileformats (avi, mov, mkv, mp4 )
2277  * Improved directory access module.
2278  * New "file-cat" option to play truncated movies.
2279  * Better handling of meta info (title, author, description, etc...).
2280  * New options to pass meta info to the input.
2281  * It is now possible to stream programs from a DVB-S/C/T stream
2282    (satellite, cable, or digital terestrial television)
2283
2284 Demux:
2285  * Annodex (http://www.annodex.net) support.
2286  * mmsh streaming fixes.
2287  * Fixed infinite loop in the AVI demux on broken/incomplete files.
2288
2289 Subtitles:
2290  * Subviewer and subviewer v2 subtitles support.
2291  * Ability to choose autodetected subtitles path.
2292  * Subtitles delay can be changed in real time with hotkeys.
2293
2294 Stream output:
2295  * Improved session announcement system.
2296  * Minimize threads usage by default.
2297  * Added faster than realtime stream output (limited by CPU) for file output.
2298  * Improved MOV/MP4 muxer.
2299  * Improved MPEG TS muxer.
2300  * Improved transrater.
2301  * Meta info options used by the muxers.
2302  * New configuration system.
2303  * Better audio channels downmixing when transcoding.
2304
2305 VideoLAN manager:
2306  * New videolan (media) manager (vlm): a little manager designed to launch
2307    and manage multiple streams from within one instance of VLC.
2308  * Supports live streams and VoD.
2309  * Supports scheduling.
2310  * Telnet interface for vlm.
2311  * HTTP interface for vlm.
2312
2313 Interfaces:
2314  * Skins II (Windows and Linux only)
2315     - Ability to embed video output.
2316     - Support for bitmap fonts.
2317     - Lots of improvements.
2318  * wxWindows (default Windows and Linux interface)
2319     - New design and set of icons.
2320     - Ability to embed video output.
2321     - Support for hotkeys.
2322     - Support for bookmarks.
2323  * Mac OS X
2324     - Support for 'groups' and playlist item properties.
2325     - Better hotkeys handling.
2326
2327 Mac OS X port:
2328  * OpenGL video output is now the default when available.
2329  * Added FAAC encoder (mp4a).
2330  * Audio output fix to work with multiple streams on a HAL device.
2331  * Possible fix for conflict with CodeTek VirtualDesktop (untested).
2332
2333 Win32 port:
2334  * DirectShow input plugin should work with more devices.
2335  * Disable monitor power down when watching movies.
2336  * Improved Windows installer.
2337
2338 Linux port:
2339  * PowerPC fixes.
2340
2341 Misc:
2342  * Improvements to the Goom visualisation plugin.
2343  * Roku HD1000 audio output.
2344
2345
2346 Changes between 0.7.1 and 0.7.1a:
2347 ---------------------------------
2348
2349 Mac OS X:
2350  * Fixed the infamous 'mp3 takes twice the CPU it should take' bug
2351  * Playing MOD files is working now.
2352
2353
2354 Changes between 0.7.0 and 0.7.1:
2355 --------------------------------
2356
2357 Core support:
2358  * Fixed a nasty bug that causes preferences not to be saved some times.
2359  * IGMPv3 support for VLC under Windows XP and Linux.
2360
2361 Codecs:
2362  * Brand new DTS Coherent Acoustics audio decoder based on libdts
2363    (http://www.videolan.org/dtsdec.html)
2364  * Fixed DTS S/PDIF output
2365  * SVCD (Philips OGT) and CVD subtitles
2366
2367 Playlist:
2368  * Internal improvments
2369  * Improved import/export
2370
2371 Input:
2372  * Experimental support for Nullsoft streaming video(.nsv) and real media(.rm)
2373    container formars.
2374  * New demux module that uses libavformat from ffmpeg. Adds support for many
2375    small and strange formats.
2376  * New PVA demux.
2377  * New MOD audio demux.
2378  * Support for DTS and A52/AC3 wav files.
2379  * Support for DTS and A52/AC3 audio CD.
2380  * New and experimental DVD input plugin with menus support (using libdvdnav).
2381  * Added back DV audio support in raw DV demuxer.
2382
2383 Stream output:
2384  * MP4/MOV muxer improvements (fast-start, aac in mov, etc...).
2385  * Fixed a nasty bug in the mpeg video packetizer.
2386  * Improved transcoding (multithreading, more tuning, etc...).
2387
2388 Service discovery:
2389  * Fixed sdp in SAP.
2390
2391 Mac OS X port:
2392  * New opengl video output plugin.
2393
2394 Win32 port:
2395  * A few improvements to the DirectShow input plugin.
2396  * Fixed ipv6 name resolution.
2397
2398
2399 Changes between 0.6.2 and 0.7.0:
2400 --------------------------------
2401
2402 Core support:
2403  * Brand new decoder/packetizer api.
2404    Adds a lot more flexibility while also simplifying the decoder plugins.
2405  * New encoder api (Ffmpeg, Vorbis, Theora, Flac and Speex encoders available).
2406  * Video outputs are recycled if possible.
2407    This removes any 'flicker' between two similiar video files.
2408  * Fixed the video filters. Video should no longer go black when using filters.
2409  * New input core. Advantages are: better seeking, more responsive, support for
2410    subtitle files at the core, and much much more.
2411
2412 Playlist:
2413  * Added a repeat mode to repeat a single file over and over.
2414  * Playlist sorting
2415
2416 Input:
2417  * RTP/RTSP support.
2418  * Fixed annoying seeking problem with Ogg files (seeking would take ages).
2419  * Support for Flac in Ogg files.
2420  * MPEG TS demuxer also handles A52 and AAC audio in DVB streams.
2421  * Rewrite of the Flac demuxer.
2422  * cddax and vcdx plugins using libcdio, libvcd and libvcdinfo. (Linux only)
2423  * Reworked DVB tuning.
2424  * Better Icecast support.
2425  * New MPEG video elementary streams demuxer.
2426  * New DTS audio elementary streams demuxer.
2427
2428 Codecs:
2429  * Support for Theora video encoding.
2430  * Support for Speex audio decoding/encoding.
2431  * Rewrite of the Flac decoder + encoding support.
2432  * Support for MPEG2 422 decoding which was recently added to libmpeg2 (cvs).
2433  * Support for AAC + SBR and proper multi-channel re-ordering.
2434  * MPEG 2.5 audio support.
2435  * Removed deprecated decoders (a52_old, mpeg_video and mpeg_audio).
2436
2437 Stream output:
2438  * Improvements to the MPEG TS muxer.
2439  * New transrating module for MPEG2 video.
2440  * Added packetization for MPEG AAC ADTS streams.
2441  * Added packetizers for Flac, Speex, Theora, LPCM, DTS and SPU streams.
2442  * Improved mp4 muxing and added AAC/MP4V support when transcoding.
2443  * Improved Ogg muxing and added Theora, Speex, Flac and subtitles support.
2444  * MPEG TS muxer follows the ATSC/DVB specs for embedded A52 audio.
2445  * --sout-keep option to keep the stream open while changing input.
2446  * Preliminary RTP support.
2447  * Fixes to SAP announces.
2448
2449 Interface:
2450  * Skins:
2451     - Bugfixes
2452     - misc improvements (eg, "stay on top" option).
2453  * New standardized and customizable hotkeys.
2454  * wxWindows
2455     - Playlist improvements (Sort, Search, mode buttons).
2456     - Improvements and help in preferences
2457     - New streaming wizard
2458     - Revised Disc Open menu
2459  * HTTP
2460     - Improvements of the standard pages
2461     - Support for new commands
2462  * OSD ( OS X and hotkeys only atm ).
2463
2464 Service discovery:
2465  * Many fixes to the SAP module
2466  * SAP now supports HTTP streams
2467
2468 Subtitles:
2469  * Text subtitles now have a black outline.
2470  * Text subtitles autodetection.
2471  * Text subtitles charset autodetection.
2472  * Text subtitles for all videofiles. Results may vary.
2473  * Text subtitles in Hebrew are supported. Arabic partially.
2474  * Automatic fontsize selection for text subtitles.
2475  * Fixed SAMI text subtitles support.
2476  * Support for subtitles in Matroska files.
2477  * Support for subtitles in DVB streams.
2478
2479 Mac OS X port:
2480  * New controller designed by Max Rudberg from www.maxthemes.com
2481  * Save playlist.
2482  * Works on 10.1.x again. Apologies for that problem.
2483  * Support for Panther.
2484  * Support for raw dumping of streams to disk.
2485  * Mozilla plugin for Mac OS X (experimental).
2486
2487 Win32 port:
2488  * New DirectShow input module (for video acquisition cards, webcams, PVRs...).
2489  * VLC can be installed as a Windows NT service.
2490  * Allow on the fly switching of the main interface.
2491  * Support for 3F2R in audio output.
2492  * New --one-instance option to "force" only one running instance of VLC.
2493  * Mozilla plugin for Windows (experimental).
2494  * Multimonitor support (untested).
2495  * Fixed nasty timing bug on some dual-cpu / P4 with hyperthreading systems.
2496
2497 Linux port:
2498  * Improved Video4Linux input. Also added support for an audio only input.
2499  * Support for real-time priority when running with root privileges.
2500  * Allow on the fly switching of the main interface.
2501
2502 iPaq port:
2503  * Brand new Gtk 2 interface
2504
2505 Miscellaneous:
2506  * Audio visual effects filters (spectrum, scope and random).
2507  * Audio visual effects filter using goom.
2508  * Spanish, Portuguese Brazilian and Hungarian translations.
2509  * libcaca video output (colored ascii)
2510
2511
2512 Changes between 0.6.1 and 0.6.2:
2513 --------------------------------
2514
2515 Core support:
2516  * Fixed a nasty regression in 0.6.1 which made some streams unplayable.
2517
2518 Stream output:
2519  * Transcoder now generates proper pts/dts thus should work a lot better.
2520  * Improved MPEG TS muxer.
2521
2522 Access input:
2523  * Support for DVB-S/C/T cards using v4l2 API for Linux 2.6.x kernels.
2524  * Few fixes to the VCD navigation.
2525
2526 Interfaces:
2527  * Support for DVD menus navigation added to the wxWindows interface.
2528
2529 UNIX ports:
2530  * ALSA multi-channel support fixed and tested.
2531  * Fixed fullscreen with gnome metacity.
2532
2533 Win32 port:
2534  * Fixed VCD support which was broken on some machines.
2535
2536 iPaq port:
2537  * Familiar interface with Gtk+-1.2 and GPE support removed (deprecreated).
2538
2539 Miscellaneous:
2540  * Text subtitles now centered on the picture.
2541  * Ffmpeg decoder now generates proper pts and can be used to play
2542    mpeg1/2 videos.
2543
2544
2545 Changes between 0.6.0 and 0.6.1:
2546 --------------------------------
2547
2548 Core support:
2549  * There should be less bogus resampling, particularly on DVDs.
2550  * VLC will now wait for the medium to wake up before starting its clock
2551    after a pause.
2552
2553 Stream output:
2554  * Added vorbis audio support in Ogg streaming.
2555  * Added vorbis audio transcoding support.
2556  * Added mp3 audio transcoding support (when ffmpeg is compiled with mp3lame).
2557 UNIX ports:
2558  * ALSA multi-channel support fixed and tested.
2559  * Fixed fullscreen with gnome metacity.
2560
2561 Win32 port:
2562  * Fixed VCD support which was broken on some machines.
2563
2564 iPaq port:
2565  * Familiar interface with Gtk+-1.2 and GPE support removed (deprecreated).
2566
2567 Miscellaneous:
2568  * Text subtitles now centered on the picture.
2569  * Ffmpeg decoder now generates proper pts and can be used to play
2570    mpeg1/2 videos.
2571
2572
2573 Changes between 0.6.0 and 0.6.1:
2574 --------------------------------
2575
2576 Core support:
2577  * There should be less bogus resampling, particularly on DVDs.
2578  * VLC will now wait for the medium to wake up before starting its clock
2579    after a pause.
2580
2581 Stream output:
2582  * Added vorbis audio support in Ogg streaming.
2583  * Added vorbis audio transcoding support.
2584  * Added mp3 audio transcoding support (when ffmpeg is compiled with mp3lame).
2585  * PS muxer can create mpeg1 files now and produce streams with system headers.
2586  * You can transcode a52 with more than two channels to mpga now.
2587
2588 Win32 port:
2589  * Fixed DVD support which was partly broken due to a bug in libdvdcss
2590  * Fixed 5.1 audio support for the sblive/audigy soundcards.
2591  * Fixed sound on Windows NT.
2592
2593 UNIX ports:
2594  * Fixed/improved ALSA support and enabled multi-channel audio output.
2595  * X11/Xvideo: Should now work on big endian machines, and you can now
2596    use the arrow keys to browse through the DVD menus.
2597
2598 iPaq port:
2599  * Gtk+2 interface called PDA
2600  * Familiar Gtk+ is now deprecreated
2601  * Codec a52, Faad2 and flac added
2602  * Video4Linux enabled (demux and transcode)
2603  * Stream Out with transcode support enabled (use codecs: HuffYuvv and A-law).
2604
2605 Interfaces:
2606  * Small updates/fixes to the wxWindows interface.
2607  * Improved HTTP remote control interface. You can now create your own HTML pages.
2608  * A new CORBA control plugin.
2609
2610 Input demux:
2611  * Improved support for the Matroska container format.
2612
2613 Miscellaneous:
2614  * Improved build system.
2615  * New video filter plugin to overlay logos.
2616  * Added support for Winamp 3 B4S files.
2617  * New subtitle module which uses freetype2 to render arbitrary fonts in any size.
2618    Should also work with languages like russion for instance.
2619
2620
2621 Changes between 0.5.3 and 0.6.0:
2622 --------------------------------
2623
2624 Core Support:
2625  * Channel Server support was removed (was deprecated)
2626
2627 Input access:
2628  * Fixed a big bug in ftp and http access that prevented many platforms (OSX most prominently) to view ftp and http streams.
2629  * Fixed large file support on Windows
2630  * Video 4 Linux support
2631  * CD Digital Audio support
2632  * Fixed IPv6 multicasting on Windows and OSX.
2633
2634 Input demux:
2635  * Better detection of AAC and mp3 files
2636  * Support for OpenDML avi files
2637  * More complete .mp4/.mov support
2638  * Very early support for the Matroska container format (don't complain if it doesn't work ;)
2639
2640 Codecs:
2641  * VLC's own MPEG1/2 decoder has been replaced with libmpeg2
2642  * Support for Sorenson 3 (SVQ3 or Quicktime content) via ffmpeg
2643  * OSX support for QDM2 and QDMC sound, often used in QT content.
2644  * Fixed a bug which was causing artefacts in DivX video (ffmpeg)
2645  * Updated our theora decoder to use the alpha 2 release of libtheora
2646  * If ffmpeg cannot keep up, skip and try to recover instead of stopping altogether
2647  * Indeo Video 3 (IV32) support for little-endian computers. (so not for OSX)
2648
2649 Interfaces:
2650  * The wxWindows interface is now fully useable as well as Unicode safe
2651  * New HTTP remote control interface
2652
2653 Stream output:
2654  * 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.
2655  * The stream output now allows to transcode content on the fly.
2656  * Fixed major bug that prevented streaming mpeg 1/2 video with pulldown content.
2657  * SAP/SDP announcing support. (both IPv4 and IPv6)
2658
2659 Miscellaneous:
2660  * New reset option for the preferences
2661  * You can set your language in the prefences
2662  * New video chroma conversion module using ffmpeg
2663  * Added a Gentoo ebuild to the distribution
2664  * Added a new smaller subtitles font (now the default) + scripts to generate your own
2665  * SAP/SDP IPv6 support
2666
2667 UNIX ports:
2668  * Basic support for the X11 Xinerama extension.
2669  * New skinable interface ported to X11.
2670  * Run opie-vlc and zaurus-vlc as GuiServer
2671
2672 Mac OS X port:
2673  * When you add several items to the playlist, they are sorted alphabetically.
2674  * New about panel and revamped preferences panel.
2675  * Fixed the deinterlace menu.
2676  * Float on top, Fit to Screen and a Transparency option for video out.
2677  * New output dialog for transcode and display while stream capabilities.
2678  * New icons by Davor Orel.
2679  * New audio resampler. Should make VLC much faster.
2680  * Fixed disappearing and crackling sound (PTS is out of range bug)
2681  * We no longer automatically save the preferences when you quit the application
2682  * Arrow keys are now use to browse the menus in a DVD
2683
2684 Win32 port:
2685  * the wxWindows interface is now the default interface
2686  * The keyboard shortcuts are now identical to the linux version
2687  * Fixed the "no sound" problem on NT4
2688  * Improved skinnable interface (it now uses the wxWindows interface dialogs).
2689  * Added support for compressed skins files (.vlt files)
2690  * Fixed SVCD chapters support.
2691  * Fixed memory leak with 5.1 audio.
2692
2693 BeOS port:
2694  * Interface localization
2695  * Screensaver disabled if playing in fullscreen
2696  * A few new keyboard shortcuts
2697  * New full-featured Preferences window
2698
2699
2700 Changes between 0.5.2 and 0.5.3:
2701 --------------------------------
2702
2703 Core Support:
2704  * fixed DTS S/PDIF output on little-endian machines
2705  * support for skins at the interface level
2706  * new OSD module using Freetype2
2707  * video outputs are now destroyed when the associated input ends
2708  * the video output takes into account the caching delay introduced at the
2709    input level before dropping out of date frames.
2710  * configuration option to disable the translation of the interface
2711
2712 Input access:
2713  * fixed HTTP redirects
2714  * support for opening an entire directory
2715  * EOF should be detected more reliably
2716  * new video4linux access plug-in
2717  * new kfir access plug-in designed to work around a bug in the kfir driver
2718
2719 Input demux:
2720  * added stream type for some Motorola MPEG-2 video encoders
2721  * fix for some ogg web radio streams
2722  * fixed reading TS streams over HTTP
2723
2724 Codecs:
2725  * support for 3ivx D4 (not previous versions)
2726  * support for '3ivd' and '3vid' encodings
2727  * support for 'MSS1' codec ( same as WMV2 )
2728  * support for SAMI subtitles (untested and incomplete)
2729  * better SSA4 subtitles recognition
2730  * new codec for raw I420 video
2731  * improvements to the libmpeg2-based MPEG video decoder
2732
2733 Interfaces:
2734  * improvements to wxWindows based interface
2735    (although it still misses some important features)
2736  * skeleton for a Gnome2/GTK2 plug-in
2737
2738 Stream output:
2739  * new HTTP output support
2740  * fixed a segfault in the AVI muxer
2741  * fixed AV synchronization issues
2742
2743 Miscellaneous:
2744  * support for oldstyle id3 genres
2745
2746 UNIX ports:
2747  * the SDL vout plug-in will now work on big-endian machines
2748
2749 Mac OS X port:
2750  * reorderable playlist
2751  * fixed the hiding of the mouse on multiple monitors
2752  * fixed a big issue with some USB speakers
2753  * support for mono audio output devices
2754  * reset the audio-device to its default mode before quitting VLC
2755  * fixed several cosmetic issues
2756  * you can drag the controller window by its background (as it should be)
2757  * the messages window remembers more lines
2758  * delay and fps can now be overruled with subtitles files
2759  * http and ogg stream output options
2760  * Apple menu and friends will now be translated as well
2761
2762 Win32 port:
2763  * new skinnable interface
2764  * the directx video output doesn't crash anymore on ctrl+alt+del events.
2765
2766 iPAQ familiar Linux port:
2767  * support for FLAC audio format
2768  * the interface adapts to the screen size/rotation
2769  * playlist
2770  * network tab in the interface
2771  * "apply" handling in preferences
2772
2773
2774 Changes between 0.5.1a and 0.5.2:
2775 ---------------------------------
2776
2777 Core support:
2778  * advanced config options are now hidden by default
2779  * new --spdif option to use the S/PDIF audio output by default
2780  * fixed a 'clicking' sound when switching between streams
2781  * new bandlimited resampler that should improve audio quality on primarily
2782    Mac OS X
2783  * fixed a problem with audio over http that caused some web radios to not work
2784  * DTS S/PDIF support
2785
2786 Codecs:
2787  * support for DV audio through the ffmpeg library
2788  * support for FLAC audio through libflac
2789  * new but basic MPEG video decoder based on libmpeg2
2790  * fixed a major bug in LPCM code (fixes a problem with iDVD disks)
2791
2792 Stream output:
2793  * support for streaming DivX 1/2/3, wmv1/2, h/i263 over MPEG-2 TS
2794  * new --ttl option for Time To Live
2795
2796 DVD support:
2797  * fixed quite a few problems with the dvd menu support
2798
2799 UNIX ports:
2800  * fixed the GNU-pth support
2801
2802 Win32 port:
2803  * multi-channel audio and S/PDIF support for both the DirectX and Waveout
2804    plugins
2805  * localization support via gettext is now fully working
2806  * rc interface is now fully useable
2807  * fixed the MSVC project files generation
2808
2809 Mac OS X port:
2810  * several fixes for multi channel audio devices. AC3 over SPDIF with
2811    M-Audio Sonica Theater still does not work. this is most likely a driver
2812    bug and has been reported to M-Audio. (Sonica, Revolution, Delta, Griffin
2813    iMate and MOTU firewire devices should work)
2814  * VLC now uses the default audio device
2815  * new info panel
2816  * very preliminary support for VLC control via applescript
2817  * support for mouse gestures
2818  * new priority scheme allowing to avoid lock-ups on low-end machines
2819
2820 Linupy port:
2821  * there is a whole new port for the linupy distribution used by o.a. the
2822    YOPY PDA. It is still experimental, please test it
2823
2824 Miscellaneous:
2825  * improved ID3 tag detection
2826  * changed several errors into warnings ; the frequently reported "this is
2827    not a PS stream, continuing" is one of these
2828  * mouse gestures work on windows and osx, but there still isn't any useful
2829    gestures
2830  * some support for .pls playlists used by shoutcast
2831
2832
2833 Changes between 0.5.1 and 0.5.1a:
2834 ---------------------------------
2835
2836 Mac OS X port:
2837  * fixed a problem that caused VLC to select the wrong language when
2838    English was set as the preferred language
2839
2840
2841 Changes between 0.5.0 and 0.5.1:
2842 --------------------------------
2843
2844 Core support:
2845  * new mouse gesture interface
2846  * audio volume can now be changed at any time, even when no file is
2847    playing
2848
2849 Input access:
2850  * various minor fixes on the network inputs
2851  * fixed some weird URL parsing problems (/Volumes/toto:tata/harry@coin.mpg)
2852  * VCD: fixed track number and chapter indexing
2853
2854 Input demux:
2855  * fixed a bad initialization in the mp4 plug-in
2856  * new --buggy-psi option for TS streams which do not update their
2857    continuity counter
2858
2859 Codecs:
2860  * support for MPEG-2 intra slice refresh (aka. Slice-I) streams
2861
2862 DVD support:
2863  * fixed a bug which turned the default interface command-line only
2864    without the user consent
2865
2866 UNIX ports:
2867  * GTK: fixed a crash when going fullscreen or changing volume from the
2868    popup menu
2869  * X11: new screen saver disabling plug-in (--extraintf screensaver)
2870  * KDE: fixed compilation with KDE 3.1
2871  * ALSA: fixed mono files output
2872
2873 Mac OS X port:
2874  * fixed a crash on start-up on some localized systems
2875  * lowered real-time priorities to avoid lock-ups on slow machines
2876  * VLC can now be made the handler of ftp http mms and udp URLs
2877  * playlist enhancements
2878  * added half, normal and double video window menu items
2879  * new step forward/step backward commands
2880  * the dock should no longer be visible in fullscreen mode
2881  * the Mac OS X binary is now compiled with Ogg/Theora support
2882  * vlc.app is now VLC.app
2883
2884 Win32 port:
2885  * fixed the "RichEdit line insertion error" bug
2886  * VLC can now be run from outside its installation directory
2887  * fixed a bug that prevented to find the default subtitle font
2888
2889 BeOS port:
2890  * smarter BeOS priorities to avoid lock-ups
2891  * few enhancements in the interface (especially the Settings window)
2892
2893 Opie port:
2894  * native video output is working again
2895  * only commandline interface support
2896  * support for MPEG4, DivX through ffmpeg package
2897
2898
2899 Changes between 0.4.6 and 0.5.0:
2900 --------------------------------
2901
2902 Core structure:
2903   * object structure which allows for full re-entrancy, known as libvlc
2904   * new audio output architecture based on filter pipelines, providing
2905     S/PDIF and multi-channel support
2906   * localization support via gettext on most architectures
2907   * new stream output architecture, allowing to use VLC to unicast,
2908     multicast or broadcast a stream to another VLC (only MPEG 1, 2 and 4
2909     and A/52 streams are supported)
2910   * build system now uses autoconf/automake/autopoint
2911
2912 Input access:
2913   * mms:// support
2914   * ftp:// support
2915   * stability fixes in the HTTP access
2916   * auto-detection of RTP encapsulation
2917   * VCD entry points support
2918   * VCD image file support
2919
2920 Input demux:
2921   * support for *.asf format
2922   * improved support for *.avi, especially over an HTTP connection
2923   * support for *.mp4 and *.mov format
2924   * support for ogg encapsulation
2925   * support for raw DV format
2926   * support for *.wav format
2927   * new demuxdump demux allowing to save a stream to a file
2928   * raw AAC support
2929
2930 Stream discovery & playlists:
2931   * support for the SAP/SDP and SLP protocols
2932   * support for .m3u file format
2933   * support for .asx file format
2934   * hack to find the streaming sources in html-pages with embedded wmp
2935
2936 Codecs:
2937   * support for the microdvd, subrip, ssa1, ssa2-4 subtitles file formats
2938     (only available with the .avi demux)
2939   * support for ADPCM audio codec
2940   * support for raw PCM data
2941   * support for Cinepak video codec
2942   * support for DV video codec via libdv or ffmpeg
2943   * support for AAC audio codec via libfaad2
2944   * support for Xvid codec
2945   * support for Xiph.org's Vorbis audio codec
2946   * support for Xiph.org's Tremor audio codec (when compiling from sources)
2947   * support for Xiph.org's Tarkin and Theora video codecs (when compiling
2948     from sources)
2949   * new codecs supported by latest ffmpeg versions: WMV, WMA, SVQ 1, H263,
2950     H263i, MJPEG A/B
2951   * fixed an endianness bug in LPCM codec
2952
2953 DVD support:
2954   * experimental preliminary support for DVD menus via libdvdplay
2955
2956 Miscellaneous:
2957   * new WxWindows interface
2958   * all interfaces allow to dynamically change the volume, the audio
2959     device and the channels configuration
2960   * headphone channel mixer with virtual spatialization effect
2961   * Mozilla plugin based on libvlc for embedded playback in webpages of any
2962     format that VLC can play
2963   * new swedish translation
2964   * enhancements of the playlist window
2965   * new messages window to see debug info
2966   * fixed a few crashes
2967
2968 iPaq port:
2969   * slider bar in GTK+/GPE Familiar interface
2970   * fixed crash on directory change in Familiar interface
2971   * added qte_main module for use in all modules that need Opie or Qte support
2972   * native video output module for Qt Embedded/Opie is not working
2973