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.

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