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