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