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