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