You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

732 lines
25KB

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