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