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.

176 lines
8.6KB

  1. ┌───────────────────────────────────────────┐
  2. │ RELEASE NOTES for FFmpeg 2.3 "Mandelbrot" │
  3. └───────────────────────────────────────────┘
  4. The FFmpeg Project proudly presents FFmpeg 2.3 "Mandelbrot", a major
  5. release with all the great features committed during the three-month period
  6. since the release of FFmpeg 2.2.
  7. In this release, there are lots of internal overhauls that make FFmpeg a
  8. more accessible project for new developers. Many important new features
  9. like QTKit and AVFoundation input devices are committed. Contributions done
  10. by Libav such as a new native Opus decoder are also merged.
  11. Because of the increasing difficulty to maintain and lack of maintainers,
  12. we are very sorry to say that we have removed all Blackfin and SPARC
  13. architecture assembly optimizations with the cleanups done. If you are
  14. interested in maintaining optimization for these two architecture, feel
  15. free to contact us and we will restore the code!
  16. Since this release, the traditional Changelog file is upgraded to this
  17. modern-looking release note. Old changelogs are moved to doc/Changelog.old.
  18. Enjoy!
  19. ┌────────────────────────────┐
  20. │ * API Information │
  21. └────────────────────────────┘
  22. FFmpeg 2.3 is completely source-compatible to the FFmpeg 2.2 series. There
  23. are however some API deprecations that you need to take care of. Use `git
  24. diff n2.2 n2.3 doc/APIchanges` to show the list of added and deprecated
  25. APIs. FFmpeg 2.3 includes the following library versions:
  26. • libavutil 52.92.100
  27. • libavcodec 55.69.100
  28. • libavformat 55.47.100
  29. • libavdevice 55.13.102
  30. • libavfilter 4.10.100
  31. • libswscale 2. 6.100
  32. • libswresample 0.19.100
  33. • libpostproc 52. 3.100
  34. Please refer to the doc/APIChanges file for more information.
  35. ┌────────────────────────────┐
  36. │ New Optimization │
  37. └────────────────────────────┘
  38. We are excited to announce that we have committed new x86 assembly
  39. optimization for HEVC, and FFmpeg's audio resampler libswresample. ARM
  40. users will get a boost in MLP/TrueHD decoding thanks to new optimization.
  41. Decoding Huffyuv also got a major boost from optimization on the C code.
  42. Of special interest for Microsoft Visual Studio users, we have also
  43. converted some preexisting x86 assembly to NASM/Yasm format compatible
  44. with MSVC setup, especially in the area of audio resampling.
  45. Another major feature in this release is the introduction of AArch64
  46. (ARMv8) assembly optimization. AArch64 is another name for the first
  47. 64-bit ARM architecture, used by Apple A7 SoC inside iPhone 5S. Some
  48. 32-bit ARM assembly has already been ported to AArch64, but more work is
  49. underway.
  50. ┌────────────────────────────┐
  51. │ Native Opus decoder │
  52. └────────────────────────────┘
  53. Opus is an open audio format jointly developed by Xiph.Org, Mozilla,
  54. Skype/Microsoft, and Broadcom. It combines the features of the Skype Cilk
  55. speech codec and the Xiph.Org CELT music codec into one low-latency
  56. codec. Decoding Opus is already possible since FFmpeg 1.0 using the
  57. libopus library, but the new Opus native decoder brings a higher level of
  58. stability and speed.
  59. ┌────────────────────────────┐
  60. │ QTKit and AVFoundation │
  61. └────────────────────────────┘
  62. For OS X users, the new QTKit and AVFoundation devices allow you to use
  63. the integrated camera on Macs. AVFoundation is a newer API only available
  64. on OS X 10.7 "Lion" or newer. For users with older OS X systems, the
  65. QTKit device using the older OS X API is for you.
  66. ┌────────────────────────────┐
  67. │ API Additions │
  68. └────────────────────────────┘
  69. In this release, stream side data are introduced as AVStream.side_data as
  70. a way to store miscellaneous stream-wide information. The format is
  71. similar to the previously anonymous structure AVPacket.side_data (now
  72. named as AVPacketSideData). With this change, audio ReplayGain
  73. information and video rotation matrix are now exported through this API,
  74. if available in the demuxer.
  75. We also have improved libswresample's Doxygen API documentation, so new
  76. developers wishing to use FFmpeg's excellent libraries can get started
  77. more easily and faster.
  78. ┌────────────────────────────┐
  79. │ Last But Not Least │
  80. └────────────────────────────┘
  81. Other interesting new features including hqx video filter, a pixel art
  82. scaling filter; a fixed-point AC-3 decoder contributed by Imagination
  83. Technologies; an On2 TrueMotion VP7 video decoder; an HTML5 WebVTT
  84. subtitle encoder that allows creation of WebVTT from any text-based
  85. subtitles; and an 1-bit Direct Stream Digital audio decoder.
  86. ┌────────────────────────────┐
  87. │ ★ List of New Features │
  88. └────────────────────────────┘
  89. ┌────────────────────────────┐
  90. │ Command line tools │
  91. └────────────────────────────┘
  92. • Support for decoding through DXVA2 in ffmpeg
  93. ┌────────────────────────────┐
  94. │ libavcodec │
  95. └────────────────────────────┘
  96. • AC3 fixed-point decoding
  97. • VP7 video decoder
  98. • Alias PIX image encoder and decoder
  99. • Improvements to the BRender PIX image decoder
  100. • Improvements to the XBM decoder
  101. • Improvements to OpenEXR image decoder
  102. • Support decoding 16-bit RLE SGI images
  103. • Direct Stream Digital (DSD) decoder
  104. • On2 AVC (Audio for Video) decoder
  105. • Native Opus decoder
  106. • WebVTT encoder
  107. ┌────────────────────────────┐
  108. │ libavdevice │
  109. └────────────────────────────┘
  110. • QTKit input device
  111. • GDI screen grabbing for Windows
  112. • AVFoundation input device
  113. ┌────────────────────────────┐
  114. │ libavformat │
  115. └────────────────────────────┘
  116. • subfile protocol
  117. • Phantom Cine demuxer
  118. • Alternative rendition support for HTTP Live Streaming
  119. • Magic Lantern Video (MLV) demuxer
  120. • Image format auto-detection
  121. • LRC lyric file demuxer and muxer
  122. • Samba protocol (via libsmbclient)
  123. • WebM DASH Manifest muxer
  124. ┌────────────────────────────┐
  125. │ libavfilter │
  126. └────────────────────────────┘
  127. • shuffleplanes filter
  128. • libbs2b-based stereo-to-binaural audio filter
  129. • showcqt multimedia filter
  130. • zoompan filter
  131. • signalstats filter
  132. • hqx filter (hq2x, hq3x, hq4x)
  133. • flanger filter
  134. • libfribidi support in drawtext
  135. ┌────────────────────────────┐
  136. │ ⚠ Behaviour changes │
  137. └────────────────────────────┘
  138. • libx264 reference frames count is now limited depending on level chosen
  139. • Because of the new image format auto-detection feature, you don't need to
  140. specify image format when decoding an image with no extension.