Changelog 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629
  1. Entries are sorted chronologically from oldest to youngest within each release,
  2. releases are sorted from youngest to oldest.
  3. version 0.5.10:
  4. - mpeg12: do not decode extradata more than once (CVE-2012-2803)
  5. - vp6: properly fail on unsupported feature (CVE-2012-2783)
  6. - vp56: release frames on error (CVE-2012-2783)
  7. - shorten: Use separate pointers for the allocated memory for decoded samples (CVE-2012-0858)
  8. - shorten: check for realloc failure
  9. - h264: check context state before decoding slice data partitions
  10. - oggdec: check memory allocation
  11. - Fix uninitialized reads on malformed Ogg files
  12. - lavf: avoid integer overflow in ff_compute_frame_duration()
  13. - yuv4mpeg: reject unsupported codecs
  14. - tiffenc: Check av_malloc() results
  15. - mpegaudiodec: fix short_start calculation
  16. - h264: avoid stuck buffer pointer in decode_nal_units
  17. - yuv4mpeg: return proper error codes (Bug 373)
  18. - avidec: return 0, not packet size from read_packet()
  19. - cavsdec: check for changing w/h (CVE-2012-2777 and CVE-2012-2784)
  20. - avidec: use actually read size instead of requested size CVE-2012-2788
  21. - bytestream: add a new set of bytestream functions with overread checking
  22. - avsdec: Set dimensions instead of relying on the demuxer (CVE-2012-2801)
  23. - lavfi: avfilter_merge_formats: handle case where inputs are same
  24. - bmpdec: only initialize palette for pal8 (Bug 367)
  25. - Bump version number for the 0.5.10 release
  26. - lavfi: avfilter_merge_formats: handle case where inputs are same
  27. - mpegvideo: Don't use ff_mspel_motion() for vc1
  28. - imgconvert: avoid undefined left shift in avcodec_find_best_pix_fmt
  29. - nuv: check RTjpeg header for validity
  30. - vc1dec: add flush function for WMV9 and VC-1 decoders
  31. version 0.5.9:
  32. - dpcm: ignore extra unpaired bytes in stereo streams (CVE-2011-3951)
  33. - h264: Add check for invalid chroma_format_idc (CVE-2012-0851)
  34. - adpcm: ADPCM Electronic Arts has always two channels (CVE-2012-0852)
  35. - kmvc: Check palsize (CVE-2011-3952)
  36. - qdm2: clip array indices returned by qdm2_get_vlc()
  37. - configure: properly check for mingw-w64 through installed headers
  38. - Replace every usage of -lvfw32 with what is particularly necessary for that case
  39. - mingw32: properly check if vfw capture is supported by the system headers
  40. - mingw32: merge checks for mingw-w64 and mingw32-runtime >= 3.15 into one
  41. - vfwcap: Include windows.h before vfw.h since the latter requires defines from the former
  42. - ea: check chunk_size for validity
  43. - eatqi: move "block" variable into context to ensure sufficient alignment for idct_put
  44. - tqi: Pass errors from the MB decoder
  45. - png: check bit depth for PAL8/Y400A pixel formats.
  46. version 0.5.8:
  47. - id3v2: fix skipping extended header in id3v2.4
  48. - nsvdec: Several bugfixes related to CVE-2011-3940
  49. - dv: check stype
  50. - dv: Fix null pointer dereference due to ach=0
  51. - dv: Fix small stack overread related to CVE-2011-3929 and CVE-2011-3936.
  52. - atrac3: Fix crash in tonal component decoding, fixes CVE-2012-0853
  53. - mjpegbdec: Fix overflow in SOS, fixes CVE-2011-3947
  54. - motionpixels: Clip YUV values after applying a gradient.
  55. - vqavideo: return error if image size is not a multiple of block size,
  56. fixes CVE-2012-0947.
  57. version 0.5.7:
  58. - vorbis: An additional defense in the Vorbis codec. (CVE-2011-3895)
  59. - vorbisdec: Fix decoding bug with channel handling.
  60. - matroskadec: Fix a bug where a pointer was cached to an array that might
  61. later move due to a realloc(). (CVE-2011-3893)
  62. - vorbis: Avoid some out-of-bounds reads. (CVE-2011-3893)
  63. - vp3: fix oob read for negative tokens and memleaks on error, (CVE-2011-3892)
  64. - vp3: fix streams with non-zero last coefficient.
  65. version 0.5.6:
  66. - svq1dec: call avcodec_set_dimensions() after dimensions changed. (NGS00148, CVE-2011-4579)
  67. - vmd: fix segfaults on corruped streams (CVE-2011-4364)
  68. - commits related to CVE-2011-4353:
  69. - vp6: partially propagate huffman tree building errors during coeff model parsing and fix misspelling
  70. - Plug some memory leaks in the VP6 decoder
  71. - vp6: Reset the internal state when aborting key frames header parsing
  72. - vp6: Fix illegal read.
  73. - vp6: Fix illegal read.
  74. - Fix out of bound reads in the QDM2 decoder.
  75. - commits related to CVE-2011-4351:
  76. - Check for out of bound writes in the QDM2 decoder.
  77. - qdm2: check output buffer size before decoding
  78. - Fix qdm2 decoder packet handling to match the api
  79. version 0.5.5:
  80. - Fix memory (re)allocation in matroskadec.c (MSVR11-011/CVE-2011-3504)
  81. - Fix some crashes with invalid bitstreams in the CAVS decoder
  82. (CVE-2011-3362, CVE-2011-3973, CVE-2011-3974)
  83. - Compilation fixes for gcc-4.6, testsuite now passes again
  84. - Detect and handle overreads in the MJPEG decoder.
  85. - multiple other security fixes.
  86. version 0.5.4:
  87. - Fix memory corruption in WMV parsing (addresses CVE-2010-3908)
  88. - Fix heap corruption crashes (addresses CVE-2011-0722)
  89. - Fix crashes in Vorbis decoding found by zzuf (addresses CVE-2010-4704)
  90. - Fix another crash in Vorbis decoding (addresses CVE-2011-0480, Chrome issue 68115)
  91. - Fix invalid reads in VC-1 decoding (related to CVE-2011-0723)
  92. - Do not attempt to decode APE file with no frames
  93. (adresses http://packetstorm.linuxsecurity.com/1103-exploits/vlc105-dos.txt)
  94. version 0.5.3:
  95. - build system improvements
  96. - performance fix for seekable HTTP
  97. - fix several potentially exploitable issues in the FLIC decoder
  98. (addresses CVE-2010-3429)
  99. version 0.5.2:
  100. - Hurd support
  101. - PowerPC without AltiVec compilation issues
  102. - validate channels and samplerate in the Vorbis decoder
  103. version 0.5.1:
  104. - build system updates
  105. - documentation updates
  106. - libswscale now is LGPL except for x86 optimizations
  107. - fix for GPL code in libswscale that was erroneously activated
  108. - AltiVec code in libswscale is now LGPL
  109. - remaining GPL parts in AC-3 decoder converted to LGPL
  110. - (L)GPL license upgrade support
  111. - AMR-NB decoding/encoding, AMR-WB decoding via OpenCORE libraries
  112. - enable symbol versioning by default for linkers that support it
  113. - backport av_lockmgr_register(), see doc/APIchanges for details
  114. - security fixes for:
  115. - ASF, Ogg and MOV demuxers
  116. - FFv1, H.264, HuffYUV, MLP, MPEG audio and Snow decoders
  117. version 0.5:
  118. - The "device" muxers and demuxers are now in a new libavdevice library
  119. - DV50 AKA DVCPRO50 encoder, decoder, muxer and demuxer
  120. - DV100 AKA DVCPRO HD decoder and demuxer
  121. - TechSmith Camtasia (TSCC) video decoder
  122. - IBM Ultimotion (ULTI) video decoder
  123. - Sierra Online audio file demuxer and decoder
  124. - Apple QuickDraw (qdrw) video decoder
  125. - Creative ADPCM audio decoder (16 bits as well as 8 bits schemes)
  126. - Electronic Arts Multimedia (WVE/UV2/etc.) file demuxer
  127. - Miro VideoXL (VIXL) video decoder
  128. - H.261 video encoder
  129. - QPEG video decoder
  130. - Nullsoft Video (NSV) file demuxer
  131. - Shorten audio decoder
  132. - LOCO video decoder
  133. - Apple Lossless Audio Codec (ALAC) decoder
  134. - Winnov WNV1 video decoder
  135. - Autodesk Animator Studio Codec (AASC) decoder
  136. - Indeo 2 video decoder
  137. - Fraps FPS1 video decoder
  138. - Snow video encoder/decoder
  139. - Sonic audio encoder/decoder
  140. - Vorbis audio encoder/decoder
  141. - Macromedia ADPCM decoder
  142. - Duck TrueMotion 2 video decoder
  143. - support for decoding FLX and DTA extensions in FLIC files
  144. - H.264 custom quantization matrices support
  145. - ffserver fixed, it should now be usable again
  146. - QDM2 audio decoder
  147. - Real Cooker audio decoder
  148. - TrueSpeech audio decoder
  149. - WMA2 audio decoder fixed, now all files should play correctly
  150. - RealAudio 14.4 and 28.8 decoders fixed
  151. - JPEG-LS encoder and decoder
  152. - CamStudio video decoder
  153. - build system improvements
  154. - tabs and trailing whitespace removed from the codebase
  155. - AIFF/AIFF-C audio format, encoding and decoding
  156. - ADTS AAC file reading and writing
  157. - Creative VOC file reading and writing
  158. - American Laser Games multimedia (*.mm) playback system
  159. - Zip Blocks Motion Video decoder and encoder
  160. - improved Theora/VP3 decoder
  161. - True Audio (TTA) decoder
  162. - AVS demuxer and video decoder
  163. - Smacker demuxer and decoder
  164. - NuppelVideo/MythTV demuxer and RTjpeg decoder
  165. - KMVC decoder
  166. - MPEG-2 intra VLC support
  167. - MPEG-2 4:2:2 encoder
  168. - Flash Screen Video decoder
  169. - GXF demuxer
  170. - Chinese AVS decoder
  171. - GXF muxer
  172. - MXF demuxer
  173. - VC-1/WMV3/WMV9 video decoder
  174. - MacIntel support
  175. - AVISynth support
  176. - VMware video decoder
  177. - VP5 video decoder
  178. - VP6 video decoder
  179. - WavPack lossless audio decoder
  180. - Targa (.TGA) picture decoder
  181. - Delphine Software .cin demuxer/audio and video decoder
  182. - Tiertex .seq demuxer/video decoder
  183. - MTV demuxer
  184. - TIFF picture encoder and decoder
  185. - GIF picture decoder
  186. - Intel Music Coder decoder
  187. - Musepack decoder
  188. - Flash Screen Video encoder
  189. - Theora encoding via libtheora
  190. - BMP encoder
  191. - WMA encoder
  192. - GSM-MS encoder and decoder
  193. - DCA decoder
  194. - DXA demuxer and decoder
  195. - DNxHD decoder
  196. - Gamecube movie (.THP) playback system
  197. - Blackfin optimizations
  198. - Interplay C93 demuxer and video decoder
  199. - Bethsoft VID demuxer and video decoder
  200. - CRYO APC demuxer
  201. - Atrac3 decoder
  202. - V.Flash PTX decoder
  203. - RoQ muxer, RoQ audio encoder
  204. - Renderware TXD demuxer and decoder
  205. - extern C declarations for C++ removed from headers
  206. - sws_flags command line option
  207. - codebook generator
  208. - RoQ video encoder
  209. - QTRLE encoder
  210. - OS/2 support removed and restored again
  211. - AC-3 decoder
  212. - NUT muxer
  213. - Matroska muxer
  214. - slice-based parallel H.264 decoding
  215. - Monkey's Audio demuxer and decoder
  216. - additional SPARC (VIS) optimizations
  217. - AMV audio and video decoder
  218. - DNxHD encoder
  219. - H.264 PAFF decoding
  220. - Nellymoser ASAO decoder
  221. - Beam Software SIFF demuxer and decoder
  222. - libvorbis Vorbis decoding removed in favor of native decoder
  223. - IntraX8 (J-Frame) subdecoder for WMV2 and VC-1
  224. - Ogg (Theora, Vorbis and FLAC) muxer
  225. - PC Paintbrush PCX decoder
  226. - Sun Rasterfile decoder
  227. - TechnoTrend PVA demuxer
  228. - Linux Media Labs MPEG-4 (LMLM4) demuxer
  229. - AVM2 (Flash 9) SWF muxer
  230. - QT variant of IMA ADPCM encoder
  231. - VFW grabber
  232. - iPod/iPhone compatible mp4 muxer
  233. - Mimic decoder
  234. - MSN TCP Webcam stream demuxer
  235. - RL2 demuxer / decoder
  236. - IFF demuxer
  237. - 8SVX audio decoder
  238. - non-recursive Makefiles
  239. - BFI demuxer
  240. - MAXIS EA XA (.xa) demuxer / decoder
  241. - BFI video decoder
  242. - OMA demuxer
  243. - MLP/TrueHD decoder
  244. - Electronic Arts CMV decoder
  245. - Motion Pixels Video decoder
  246. - Motion Pixels MVI demuxer
  247. - removed animated GIF decoder/demuxer
  248. - D-Cinema audio muxer
  249. - Electronic Arts TGV decoder
  250. - Apple Lossless Audio Codec (ALAC) encoder
  251. - AAC decoder
  252. - floating point PCM encoder/decoder
  253. - MXF muxer
  254. - E-AC-3 support added to AC-3 decoder
  255. - Nellymoser ASAO encoder
  256. - ASS and SSA demuxer and muxer
  257. - liba52 wrapper removed
  258. - SVQ3 watermark decoding support
  259. - Speex decoding via libspeex
  260. - Electronic Arts TGQ decoder
  261. - RV30 and RV40 decoder
  262. - QCELP / PureVoice decoder
  263. - hybrid WavPack support
  264. - R3D REDCODE demuxer
  265. - ALSA support for playback and record
  266. - Electronic Arts TQI decoder
  267. - OpenJPEG based JPEG 2000 decoder
  268. - NC (NC4600) camera file demuxer
  269. - Gopher client support
  270. - MXF D-10 muxer
  271. - generic metadata API
  272. version 0.4.9-pre1:
  273. - DV encoder, DV muxer
  274. - Microsoft RLE video decoder
  275. - Microsoft Video-1 decoder
  276. - Apple Animation (RLE) decoder
  277. - Apple Graphics (SMC) decoder
  278. - Apple Video (RPZA) decoder
  279. - Cinepak decoder
  280. - Sega FILM (CPK) file demuxer
  281. - Westwood multimedia support (VQA & AUD files)
  282. - Id Quake II CIN playback support
  283. - 8BPS video decoder
  284. - FLIC playback support
  285. - RealVideo 2.0 (RV20) decoder
  286. - Duck TrueMotion v1 (DUCK) video decoder
  287. - Sierra VMD demuxer and video decoder
  288. - MSZH and ZLIB decoder support
  289. - SVQ1 video encoder
  290. - AMR-WB support
  291. - PPC optimizations
  292. - rate distortion optimal cbp support
  293. - rate distorted optimal ac prediction for MPEG-4
  294. - rate distorted optimal lambda->qp support
  295. - AAC encoding with libfaac
  296. - Sunplus JPEG codec (SP5X) support
  297. - use Lagrange multipler instead of QP for ratecontrol
  298. - Theora/VP3 decoding support
  299. - XA and ADX ADPCM codecs
  300. - export MPEG-2 active display area / pan scan
  301. - Add support for configuring with IBM XLC
  302. - floating point AAN DCT
  303. - initial support for zygo video (not complete)
  304. - RGB ffv1 support
  305. - new audio/video parser API
  306. - av_log() system
  307. - av_read_frame() and av_seek_frame() support
  308. - missing last frame fixes
  309. - seek by mouse in ffplay
  310. - noise reduction of DCT coefficients
  311. - H.263 OBMC & 4MV support
  312. - H.263 alternative inter vlc support
  313. - H.263 loop filter
  314. - H.263 slice structured mode
  315. - interlaced DCT support for MPEG-2 encoding
  316. - stuffing to stay above min_bitrate
  317. - MB type & QP visualization
  318. - frame stepping for ffplay
  319. - interlaced motion estimation
  320. - alternate scantable support
  321. - SVCD scan offset support
  322. - closed GOP support
  323. - SSE2 FDCT
  324. - quantizer noise shaping
  325. - G.726 ADPCM audio codec
  326. - MS ADPCM encoding
  327. - multithreaded/SMP motion estimation
  328. - multithreaded/SMP encoding for MPEG-1/MPEG-2/MPEG-4/H.263
  329. - multithreaded/SMP decoding for MPEG-2
  330. - FLAC decoder
  331. - Metrowerks CodeWarrior suppport
  332. - H.263+ custom pcf support
  333. - nicer output for 'ffmpeg -formats'
  334. - Matroska demuxer
  335. - SGI image format, encoding and decoding
  336. - H.264 loop filter support
  337. - H.264 CABAC support
  338. - nicer looking arrows for the motion vector visualization
  339. - improved VCD support
  340. - audio timestamp drift compensation
  341. - MPEG-2 YUV 422/444 support
  342. - polyphase kaiser windowed sinc and blackman nuttall windowed sinc audio resample
  343. - better image scaling
  344. - H.261 support
  345. - correctly interleave packets during encoding
  346. - VIS optimized motion compensation
  347. - intra_dc_precision>0 encoding support
  348. - support reuse of motion vectors/MB types/field select values of the source video
  349. - more accurate deblock filter
  350. - padding support
  351. - many optimizations and bugfixes
  352. - FunCom ISS audio file demuxer and according ADPCM decoding
  353. version 0.4.8:
  354. - MPEG-2 video encoding (Michael)
  355. - Id RoQ playback subsystem (Mike Melanson and Tim Ferguson)
  356. - Wing Commander III Movie (.mve) file playback subsystem (Mike Melanson
  357. and Mario Brito)
  358. - Xan DPCM audio decoder (Mario Brito)
  359. - Interplay MVE playback subsystem (Mike Melanson)
  360. - Duck DK3 and DK4 ADPCM audio decoders (Mike Melanson)
  361. version 0.4.7:
  362. - RealAudio 1.0 (14_4) and 2.0 (28_8) native decoders. Author unknown, code from mplayerhq
  363. (originally from public domain player for Amiga at http://www.honeypot.net/audio)
  364. - current version now also compiles with older GCC (Fabrice)
  365. - 4X multimedia playback system including 4xm file demuxer (Mike
  366. Melanson), and 4X video and audio codecs (Michael)
  367. - Creative YUV (CYUV) decoder (Mike Melanson)
  368. - FFV1 codec (our very simple lossless intra only codec, compresses much better
  369. than HuffYUV) (Michael)
  370. - ASV1 (Asus), H.264, Intel indeo3 codecs have been added (various)
  371. - tiny PNG encoder and decoder, tiny GIF decoder, PAM decoder (PPM with
  372. alpha support), JPEG YUV colorspace support. (Fabrice Bellard)
  373. - ffplay has been replaced with a newer version which uses SDL (optionally)
  374. for multiplatform support (Fabrice)
  375. - Sorenson Version 3 codec (SVQ3) support has been added (decoding only) - donated
  376. by anonymous
  377. - AMR format has been added (Johannes Carlsson)
  378. - 3GP support has been added (Johannes Carlsson)
  379. - VP3 codec has been added (Mike Melanson)
  380. - more MPEG-1/2 fixes
  381. - better multiplatform support, MS Visual Studio fixes (various)
  382. - AltiVec optimizations (Magnus Damn and others)
  383. - SH4 processor support has been added (BERO)
  384. - new public interfaces (avcodec_get_pix_fmt) (Roman Shaposhnick)
  385. - VOB streaming support (Brian Foley)
  386. - better MP3 autodetection (Andriy Rysin)
  387. - qpel encoding (Michael)
  388. - 4mv+b frames encoding finally fixed (Michael)
  389. - chroma ME (Michael)
  390. - 5 comparison functions for ME (Michael)
  391. - B-frame encoding speedup (Michael)
  392. - WMV2 codec (unfinished - Michael)
  393. - user specified diamond size for EPZS (Michael)
  394. - Playstation STR playback subsystem, still experimental (Mike and Michael)
  395. - ASV2 codec (Michael)
  396. - CLJR decoder (Alex)
  397. .. And lots more new enhancements and fixes.
  398. version 0.4.6:
  399. - completely new integer only MPEG audio layer 1/2/3 decoder rewritten
  400. from scratch
  401. - Recoded DCT and motion vector search with gcc (no longer depends on nasm)
  402. - fix quantization bug in AC3 encoder
  403. - added PCM codecs and format. Corrected WAV/AVI/ASF PCM issues
  404. - added prototype ffplay program
  405. - added GOB header parsing on H.263/H.263+ decoder (Juanjo)
  406. - bug fix on MCBPC tables of H.263 (Juanjo)
  407. - bug fix on DC coefficients of H.263 (Juanjo)
  408. - added Advanced Prediction Mode on H.263/H.263+ decoder (Juanjo)
  409. - now we can decode H.263 streams found in QuickTime files (Juanjo)
  410. - now we can decode H.263 streams found in VIVO v1 files(Juanjo)
  411. - preliminary RTP "friendly" mode for H.263/H.263+ coding. (Juanjo)
  412. - added GOB header for H.263/H.263+ coding on RTP mode (Juanjo)
  413. - now H.263 picture size is returned on the first decoded frame (Juanjo)
  414. - added first regression tests
  415. - added MPEG-2 TS demuxer
  416. - new demux API for libav
  417. - more accurate and faster IDCT (Michael)
  418. - faster and entropy-controlled motion search (Michael)
  419. - two pass video encoding (Michael)
  420. - new video rate control (Michael)
  421. - added MSMPEG4V1, MSMPEGV2 and WMV1 support (Michael)
  422. - great performance improvement of video encoders and decoders (Michael)
  423. - new and faster bit readers and vlc parsers (Michael)
  424. - high quality encoding mode: tries all macroblock/VLC types (Michael)
  425. - added DV video decoder
  426. - preliminary RTP/RTSP support in ffserver and libavformat
  427. - H.263+ AIC decoding/encoding support (Juanjo)
  428. - VCD MPEG-PS mode (Juanjo)
  429. - PSNR stuff (Juanjo)
  430. - simple stats output (Juanjo)
  431. - 16-bit and 15-bit RGB/BGR/GBR support (Bisqwit)
  432. version 0.4.5:
  433. - some header fixes (Zdenek Kabelac <kabi at informatics.muni.cz>)
  434. - many MMX optimizations (Nick Kurshev <nickols_k at mail.ru>)
  435. - added configure system (actually a small shell script)
  436. - added MPEG audio layer 1/2/3 decoding using LGPL'ed mpglib by
  437. Michael Hipp (temporary solution - waiting for integer only
  438. decoder)
  439. - fixed VIDIOCSYNC interrupt
  440. - added Intel H.263 decoding support ('I263' AVI fourCC)
  441. - added Real Video 1.0 decoding (needs further testing)
  442. - simplified image formats again. Added PGM format (=grey
  443. pgm). Renamed old PGM to PGMYUV.
  444. - fixed msmpeg4 slice issues (tell me if you still find problems)
  445. - fixed OpenDivX bugs with newer versions (added VOL header decoding)
  446. - added support for MPlayer interface
  447. - added macroblock skip optimization
  448. - added MJPEG decoder
  449. - added mmx/mmxext IDCT from libmpeg2
  450. - added pgmyuvpipe, ppm, and ppm_pipe formats (original patch by Celer
  451. <celer at shell.scrypt.net>)
  452. - added pixel format conversion layer (e.g. for MJPEG or PPM)
  453. - added deinterlacing option
  454. - MPEG-1/2 fixes
  455. - MPEG-4 vol header fixes (Jonathan Marsden <snmjbm at pacbell.net>)
  456. - ARM optimizations (Lionel Ulmer <lionel.ulmer at free.fr>).
  457. - Windows porting of file converter
  458. - added MJPEG raw format (input/ouput)
  459. - added JPEG image format support (input/output)
  460. version 0.4.4:
  461. - fixed some std header definitions (Bjorn Lindgren
  462. <bjorn.e.lindgren at telia.com>).
  463. - added MPEG demuxer (MPEG-1 and 2 compatible).
  464. - added ASF demuxer
  465. - added prototype RM demuxer
  466. - added AC3 decoding (done with libac3 by Aaron Holtzman)
  467. - added decoding codec parameter guessing (.e.g. for MPEG, because the
  468. header does not include them)
  469. - fixed header generation in MPEG-1, AVI and ASF muxer: wmplayer can now
  470. play them (only tested video)
  471. - fixed H.263 white bug
  472. - fixed phase rounding in img resample filter
  473. - add MMX code for polyphase img resample filter
  474. - added CPU autodetection
  475. - added generic title/author/copyright/comment string handling (ASF and RM
  476. use them)
  477. - added SWF demux to extract MP3 track (not usable yet because no MP3
  478. decoder)
  479. - added fractional frame rate support
  480. - codecs are no longer searched by read_header() (should fix ffserver
  481. segfault)
  482. version 0.4.3:
  483. - BGR24 patch (initial patch by Jeroen Vreeken <pe1rxq at amsat.org>)
  484. - fixed raw yuv output
  485. - added motion rounding support in MPEG-4
  486. - fixed motion bug rounding in MSMPEG4
  487. - added B-frame handling in video core
  488. - added full MPEG-1 decoding support
  489. - added partial (frame only) MPEG-2 support
  490. - changed the FOURCC code for H.263 to "U263" to be able to see the
  491. +AVI/H.263 file with the UB Video H.263+ decoder. MPlayer works with
  492. this +codec ;) (JuanJo).
  493. - Halfpel motion estimation after MB type selection (JuanJo)
  494. - added pgm and .Y.U.V output format
  495. - suppressed 'img:' protocol. Simply use: /tmp/test%d.[pgm|Y] as input or
  496. output.
  497. - added pgmpipe I/O format (original patch from Martin Aumueller
  498. <lists at reserv.at>, but changed completely since we use a format
  499. instead of a protocol)
  500. version 0.4.2:
  501. - added H.263/MPEG-4/MSMPEG4 decoding support. MPEG-4 decoding support
  502. (for OpenDivX) is almost complete: 8x8 MVs and rounding are
  503. missing. MSMPEG4 support is complete.
  504. - added prototype MPEG-1 decoder. Only I- and P-frames handled yet (it
  505. can decode ffmpeg MPEGs :-)).
  506. - added libavcodec API documentation (see apiexample.c).
  507. - fixed image polyphase bug (the bottom of some images could be
  508. greenish)
  509. - added support for non clipped motion vectors (decoding only)
  510. and image sizes non-multiple of 16
  511. - added support for AC prediction (decoding only)
  512. - added file overwrite confirmation (can be disabled with -y)
  513. - added custom size picture to H.263 using H.263+ (Juanjo)
  514. version 0.4.1:
  515. - added MSMPEG4 (aka DivX) compatible encoder. Changed default codec
  516. of AVI and ASF to DIV3.
  517. - added -me option to set motion estimation method
  518. (default=log). suppressed redundant -hq option.
  519. - added options -acodec and -vcodec to force a given codec (useful for
  520. AVI for example)
  521. - fixed -an option
  522. - improved dct_quantize speed
  523. - factorized some motion estimation code
  524. version 0.4.0:
  525. - removing grab code from ffserver and moved it to ffmpeg. Added
  526. multistream support to ffmpeg.
  527. - added timeshifting support for live feeds (option ?date=xxx in the
  528. URL)
  529. - added high quality image resize code with polyphase filter (need
  530. mmx/see optimization). Enable multiple image size support in ffserver.
  531. - added multi live feed support in ffserver
  532. - suppressed master feature from ffserver (it should be done with an
  533. external program which opens the .ffm url and writes it to another
  534. ffserver)
  535. - added preliminary support for video stream parsing (WAV and AVI half
  536. done). Added proper support for audio/video file conversion in
  537. ffmpeg.
  538. - added preliminary support for video file sending from ffserver
  539. - redesigning I/O subsystem: now using URL based input and output
  540. (see avio.h)
  541. - added WAV format support
  542. - added "tty user interface" to ffmpeg to stop grabbing gracefully
  543. - added MMX/SSE optimizations to SAD (Sums of Absolutes Differences)
  544. (Juan J. Sierralta P. a.k.a. "Juanjo" <juanjo at atmlab.utfsm.cl>)
  545. - added MMX DCT from mpeg2_movie 1.5 (Juanjo)
  546. - added new motion estimation algorithms, log and phods (Juanjo)
  547. - changed directories: libav for format handling, libavcodec for
  548. codecs
  549. version 0.3.4:
  550. - added stereo in MPEG audio encoder
  551. version 0.3.3:
  552. - added 'high quality' mode which use motion vectors. It can be used in
  553. real time at low resolution.
  554. - fixed rounding problems which caused quality problems at high
  555. bitrates and large GOP size
  556. version 0.3.2: small fixes
  557. - ASF fixes
  558. - put_seek bug fix
  559. version 0.3.1: added avi/divx support
  560. - added AVI support
  561. - added MPEG-4 codec compatible with OpenDivX. It is based on the H.263 codec
  562. - added sound for flash format (not tested)
  563. version 0.3: initial public release