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