Changelog 25 KB

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