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