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