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.

914 lines
33KB

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