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.

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