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