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