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