Changelog 26 KB

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