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