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