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