]> git.sesse.net Git - ffmpeg/blob - Changelog
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / Changelog
1 Entries are sorted chronologically from oldest to youngest within each release,
2 releases are sorted from youngest to oldest.
3
4 version next:
5 - INI and flat output in ffprobe
6 - Scene detection in libavfilter
7 - Indeo Audio decoder
8 - channelsplit audio filter
9
10
11 version 0.11:
12
13 - Fixes: CVE-2012-2772, CVE-2012-2774, CVE-2012-2775, CVE-2012-2776, CVE-2012-2777,
14          CVE-2012-2779, CVE-2012-2782, CVE-2012-2783, CVE-2012-2784, CVE-2012-2785,
15          CVE-2012-2786, CVE-2012-2787, CVE-2012-2788, CVE-2012-2789, CVE-2012-2790,
16          CVE-2012-2791, CVE-2012-2792, CVE-2012-2793, CVE-2012-2794, CVE-2012-2795,
17          CVE-2012-2796, CVE-2012-2797, CVE-2012-2798, CVE-2012-2799, CVE-2012-2800,
18          CVE-2012-2801, CVE-2012-2802, CVE-2012-2803, CVE-2012-2804,
19 - v408 Quicktime and Microsoft AYUV Uncompressed 4:4:4:4 encoder and decoder
20 - setfield filter
21 - CDXL demuxer and decoder
22 - Apple ProRes encoder
23 - ffprobe -count_packets and -count_frames options
24 - Sun Rasterfile Encoder
25 - ID3v2 attached pictures reading and writing
26 - WMA Lossless decoder
27 - bluray protocol
28 - blackdetect filter
29 - libutvideo encoder wrapper (--enable-libutvideo)
30 - swapuv filter
31 - bbox filter
32 - XBM encoder and decoder
33 - RealAudio Lossless decoder
34 - ZeroCodec decoder
35 - tile video filter
36 - Metal Gear Solid: The Twin Snakes demuxer
37 - OpenEXR image decoder
38 - removelogo filter
39 - drop support for ffmpeg without libavfilter
40 - drawtext video filter: fontconfig support
41 - ffmpeg -benchmark_all option
42 - super2xsai filter ported from libmpcodecs
43 - add libavresample audio conversion library for compatibility
44 - MicroDVD decoder
45 - Avid Meridien (AVUI) encoder and decoder
46 - accept + prefix to -pix_fmt option to disable automatic conversions.
47 - complete audio filtering in libavfilter and ffmpeg
48 - add fps filter
49 - vorbis parser
50 - png parser
51 - audio mix filter
52
53
54 version 0.10:
55
56 - Fixes: CVE-2011-3929, CVE-2011-3934, CVE-2011-3935, CVE-2011-3936,
57          CVE-2011-3937, CVE-2011-3940, CVE-2011-3941, CVE-2011-3944,
58          CVE-2011-3945, CVE-2011-3946, CVE-2011-3947, CVE-2011-3949,
59          CVE-2011-3950, CVE-2011-3951, CVE-2011-3952
60 - v410 Quicktime Uncompressed 4:4:4 10-bit encoder and decoder
61 - SBaGen (SBG) binaural beats script demuxer
62 - OpenMG Audio muxer
63 - Timecode extraction in DV and MOV
64 - thumbnail video filter
65 - XML output in ffprobe
66 - asplit audio filter
67 - tinterlace video filter
68 - astreamsync audio filter
69 - amerge audio filter
70 - ISMV (Smooth Streaming) muxer
71 - GSM audio parser
72 - SMJPEG muxer
73 - XWD encoder and decoder
74 - Automatic thread count based on detection number of (available) CPU cores
75 - y41p Brooktree Uncompressed 4:1:1 12-bit encoder and decoder
76 - ffprobe -show_error option
77 - Avid 1:1 10-bit RGB Packer codec
78 - v308 Quicktime Uncompressed 4:4:4 encoder and decoder
79 - yuv4 libquicktime packed 4:2:0 encoder and decoder
80 - ffprobe -show_frames option
81 - silencedetect audio filter
82 - ffprobe -show_program_version, -show_library_versions, -show_versions options
83 - rv34: frame-level multi-threading
84 - optimized iMDCT transform on x86 using SSE for for mpegaudiodec
85 - Improved PGS subtitle decoder
86 - dumpgraph option to lavfi device
87 - r210 and r10k encoders
88 - ffwavesynth decoder
89 - aviocat tool
90 - ffeval tool
91
92
93 version 0.9:
94
95 - openal input device added
96 - boxblur filter added
97 - BWF muxer
98 - Flash Screen Video 2 decoder
99 - lavfi input device added
100 - added avconv, which is almost the same for now, except
101 for a few incompatible changes in the options, which will hopefully make them
102 easier to use. The changes are:
103     * The options placement is now strictly enforced! While in theory the
104       options for ffmpeg should be given in [input options] -i INPUT [output
105       options] OUTPUT order, in practice it was possible to give output options
106       before the -i and it mostly worked. Except when it didn't - the behavior was
107       a bit inconsistent. In avconv, it is not possible to mix input and output
108       options. All non-global options are reset after an input or output filename.
109     * All per-file options are now truly per-file - they apply only to the next
110       input or output file and specifying different values for different files
111       will now work properly (notably -ss and -t options).
112     * All per-stream options are now truly per-stream - it is possible to
113       specify which stream(s) should a given option apply to. See the Stream
114       specifiers section in the avconv manual for details.
115     * In ffmpeg some options (like -newvideo/-newaudio/...) are irregular in the
116       sense that they're specified after the output filename instead of before,
117       like all other options. In avconv this irregularity is removed, all options
118       apply to the next input or output file.
119     * -newvideo/-newaudio/-newsubtitle options were removed. Not only were they
120       irregular and highly confusing, they were also redundant. In avconv the -map
121       option will create new streams in the output file and map input streams to
122       them. E.g. avconv -i INPUT -map 0 OUTPUT will create an output stream for
123       each stream in the first input file.
124     * The -map option now has slightly different and more powerful syntax:
125         + Colons (':') are used to separate file index/stream type/stream index
126           instead of dots. Comma (',') is used to separate the sync stream instead
127           of colon.. This is done for consistency with other options.
128         + It's possible to specify stream type. E.g. -map 0:a:2 creates an
129           output stream from the third input audio stream.
130         + Omitting the stream index now maps all the streams of the given type,
131           not just the first. E.g. -map 0:s creates output streams for all the
132           subtitle streams in the first input file.
133         + Since -map can now match multiple streams, negative mappings were
134           introduced. Negative mappings disable some streams from an already
135           defined map. E.g. '-map 0 -map -0:a:1' means 'create output streams for
136           all the stream in the first input file, except for the second audio
137           stream'.
138     * There is a new option -c (or -codec) for choosing the decoder/encoder to
139       use, which allows to precisely specify target stream(s) consistently with
140       other options. E.g. -c:v lib264 sets the codec for all video streams, -c:a:0
141       libvorbis sets the codec for the first audio stream and -c copy copies all
142       the streams without reencoding. Old -vcodec/-acodec/-scodec options are now
143       aliases to -c:v/a/s
144     * It is now possible to precisely specify which stream should an AVOption
145       apply to. E.g. -b:v:0 2M sets the bitrate for the first video stream, while
146       -b:a 128k sets the bitrate for all audio streams. Note that the old -ab 128k
147       syntax is deprecated and will stop working soon.
148     * -map_chapters now takes only an input file index and applies to the next
149       output file. This is consistent with how all the other options work.
150     * -map_metadata now takes only an input metadata specifier and applies to
151       the next output file. Output metadata specifier is now part of the option
152       name, similarly to the AVOptions/map/codec feature above.
153     * -metadata can now be used to set metadata on streams and chapters, e.g.
154       -metadata:s:1 language=eng sets the language of the first stream to 'eng'.
155       This made -vlang/-alang/-slang options redundant, so they were removed.
156     * -qscale option now uses stream specifiers and applies to all streams, not
157       just video. I.e. plain -qscale number would now apply to all streams. To get
158       the old behavior, use -qscale:v. Also there is now a shortcut -q for -qscale
159       and -aq is now an alias for -q:a.
160     * -vbsf/-absf/-sbsf options were removed and replaced by a -bsf option which
161       uses stream specifiers. Use -bsf:v/a/s instead of the old options.
162     * -itsscale option now uses stream specifiers, so its argument is only the
163       scale parameter.
164     * -intra option was removed, use -g 0 for the same effect.
165     * -psnr option was removed, use -flags +psnr for the same effect.
166     * -vf option is now an alias to the new -filter option, which uses stream specifiers.
167     * -vframes/-aframes/-dframes options are now aliases to the new -frames option.
168     * -vtag/-atag/-stag options are now aliases to the new -tag option.
169 - XMV demuxer
170 - LOAS demuxer
171 - ashowinfo filter added
172 - Windows Media Image decoder
173 - amovie source added
174 - LATM muxer/demuxer
175 - Speex encoder via libspeex
176 - JSON output in ffprobe
177 - WTV muxer
178 - Optional C++ Support (needed for libstagefright)
179 - H.264 Decoding on Android via Stagefright
180 - Prores decoder
181 - BIN/XBIN/ADF/IDF text file decoder
182 - aconvert audio filter added
183 - audio support to lavfi input device added
184 - libcdio-paranoia input device for audio CD grabbing
185 - Apple ProRes decoder
186 - CELT in Ogg demuxing
187 - G.723.1 demuxer and decoder
188 - libmodplug support (--enable-libmodplug)
189 - VC-1 interlaced decoding
190 - libutvideo wrapper (--enable-libutvideo)
191 - aevalsrc audio source added
192 - Ut Video decoder
193 - Speex encoding via libspeex
194 - 4:2:2 H.264 decoding support
195 - 4:2:2 and 4:4:4 H.264 encoding with libx264
196 - Pulseaudio input device
197 - Prores encoder
198 - Video Decoder Acceleration (VDA) HWAccel module.
199 - replacement Indeo 3 decoder
200 - new ffmpeg option: -map_channel
201 - volume audio filter added
202 - earwax audio filter added
203 - libv4l2 support (--enable-libv4l2)
204 - TLS/SSL and HTTPS protocol support
205 - AVOptions API rewritten and documented
206 - most of CODEC_FLAG2_*, some CODEC_FLAG_* and many codec-specific fields in
207   AVCodecContext deprecated. Codec private options should be used instead.
208 - Properly working defaults in libx264 wrapper, support for native presets.
209 - Encrypted OMA files support
210 - Discworld II BMV decoding support
211 - VBLE Decoder
212 - OS X Video Decoder Acceleration (VDA) support
213 - compact and csv output in ffprobe
214 - pan audio filter
215 - IFF Amiga Continuous Bitmap (ACBM) decoder
216 - ass filter
217 - CRI ADX audio format muxer and demuxer
218 - Playstation Portable PMP format demuxer
219 - Microsoft Windows ICO demuxer
220 - life source
221 - PCM format support in OMA demuxer
222 - CLJR encoder
223 - new option: -report
224 - Dxtory capture format decoder
225 - cellauto source
226 - Simple segmenting muxer
227 - Indeo 4 decoder
228 - SMJPEG demuxer
229
230
231 version 0.8:
232
233 - many many things we forgot because we rather write code than changelogs
234 - WebM support in Matroska de/muxer
235 - low overhead Ogg muxing
236 - MMS-TCP support
237 - VP8 de/encoding via libvpx
238 - Demuxer for On2's IVF format
239 - Pictor/PC Paint decoder
240 - HE-AAC v2 decoder
241 - HE-AAC v2 encoding with libaacplus
242 - libfaad2 wrapper removed
243 - DTS-ES extension (XCh) decoding support
244 - native VP8 decoder
245 - RTSP tunneling over HTTP
246 - RTP depacketization of SVQ3
247 - -strict inofficial replaced by -strict unofficial
248 - ffplay -exitonkeydown and -exitonmousedown options added
249 - native GSM / GSM MS decoder
250 - RTP depacketization of QDM2
251 - ANSI/ASCII art playback system
252 - Lego Mindstorms RSO de/muxer
253 - libavcore added (and subsequently removed)
254 - SubRip subtitle file muxer and demuxer
255 - Chinese AVS encoding via libxavs
256 - ffprobe -show_packets option added
257 - RTP packetization of Theora and Vorbis
258 - RTP depacketization of MP4A-LATM
259 - RTP packetization and depacketization of VP8
260 - hflip filter
261 - Apple HTTP Live Streaming demuxer
262 - a64 codec
263 - MMS-HTTP support
264 - G.722 ADPCM audio encoder/decoder
265 - R10k video decoder
266 - ocv_smooth filter
267 - frei0r wrapper filter
268 - change crop filter syntax to width:height:x:y
269 - make the crop filter accept parametric expressions
270 - make ffprobe accept AVFormatContext options
271 - yadif filter
272 - blackframe filter
273 - Demuxer for Leitch/Harris' VR native stream format (LXF)
274 - RTP depacketization of the X-QT QuickTime format
275 - SAP (Session Announcement Protocol, RFC 2974) muxer and demuxer
276 - cropdetect filter
277 - ffmpeg -crop* options removed
278 - transpose filter added
279 - ffmpeg -force_key_frames option added
280 - demuxer for receiving raw rtp:// URLs without an SDP description
281 - single stream LATM/LOAS decoder
282 - setpts filter added
283 - Win64 support for optimized x86 assembly functions
284 - MJPEG/AVI1 to JPEG/JFIF bitstream filter
285 - ASS subtitle encoder and decoder
286 - IEC 61937 encapsulation for E-AC-3, TrueHD, DTS-HD (for HDMI passthrough)
287 - overlay filter added
288 - rename aspect filter to setdar, and pixelaspect to setsar
289 - IEC 61937 demuxer
290 - Mobotix .mxg demuxer
291 - frei0r source added
292 - hqdn3d filter added
293 - RTP depacketization of QCELP
294 - FLAC parser added
295 - gradfun filter added
296 - AMR-WB decoder
297 - replace the ocv_smooth filter with a more generic ocv filter
298 - Windows Televison (WTV) demuxer
299 - FFmpeg metadata format muxer and demuxer
300 - SubRip (srt) subtitle encoder and decoder
301 - floating-point AC-3 encoder added
302 - Lagarith decoder
303 - ffmpeg -copytb option added
304 - IVF muxer added
305 - Wing Commander IV movies decoder added
306 - movie source added
307 - Bink version 'b' audio and video decoder
308 - Bitmap Brothers JV playback system
309 - Apple HTTP Live Streaming protocol handler
310 - sndio support for playback and record
311 - Linux framebuffer input device added
312 - Chronomaster DFA decoder
313 - DPX image encoder
314 - MicroDVD subtitle file muxer and demuxer
315 - Playstation Portable PMP format demuxer
316 - fieldorder video filter added
317 - AAC encoding via libvo-aacenc
318 - AMR-WB encoding via libvo-amrwbenc
319 - xWMA demuxer
320 - Mobotix MxPEG decoder
321 - VP8 frame-multithreading
322 - NEON optimizations for VP8
323 - Lots of deprecated API cruft removed
324 - fft and imdct optimizations for AVX (Sandy Bridge) processors
325 - showinfo filter added
326 - SMPTE 302M AES3 audio decoder
327 - Apple Core Audio Format muxer
328 - 9bit and 10bit per sample support in the H.264 decoder
329 - 9bit and 10bit FFV1 encoding / decoding
330 - split filter added
331 - select filter added
332 - sdl output device added
333 - libmpcodecs video filter support (3 times as many filters than before)
334 - mpeg2 aspect ratio dection fixed
335 - libxvid aspect pickiness fixed
336 - Frame multithreaded decoding
337 - E-AC-3 audio encoder
338 - ac3enc: add channel coupling support
339 - floating-point sample format support to the ac3, eac3, dca, aac, and vorbis decoders.
340 - H264/MPEG frame-level multi-threading
341 - All av_metadata_* functions renamed to av_dict_* and moved to libavutil
342 - 4:4:4 H.264 decoding support
343 - 10-bit H.264 optimizations for x86
344 - lut, lutrgb, and lutyuv filters added
345 - buffersink libavfilter sink added
346 - Bump libswscale for recently reported ABI break
347 - New J2K encoder (via OpenJPEG)
348
349
350 version 0.7:
351
352 - all the changes for 0.8, but keeping API/ABI compatibility with the 0.6 release
353
354
355 version 0.6:
356
357 - PB-frame decoding for H.263
358 - deprecated vhook subsystem removed
359 - deprecated old scaler removed
360 - VQF demuxer
361 - Alpha channel scaler
362 - PCX encoder
363 - RTP packetization of H.263
364 - RTP packetization of AMR
365 - RTP depacketization of Vorbis
366 - CorePNG decoding support
367 - Cook multichannel decoding support
368 - introduced avlanguage helpers in libavformat
369 - 8088flex TMV demuxer and decoder
370 - per-stream language-tags extraction in asfdec
371 - V210 decoder and encoder
372 - remaining GPL parts in AC-3 decoder converted to LGPL
373 - QCP demuxer
374 - SoX native format muxer and demuxer
375 - AMR-NB decoding/encoding, AMR-WB decoding via OpenCORE libraries
376 - DPX image decoder
377 - Electronic Arts Madcow decoder
378 - DivX (XSUB) subtitle encoder
379 - nonfree libamr support for AMR-NB/WB decoding/encoding removed
380 - experimental AAC encoder
381 - RTP depacketization of ASF and RTSP from WMS servers
382 - RTMP support in libavformat
383 - noX handling for OPT_BOOL X options
384 - Wave64 demuxer
385 - IEC-61937 compatible Muxer
386 - TwinVQ decoder
387 - Bluray (PGS) subtitle decoder
388 - LPCM support in MPEG-TS (HDMV RID as found on Blu-ray disks)
389 - WMA Pro decoder
390 - Core Audio Format demuxer
391 - Atrac1 decoder
392 - MD STUDIO audio demuxer
393 - RF64 support in WAV demuxer
394 - MPEG-4 Audio Lossless Coding (ALS) decoder
395 - -formats option split into -formats, -codecs, -bsfs, and -protocols
396 - IV8 demuxer
397 - CDG demuxer and decoder
398 - R210 decoder
399 - Auravision Aura 1 and 2 decoders
400 - Deluxe Paint Animation playback system
401 - SIPR decoder
402 - Adobe Filmstrip muxer and demuxer
403 - RTP depacketization of H.263
404 - Bink demuxer and audio/video decoders
405 - enable symbol versioning by default for linkers that support it
406 - IFF PBM/ILBM bitmap decoder
407 - concat protocol
408 - Indeo 5 decoder
409 - RTP depacketization of AMR
410 - WMA Voice decoder
411 - ffprobe tool
412 - AMR-NB decoder
413 - RTSP muxer
414 - HE-AAC v1 decoder
415 - Kega Game Video (KGV1) decoder
416 - VorbisComment writing for FLAC, Ogg FLAC and Ogg Speex files
417 - RTP depacketization of Theora
418 - HTTP Digest authentication
419 - RTMP/RTMPT/RTMPS/RTMPE/RTMPTE protocol support via librtmp
420 - Psygnosis YOP demuxer and video decoder
421 - spectral extension support in the E-AC-3 decoder
422 - unsharp video filter
423 - RTP hinting in the mov/3gp/mp4 muxer
424 - Dirac in Ogg demuxing
425 - seek to keyframes in Ogg
426 - 4:2:2 and 4:4:4 Theora decoding
427 - 35% faster VP3/Theora decoding
428 - faster AAC decoding
429 - faster H.264 decoding
430 - RealAudio 1.0 (14.4K) encoder
431
432
433 version 0.5:
434
435 - DV50 AKA DVCPRO50 encoder, decoder, muxer and demuxer
436 - TechSmith Camtasia (TSCC) video decoder
437 - IBM Ultimotion (ULTI) video decoder
438 - Sierra Online audio file demuxer and decoder
439 - Apple QuickDraw (qdrw) video decoder
440 - Creative ADPCM audio decoder (16 bits as well as 8 bits schemes)
441 - Electronic Arts Multimedia (WVE/UV2/etc.) file demuxer
442 - Miro VideoXL (VIXL) video decoder
443 - H.261 video encoder
444 - QPEG video decoder
445 - Nullsoft Video (NSV) file demuxer
446 - Shorten audio decoder
447 - LOCO video decoder
448 - Apple Lossless Audio Codec (ALAC) decoder
449 - Winnov WNV1 video decoder
450 - Autodesk Animator Studio Codec (AASC) decoder
451 - Indeo 2 video decoder
452 - Fraps FPS1 video decoder
453 - Snow video encoder/decoder
454 - Sonic audio encoder/decoder
455 - Vorbis audio decoder
456 - Macromedia ADPCM decoder
457 - Duck TrueMotion 2 video decoder
458 - support for decoding FLX and DTA extensions in FLIC files
459 - H.264 custom quantization matrices support
460 - ffserver fixed, it should now be usable again
461 - QDM2 audio decoder
462 - Real Cooker audio decoder
463 - TrueSpeech audio decoder
464 - WMA2 audio decoder fixed, now all files should play correctly
465 - RealAudio 14.4 and 28.8 decoders fixed
466 - JPEG-LS decoder
467 - build system improvements
468 - tabs and trailing whitespace removed from the codebase
469 - CamStudio video decoder
470 - AIFF/AIFF-C audio format, encoding and decoding
471 - ADTS AAC file reading and writing
472 - Creative VOC file reading and writing
473 - American Laser Games multimedia (*.mm) playback system
474 - Zip Motion Blocks Video decoder
475 - improved Theora/VP3 decoder
476 - True Audio (TTA) decoder
477 - AVS demuxer and video decoder
478 - JPEG-LS encoder
479 - Smacker demuxer and decoder
480 - NuppelVideo/MythTV demuxer and RTjpeg decoder
481 - KMVC decoder
482 - MPEG-2 intra VLC support
483 - MPEG-2 4:2:2 encoder
484 - Flash Screen Video decoder
485 - GXF demuxer
486 - Chinese AVS decoder
487 - GXF muxer
488 - MXF demuxer
489 - VC-1/WMV3/WMV9 video decoder
490 - MacIntel support
491 - AVISynth support
492 - VMware video decoder
493 - VP5 video decoder
494 - VP6 video decoder
495 - WavPack lossless audio decoder
496 - Targa (.TGA) picture decoder
497 - Vorbis audio encoder
498 - Delphine Software .cin demuxer/audio and video decoder
499 - Tiertex .seq demuxer/video decoder
500 - MTV demuxer
501 - TIFF picture encoder and decoder
502 - GIF picture decoder
503 - Intel Music Coder decoder
504 - Zip Motion Blocks Video encoder
505 - Musepack decoder
506 - Flash Screen Video encoder
507 - Theora encoding via libtheora
508 - BMP encoder
509 - WMA encoder
510 - GSM-MS encoder and decoder
511 - DCA decoder
512 - DXA demuxer and decoder
513 - DNxHD decoder
514 - Gamecube movie (.THP) playback system
515 - Blackfin optimizations
516 - Interplay C93 demuxer and video decoder
517 - Bethsoft VID demuxer and video decoder
518 - CRYO APC demuxer
519 - Atrac3 decoder
520 - V.Flash PTX decoder
521 - RoQ muxer, RoQ audio encoder
522 - Renderware TXD demuxer and decoder
523 - extern C declarations for C++ removed from headers
524 - sws_flags command line option
525 - codebook generator
526 - RoQ video encoder
527 - QTRLE encoder
528 - OS/2 support removed and restored again
529 - AC-3 decoder
530 - NUT muxer
531 - additional SPARC (VIS) optimizations
532 - Matroska muxer
533 - slice-based parallel H.264 decoding
534 - Monkey's Audio demuxer and decoder
535 - AMV audio and video decoder
536 - DNxHD encoder
537 - H.264 PAFF decoding
538 - Nellymoser ASAO decoder
539 - Beam Software SIFF demuxer and decoder
540 - libvorbis Vorbis decoding removed in favor of native decoder
541 - IntraX8 (J-Frame) subdecoder for WMV2 and VC-1
542 - Ogg (Theora, Vorbis and FLAC) muxer
543 - The "device" muxers and demuxers are now in a new libavdevice library
544 - PC Paintbrush PCX decoder
545 - Sun Rasterfile decoder
546 - TechnoTrend PVA demuxer
547 - Linux Media Labs MPEG-4 (LMLM4) demuxer
548 - AVM2 (Flash 9) SWF muxer
549 - QT variant of IMA ADPCM encoder
550 - VFW grabber
551 - iPod/iPhone compatible mp4 muxer
552 - Mimic decoder
553 - MSN TCP Webcam stream demuxer
554 - RL2 demuxer / decoder
555 - IFF demuxer
556 - 8SVX audio decoder
557 - non-recursive Makefiles
558 - BFI demuxer
559 - MAXIS EA XA (.xa) demuxer / decoder
560 - BFI video decoder
561 - OMA demuxer
562 - MLP/TrueHD decoder
563 - Electronic Arts CMV decoder
564 - Motion Pixels Video decoder
565 - Motion Pixels MVI demuxer
566 - removed animated GIF decoder/demuxer
567 - D-Cinema audio muxer
568 - Electronic Arts TGV decoder
569 - Apple Lossless Audio Codec (ALAC) encoder
570 - AAC decoder
571 - floating point PCM encoder/decoder
572 - MXF muxer
573 - DV100 AKA DVCPRO HD decoder and demuxer
574 - E-AC-3 support added to AC-3 decoder
575 - Nellymoser ASAO encoder
576 - ASS and SSA demuxer and muxer
577 - liba52 wrapper removed
578 - SVQ3 watermark decoding support
579 - Speex decoding via libspeex
580 - Electronic Arts TGQ decoder
581 - RV40 decoder
582 - QCELP / PureVoice decoder
583 - RV30 decoder
584 - hybrid WavPack support
585 - R3D REDCODE demuxer
586 - ALSA support for playback and record
587 - Electronic Arts TQI decoder
588 - OpenJPEG based JPEG 2000 decoder
589 - NC (NC4600) camera file demuxer
590 - Gopher client support
591 - MXF D-10 muxer
592 - generic metadata API
593 - flash ScreenVideo2 encoder
594
595
596 version 0.4.9-pre1:
597
598 - DV encoder, DV muxer
599 - Microsoft RLE video decoder
600 - Microsoft Video-1 decoder
601 - Apple Animation (RLE) decoder
602 - Apple Graphics (SMC) decoder
603 - Apple Video (RPZA) decoder
604 - Cinepak decoder
605 - Sega FILM (CPK) file demuxer
606 - Westwood multimedia support (VQA & AUD files)
607 - Id Quake II CIN playback support
608 - 8BPS video decoder
609 - FLIC playback support
610 - RealVideo 2.0 (RV20) decoder
611 - Duck TrueMotion v1 (DUCK) video decoder
612 - Sierra VMD demuxer and video decoder
613 - MSZH and ZLIB decoder support
614 - SVQ1 video encoder
615 - AMR-WB support
616 - PPC optimizations
617 - rate distortion optimal cbp support
618 - rate distorted optimal ac prediction for MPEG-4
619 - rate distorted optimal lambda->qp support
620 - AAC encoding with libfaac
621 - Sunplus JPEG codec (SP5X) support
622 - use Lagrange multipler instead of QP for ratecontrol
623 - Theora/VP3 decoding support
624 - XA and ADX ADPCM codecs
625 - export MPEG-2 active display area / pan scan
626 - Add support for configuring with IBM XLC
627 - floating point AAN DCT
628 - initial support for zygo video (not complete)
629 - RGB ffv1 support
630 - new audio/video parser API
631 - av_log() system
632 - av_read_frame() and av_seek_frame() support
633 - missing last frame fixes
634 - seek by mouse in ffplay
635 - noise reduction of DCT coefficients
636 - H.263 OBMC & 4MV support
637 - H.263 alternative inter vlc support
638 - H.263 loop filter
639 - H.263 slice structured mode
640 - interlaced DCT support for MPEG-2 encoding
641 - stuffing to stay above min_bitrate
642 - MB type & QP visualization
643 - frame stepping for ffplay
644 - interlaced motion estimation
645 - alternate scantable support
646 - SVCD scan offset support
647 - closed GOP support
648 - SSE2 FDCT
649 - quantizer noise shaping
650 - G.726 ADPCM audio codec
651 - MS ADPCM encoding
652 - multithreaded/SMP motion estimation
653 - multithreaded/SMP encoding for MPEG-1/MPEG-2/MPEG-4/H.263
654 - multithreaded/SMP decoding for MPEG-2
655 - FLAC decoder
656 - Metrowerks CodeWarrior suppport
657 - H.263+ custom pcf support
658 - nicer output for 'ffmpeg -formats'
659 - Matroska demuxer
660 - SGI image format, encoding and decoding
661 - H.264 loop filter support
662 - H.264 CABAC support
663 - nicer looking arrows for the motion vector visualization
664 - improved VCD support
665 - audio timestamp drift compensation
666 - MPEG-2 YUV 422/444 support
667 - polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample
668 - better image scaling
669 - H.261 support
670 - correctly interleave packets during encoding
671 - VIS optimized motion compensation
672 - intra_dc_precision>0 encoding support
673 - support reuse of motion vectors/MB types/field select values of the source video
674 - more accurate deblock filter
675 - padding support
676 - many optimizations and bugfixes
677 - FunCom ISS audio file demuxer and according ADPCM decoding
678
679
680 version 0.4.8:
681
682 - MPEG-2 video encoding (Michael)
683 - Id RoQ playback subsystem (Mike Melanson and Tim Ferguson)
684 - Wing Commander III Movie (.mve) file playback subsystem (Mike Melanson
685   and Mario Brito)
686 - Xan DPCM audio decoder (Mario Brito)
687 - Interplay MVE playback subsystem (Mike Melanson)
688 - Duck DK3 and DK4 ADPCM audio decoders (Mike Melanson)
689
690
691 version 0.4.7:
692
693 - RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from mplayerhq
694   (originally from public domain player for Amiga at http://www.honeypot.net/audio)
695 - current version now also compiles with older GCC (Fabrice)
696 - 4X multimedia playback system including 4xm file demuxer (Mike
697   Melanson), and 4X video and audio codecs (Michael)
698 - Creative YUV (CYUV) decoder (Mike Melanson)
699 - FFV1 codec (our very simple lossless intra only codec, compresses much better
700   than HuffYUV) (Michael)
701 - ASV1 (Asus), H.264, Intel indeo3 codecs have been added (various)
702 - tiny PNG encoder and decoder, tiny GIF decoder, PAM decoder (PPM with
703   alpha support), JPEG YUV colorspace support. (Fabrice Bellard)
704 - ffplay has been replaced with a newer version which uses SDL (optionally)
705   for multiplatform support (Fabrice)
706 - Sorenson Version 3 codec (SVQ3) support has been added (decoding only) - donated
707   by anonymous
708 - AMR format has been added (Johannes Carlsson)
709 - 3GP support has been added (Johannes Carlsson)
710 - VP3 codec has been added (Mike Melanson)
711 - more MPEG-1/2 fixes
712 - better multiplatform support, MS Visual Studio fixes (various)
713 - AltiVec optimizations (Magnus Damn and others)
714 - SH4 processor support has been added (BERO)
715 - new public interfaces (avcodec_get_pix_fmt) (Roman Shaposhnick)
716 - VOB streaming support (Brian Foley)
717 - better MP3 autodetection (Andriy Rysin)
718 - qpel encoding (Michael)
719 - 4mv+b frames encoding finally fixed (Michael)
720 - chroma ME (Michael)
721 - 5 comparison functions for ME (Michael)
722 - B-frame encoding speedup (Michael)
723 - WMV2 codec (unfinished - Michael)
724 - user specified diamond size for EPZS (Michael)
725 - Playstation STR playback subsystem, still experimental (Mike and Michael)
726 - ASV2 codec (Michael)
727 - CLJR decoder (Alex)
728
729 .. And lots more new enhancements and fixes.
730
731
732 version 0.4.6:
733
734 - completely new integer only MPEG audio layer 1/2/3 decoder rewritten
735   from scratch
736 - Recoded DCT and motion vector search with gcc (no longer depends on nasm)
737 - fix quantization bug in AC3 encoder
738 - added PCM codecs and format. Corrected WAV/AVI/ASF PCM issues
739 - added prototype ffplay program
740 - added GOB header parsing on H.263/H.263+ decoder (Juanjo)
741 - bug fix on MCBPC tables of H.263 (Juanjo)
742 - bug fix on DC coefficients of H.263 (Juanjo)
743 - added Advanced Prediction Mode on H.263/H.263+ decoder (Juanjo)
744 - now we can decode H.263 streams found in QuickTime files (Juanjo)
745 - now we can decode H.263 streams found in VIVO v1 files(Juanjo)
746 - preliminary RTP "friendly" mode for H.263/H.263+ coding. (Juanjo)
747 - added GOB header for H.263/H.263+ coding on RTP mode (Juanjo)
748 - now H.263 picture size is returned on the first decoded frame (Juanjo)
749 - added first regression tests
750 - added MPEG-2 TS demuxer
751 - new demux API for libav
752 - more accurate and faster IDCT (Michael)
753 - faster and entropy-controlled motion search (Michael)
754 - two pass video encoding (Michael)
755 - new video rate control (Michael)
756 - added MSMPEG4V1, MSMPEGV2 and WMV1 support (Michael)
757 - great performance improvement of video encoders and decoders (Michael)
758 - new and faster bit readers and vlc parsers (Michael)
759 - high quality encoding mode: tries all macroblock/VLC types (Michael)
760 - added DV video decoder
761 - preliminary RTP/RTSP support in ffserver and libavformat
762 - H.263+ AIC decoding/encoding support (Juanjo)
763 - VCD MPEG-PS mode (Juanjo)
764 - PSNR stuff (Juanjo)
765 - simple stats output (Juanjo)
766 - 16-bit and 15-bit RGB/BGR/GBR support (Bisqwit)
767
768
769 version 0.4.5:
770
771 - some header fixes (Zdenek Kabelac <kabi at informatics.muni.cz>)
772 - many MMX optimizations (Nick Kurshev <nickols_k at mail.ru>)
773 - added configure system (actually a small shell script)
774 - added MPEG audio layer 1/2/3 decoding using LGPL'ed mpglib by
775   Michael Hipp (temporary solution - waiting for integer only
776   decoder)
777 - fixed VIDIOCSYNC interrupt
778 - added Intel H.263 decoding support ('I263' AVI fourCC)
779 - added Real Video 1.0 decoding (needs further testing)
780 - simplified image formats again. Added PGM format (=grey
781   pgm). Renamed old PGM to PGMYUV.
782 - fixed msmpeg4 slice issues (tell me if you still find problems)
783 - fixed OpenDivX bugs with newer versions (added VOL header decoding)
784 - added support for MPlayer interface
785 - added macroblock skip optimization
786 - added MJPEG decoder
787 - added mmx/mmxext IDCT from libmpeg2
788 - added pgmyuvpipe, ppm, and ppm_pipe formats (original patch by Celer
789   <celer at shell.scrypt.net>)
790 - added pixel format conversion layer (e.g. for MJPEG or PPM)
791 - added deinterlacing option
792 - MPEG-1/2 fixes
793 - MPEG-4 vol header fixes (Jonathan Marsden <snmjbm at pacbell.net>)
794 - ARM optimizations (Lionel Ulmer <lionel.ulmer at free.fr>).
795 - Windows porting of file converter
796 - added MJPEG raw format (input/output)
797 - added JPEG image format support (input/output)
798
799
800 version 0.4.4:
801
802 - fixed some std header definitions (Bjorn Lindgren
803   <bjorn.e.lindgren at telia.com>).
804 - added MPEG demuxer (MPEG-1 and 2 compatible).
805 - added ASF demuxer
806 - added prototype RM demuxer
807 - added AC3 decoding (done with libac3 by Aaron Holtzman)
808 - added decoding codec parameter guessing (.e.g. for MPEG, because the
809   header does not include them)
810 - fixed header generation in MPEG-1, AVI and ASF muxer: wmplayer can now
811   play them (only tested video)
812 - fixed H.263 white bug
813 - fixed phase rounding in img resample filter
814 - add MMX code for polyphase img resample filter
815 - added CPU autodetection
816 - added generic title/author/copyright/comment string handling (ASF and RM
817   use them)
818 - added SWF demux to extract MP3 track (not usable yet because no MP3
819   decoder)
820 - added fractional frame rate support
821 - codecs are no longer searched by read_header() (should fix ffserver
822   segfault)
823
824
825 version 0.4.3:
826
827 - BGR24 patch (initial patch by Jeroen Vreeken <pe1rxq at amsat.org>)
828 - fixed raw yuv output
829 - added motion rounding support in MPEG-4
830 - fixed motion bug rounding in MSMPEG4
831 - added B-frame handling in video core
832 - added full MPEG-1 decoding support
833 - added partial (frame only) MPEG-2 support
834 - changed the FOURCC code for H.263 to "U263" to be able to see the
835   +AVI/H.263 file with the UB Video H.263+ decoder. MPlayer works with
836   this +codec ;) (JuanJo).
837 - Halfpel motion estimation after MB type selection (JuanJo)
838 - added pgm and .Y.U.V output format
839 - suppressed 'img:' protocol. Simply use: /tmp/test%d.[pgm|Y] as input or
840   output.
841 - added pgmpipe I/O format (original patch from Martin Aumueller
842   <lists at reserv.at>, but changed completely since we use a format
843   instead of a protocol)
844
845
846 version 0.4.2:
847
848 - added H.263/MPEG-4/MSMPEG4 decoding support. MPEG-4 decoding support
849   (for OpenDivX) is almost complete: 8x8 MVs and rounding are
850   missing. MSMPEG4 support is complete.
851 - added prototype MPEG-1 decoder. Only I- and P-frames handled yet (it
852   can decode ffmpeg MPEGs :-)).
853 - added libavcodec API documentation (see apiexample.c).
854 - fixed image polyphase bug (the bottom of some images could be
855   greenish)
856 - added support for non clipped motion vectors (decoding only)
857   and image sizes non-multiple of 16
858 - added support for AC prediction (decoding only)
859 - added file overwrite confirmation (can be disabled with -y)
860 - added custom size picture to H.263 using H.263+ (Juanjo)
861
862
863 version 0.4.1:
864
865 - added MSMPEG4 (aka DivX) compatible encoder. Changed default codec
866   of AVI and ASF to DIV3.
867 - added -me option to set motion estimation method
868   (default=log). suppressed redundant -hq option.
869 - added options -acodec and -vcodec to force a given codec (useful for
870   AVI for example)
871 - fixed -an option
872 - improved dct_quantize speed
873 - factorized some motion estimation code
874
875
876 version 0.4.0:
877
878 - removing grab code from ffserver and moved it to ffmpeg. Added
879   multistream support to ffmpeg.
880 - added timeshifting support for live feeds (option ?date=xxx in the
881   URL)
882 - added high quality image resize code with polyphase filter (need
883   mmx/see optimization). Enable multiple image size support in ffserver.
884 - added multi live feed support in ffserver
885 - suppressed master feature from ffserver (it should be done with an
886   external program which opens the .ffm url and writes it to another
887   ffserver)
888 - added preliminary support for video stream parsing (WAV and AVI half
889   done). Added proper support for audio/video file conversion in
890   ffmpeg.
891 - added preliminary support for video file sending from ffserver
892 - redesigning I/O subsystem: now using URL based input and output
893   (see avio.h)
894 - added WAV format support
895 - added "tty user interface" to ffmpeg to stop grabbing gracefully
896 - added MMX/SSE optimizations to SAD (Sums of Absolutes Differences)
897   (Juan J. Sierralta P. a.k.a. "Juanjo" <juanjo at atmlab.utfsm.cl>)
898 - added MMX DCT from mpeg2_movie 1.5 (Juanjo)
899 - added new motion estimation algorithms, log and phods (Juanjo)
900 - changed directories: libav for format handling, libavcodec for
901   codecs
902
903
904 version 0.3.4:
905
906 - added stereo in MPEG audio encoder
907
908
909 version 0.3.3:
910
911 - added 'high quality' mode which use motion vectors. It can be used in
912   real time at low resolution.
913 - fixed rounding problems which caused quality problems at high
914   bitrates and large GOP size
915
916
917 version 0.3.2: small fixes
918
919 - ASF fixes
920 - put_seek bug fix
921
922
923 version 0.3.1: added avi/divx support
924
925 - added AVI support
926 - added MPEG-4 codec compatible with OpenDivX. It is based on the H.263 codec
927 - added sound for flash format (not tested)
928
929
930 version 0.3: initial public release