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