OSDN Git Service

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