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