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.

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