]> git.sesse.net Git - ffmpeg/blob - LICENSE.md
lavf/srtdec: fix probing files with negative first timestamps
[ffmpeg] / LICENSE.md
1 # License
2
3 Most files in FFmpeg are under the GNU Lesser General Public License version 2.1
4 or later (LGPL v2.1+). Read the file `COPYING.LGPLv2.1` for details. Some other
5 files have MIT/X11/BSD-style licenses. In combination the LGPL v2.1+ applies to
6 FFmpeg.
7
8 Some optional parts of FFmpeg are licensed under the GNU General Public License
9 version 2 or later (GPL v2+). See the file `COPYING.GPLv2` for details. None of
10 these parts are used by default, you have to explicitly pass `--enable-gpl` to
11 configure to activate them. In this case, FFmpeg's license changes to GPL v2+.
12
13 Specifically, the GPL parts of FFmpeg are:
14
15 - libpostproc
16 - optional x86 optimization in the files
17     - `libavcodec/x86/flac_dsp_gpl.asm`
18     - `libavcodec/x86/idct_mmx.c`
19     - `libavfilter/x86/vf_removegrain.asm`
20 - the X11 grabber in `libavdevice/x11grab.c`
21 - the following building and testing tools
22     - `compat/solaris/make_sunver.pl`
23     - `doc/t2h.pm`
24     - `doc/texi2pod.pl`
25     - `libswresample/swresample-test.c`
26     - `tests/checkasm/*`
27     - `tests/tiny_ssim.c`
28 - the following filters in libavfilter:
29     - `f_ebur128.c`
30     - `vf_blackframe.c`
31     - `vf_boxblur.c`
32     - `vf_colormatrix.c`
33     - `vf_cover_rect.c`
34     - `vf_cropdetect.c`
35     - `vf_delogo.c`
36     - `vf_eq.c`
37     - `vf_find_rect.c`
38     - `vf_fspp.c`
39     - `vf_geq.c`
40     - `vf_histeq.c`
41     - `vf_hqdn3d.c`
42     - `vf_interlace.c`
43     - `vf_kerndeint.c`
44     - `vf_mcdeint.c`
45     - `vf_mpdecimate.c`
46     - `vf_owdenoise.c`
47     - `vf_perspective.c`
48     - `vf_phase.c`
49     - `vf_pp.c`
50     - `vf_pp7.c`
51     - `vf_pullup.c`
52     - `vf_repeatfields.c`
53     - `vf_sab.c`
54     - `vf_smartblur.c`
55     - `vf_spp.c`
56     - `vf_stereo3d.c`
57     - `vf_super2xsai.c`
58     - `vf_tinterlace.c`
59     - `vf_uspp.c`
60     - `vsrc_mptestsrc.c`
61
62 Should you, for whatever reason, prefer to use version 3 of the (L)GPL, then
63 the configure parameter `--enable-version3` will activate this licensing option
64 for you. Read the file `COPYING.LGPLv3` or, if you have enabled GPL parts,
65 `COPYING.GPLv3` to learn the exact legal terms that apply in this case.
66
67 There are a handful of files under other licensing terms, namely:
68
69 * The files `libavcodec/jfdctfst.c`, `libavcodec/jfdctint_template.c` and
70   `libavcodec/jrevdct.c` are taken from libjpeg, see the top of the files for
71   licensing details. Specifically note that you must credit the IJG in the
72   documentation accompanying your program if you only distribute executables.
73   You must also indicate any changes including additions and deletions to
74   those three files in the documentation.
75 * `tests/reference.pnm` is under the expat license.
76
77
78 ## External libraries
79
80 FFmpeg can be combined with a number of external libraries, which sometimes
81 affect the licensing of binaries resulting from the combination.
82
83 ### Compatible libraries
84
85 The following libraries are under GPL:
86 - frei0r
87 - libcdio
88 - librubberband
89 - libvidstab
90 - libx264
91 - libx265
92 - libxavs
93 - libxvid
94
95 When combining them with FFmpeg, FFmpeg needs to be licensed as GPL as well by
96 passing `--enable-gpl` to configure.
97
98 The OpenCORE and VisualOn libraries are under the Apache License 2.0. That
99 license is incompatible with the LGPL v2.1 and the GPL v2, but not with
100 version 3 of those licenses. So to combine these libraries with FFmpeg, the
101 license version needs to be upgraded by passing `--enable-version3` to configure.
102
103 ### Incompatible libraries
104
105 There are certain libraries you can combine with FFmpeg whose licenses are not
106 compatible with the GPL and/or the LGPL. If you wish to enable these
107 libraries, even in circumstances that their license may be incompatible, pass
108 `--enable-nonfree` to configure. But note that if you enable any of these
109 libraries the resulting binary will be under a complex license mix that is
110 more restrictive than the LGPL and that may result in additional obligations.
111 It is possible that these restrictions cause the resulting binary to be
112 unredistributable.
113
114 The Fraunhofer FDK AAC and OpenSSL libraries are under licenses which are
115 incompatible with the GPLv2 and v3. To the best of our knowledge, they are
116 compatible with the LGPL.
117
118 The FAAC library is incompatible with all versions of GPL and LGPL.
119
120 The NVENC library, while its header file is licensed under the compatible MIT
121 license, requires a proprietary binary blob at run time, and is deemed to be
122 incompatible with the GPL. We are not certain if it is compatible with the
123 LGPL, but we require `--enable-nonfree` even with LGPL configurations in case
124 it is not.