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