LICENSE 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. FFmpeg:
  2. Most files in FFmpeg are under the GNU Lesser General Public License version 2.1
  3. or later (LGPL v2.1+). Read the file COPYING.LGPLv2.1 for details. Some other
  4. files have MIT/X11/BSD-style licenses. In combination the LGPL v2.1+ applies to
  5. FFmpeg.
  6. Some optional parts of FFmpeg are licensed under the GNU General Public License
  7. version 2 or later (GPL v2+). See the file COPYING.GPLv2 for details. None of
  8. these parts are used by default, you have to explicitly pass --enable-gpl to
  9. configure to activate them. In this case, FFmpeg's license changes to GPL v2+.
  10. Specifically, the GPL parts of FFmpeg are
  11. - libpostproc
  12. - libmpcodecs
  13. - optional x86 optimizations in the files
  14. libavcodec/x86/idct_mmx.c
  15. - libutvideo encoding/decoding wrappers in
  16. libavcodec/libutvideo*.cpp
  17. - the X11 grabber in libavdevice/x11grab.c
  18. - the swresample test app in
  19. libswresample/swresample-test.c
  20. - the texi2pod.pl tool
  21. - the following filters in libavfilter:
  22. - f_ebur128.c
  23. - vf_blackframe.c
  24. - vf_boxblur.c
  25. - vf_colormatrix.c
  26. - vf_cropdetect.c
  27. - vf_decimate.c
  28. - vf_delogo.c
  29. - vf_geq.c
  30. - vf_histeq.c
  31. - vf_hqdn3d.c
  32. - vf_kerndeint.c
  33. - vf_mcdeint.c
  34. - vf_mp.c
  35. - vf_owdenoise.c
  36. - vf_perspective.c
  37. - vf_phase.c
  38. - vf_pp.c
  39. - vf_pullup.c
  40. - vf_sab.c
  41. - vf_smartblur.c
  42. - vf_spp.c
  43. - vf_stereo3d.c
  44. - vf_super2xsai.c
  45. - vf_tinterlace.c
  46. - vf_yadif.c
  47. - vsrc_mptestsrc.c
  48. Should you, for whatever reason, prefer to use version 3 of the (L)GPL, then
  49. the configure parameter --enable-version3 will activate this licensing option
  50. for you. Read the file COPYING.LGPLv3 or, if you have enabled GPL parts,
  51. COPYING.GPLv3 to learn the exact legal terms that apply in this case.
  52. There are a handful of files under other licensing terms, namely:
  53. * The files libavcodec/jfdctfst.c, libavcodec/jfdctint_template.c and
  54. libavcodec/jrevdct.c are taken from libjpeg, see the top of the files for
  55. licensing details. Specifically note that you must credit the IJG in the
  56. documentation accompanying your program if you only distribute executables.
  57. You must also indicate any changes including additions and deletions to
  58. those three files in the documentation.
  59. external libraries
  60. ==================
  61. FFmpeg can be combined with a number of external libraries, which sometimes
  62. affect the licensing of binaries resulting from the combination.
  63. compatible libraries
  64. --------------------
  65. The following libraries are under GPL:
  66. - frei0r
  67. - libcdio
  68. - libutvideo
  69. - libvidstab
  70. - libx264
  71. - libxavs
  72. - libxvid
  73. When combining them with FFmpeg, FFmpeg needs to be licensed as GPL as well by
  74. passing --enable-gpl to configure.
  75. The OpenCORE and VisualOn libraries are under the Apache License 2.0. That
  76. license is incompatible with the LGPL v2.1 and the GPL v2, but not with
  77. version 3 of those licenses. So to combine these libraries with FFmpeg, the
  78. license version needs to be upgraded by passing --enable-version3 to configure.
  79. incompatible libraries
  80. ----------------------
  81. The Fraunhofer AAC library, FAAC and aacplus are under licenses which
  82. are incompatible with the GPLv2 and v3. We do not know for certain if their
  83. licenses are compatible with the LGPL.
  84. If you wish to enable these libraries, pass --enable-nonfree to configure.
  85. But note that if you enable any of these libraries the resulting binary will
  86. be under a complex license mix that is more restrictive than the LGPL and that
  87. may result in additional obligations. It is possible that these
  88. restrictions cause the resulting binary to be unredistributeable.