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.

774 lines
26KB

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