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