1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: FFmpeg
Upstream-Contact: ffmpeg-devel@ffmpeg.org
Source: https://ffmpeg.org
Comment:
Most files in FFmpeg are licensed under the GNU Lesser General Public License
version 2.1 or later (LGPL v2.1+), but some optional parts of FFmpeg are
licensed under the GNU General Public License version 2 or later (GPL v2+)
and a few have different, but compatible licenses.
.
For building the default Debian packages some of the GPL licensed files are used,
so the resulting binaries are licensed under GPL v2+.
For libavcodec/libavfilter an extra flavor is built, which links against external
libraries licensed under the Apache License 2.0, which makes it effectively licensed
under the GPL v3+
The HTML documentation /usr/share/doc/ffmpeg/manual/*.html in the ffmpeg-doc
package is effectively licensed under GPL-3+, because during its creation
the GPL-3+ licensed file doc/t2h.pm is used.
.
FFmpeg can also be combined with non-free libraries, which would make the
resulting binaries unredistributable.
But this is not done for the Debian packages.
Files: *
Copyright:
Christian Holschuh
Sebastien Bechet <s.bechet@av7.net>
1990, James Ashton - Sydney University
1993, Computer Science, Speech Group
1994-2012, the Xiph.Org Foundation and contributors
1997-1999, H. Dietz
1997-1999, R. Fisher
1998-2009, Conifer Software
1999, Intel Corporation
1999, Nick Bailey
1999, Roger Hardiman
1999-2000, Sebastien Rougeaux <sebastien.rougeaux@anu.edu.au>
1999-2001, Chris Bagwell <cbagwell@sprynet.com>
2000, Chris Ausbrooks <weed@bucket.pp.ualr.edu>
2000, Fabien COELHO <fabien@coelho.net>
2000, John Walker
2000-2001, 2003, Nick Kurshev <nickols_k@mail.ru>
2000-2001, Michel Lespinasse <walken@zoy.org>
2000-2001, Peter Gubanov <peter@elecard.net.ru>
2000-2003, 2005, 2010, Fabrice Bellard
2001, 2005-2014, Peter Ross <pross@xvid.org>
2001, 2006, Daniel Maas <dmaas@dcine.com> <dmaas@maasdigital.com>
2001, Dan Dennedy <dan@dennedy.org>
2001, Heikki Leinonen
2001, Juan J. Sierralta P
2001, Lionel Ulmer
2001, Tim Ferguson
2001-2003, BERO <bero@geocities.co.jp>
2001-2008, 2013, 2015-2016, The FFmpeg project
2001-2010, Krzysztof Foltman, Markus Schmidt, Thor Harald Johansen, Damien Zammit, Vladimir Sadovnikov and others
2001-2016, Michael Niedermayer <michaelni@gmx.at>
2002, 2005, Francois Revol <revol@free.fr>
2002, Anders Johansson <ajh@atri.curtin.edu.au>
2002, Brian Foley
2002, Dieter Shirley
2002, Falk Hueffner <falk@debian.org>
2002, Frederic 'dilb' Boulay <dilb@handhelds.org>
2002, Gunnar Monell <gmo@linux.nu>
2002, Laszlo Torok <torokl@alpha.dfmk.hu>
2002, Lennert Buytenhek <buytenh@gnu.org>
2002, Mark Hills <mark@pogo.org.uk>
2002, Remi Guyomarch <rguyom@pobox.com>
2002, Steve O'Hara-Smith
2002, The Xine project
2002, Zdenek Kabelac <kabi@informatics.muni.cz>
2002-2004, 2006-2013, Maxim Poliakovski
2002-2005, Roberto Togni
2002-2006, Alex Beregszaszi
2003, 2006-2007, Michel Bardiaux <mbardiaux@mediaxim.be>
2003, 2008-2011, Sascha Sommer <saschasommer@freenet.de>
2003, 2014, Pascal Massimino <skal@planet-d.net> <pascal.massimino@gmail.com>
2003, Donnie Smith
2003, Dr. Tim Ferguson
2003, Ewald Snel
2003, Gustavo Sverzut Barbieri <gsbarbieri@yahoo.com.br>
2003, Ivan Kalvachev
2003, James Klicman <james@klicman.org>
2003, Max Krasnyansky <maxk@qualcomm.com>
2003, Rich Felker
2003, Thomas Raivio
2003, Tinic Uro
2003-2004, 2006, Roman Shaposhnik
2003-2004, 2007, Mike Melanson <melanson@pcisys.net>
2003-2004, Romain Dolbeau <romain@dolbeau.org>
2003-2005, by Christopher R. Hertel <crh@ubiqx.mn.org>
2003-2011, x264 project
2003-2014, Loren Merritt <lorenm@u.washington.edu>
2004, 2007, Benjamin Zores <ben@geexbox.org>
2004, 2007, Marc Hoffman <marc.hoffman@analog.com>
2004, AGAWA Koji <i@atty.jp>
2004, Adam Thayer <krevnik@comcast.net>
2004, Gildas Bazin <gbazin@videolan.org>
2004, Maarten Daniels
2004-2005, Denes Balatoni <dbalatoni@programozo.hu>
2004-2006, Lennart Poettering
2004-2007, Eric Lasota
2004-2014, Konstantin Shishkov <kostya.shishkov@gmail.com>
2005, 2007, Wolfram Gloger
2005, 2007-2008, Ian Caulfield
2005, Alban Bedel <albeu@free.fr>
2005, Anonymous
2005, David Hammerton
2005, DivX, Inc.
2005, Jeff Muizelaar
2005, Matthieu CASTET
2005, Ole André Vadla Ravnås <oleavr@gmail.com>
2005, Roine Gustafsson
2005, Steve Underwood <steveu@coppice.org>
2005, Vidar Madsen
2005, Wim Taymans
2005, Zoltan Hidvegi <hzoli@hzoli.com>
2005-2006, Oded Shimon <ods15@ods15.dyndns.org>
2005-2006, Robert Edele <yartrebo@earthlink.net>
2005-2007, 2011-2015, Luca Barbato <lu_zero@gentoo.org>
2005-2008, 2013, Diego Biurrun <diego@biurrun.de>
2005-2011, Benjamin Larsson
2005-2011, 2013-2014, 2016, Reimar Döffinger <Reimar.Doeffinger@gmx.de>
2005-2012, Måns Rullgård <mans@mansr.com>
2006, 2008, Gregory Montoir <cyx@users.sourceforge.net>
2006, 2009, Stefan Gehrer <stefan.gehrer@gmx.de>
2006, 2015, Steve Lhomme
2006, Corey Hickey
2006, Cyril Zorin
2006, Guillaume Poirier <gpoirier@mplayerhq.hu>
2006, Industrial Light & Magic, a division of Lucas Digital Ltd. LLC
2006, John Maddock
2006, Kartikey Mahendra BHATT <bhattkm@gmail.com>
2006, Patrick Guimond
2006, Paul Richards <paul.richards@gmail.com>
2006, Smartjog S.A.S, Baptiste Coudurier <baptiste.coudurier@gmail.com> <baptiste.coudurier@smartjog.com>
2006, Thijs Vermeir <thijs.vermeir@barco.com>
2006-2007, Maxim Gavrilov <maxim.gavrilov@gmail.com>
2006-2007, Reynaldo H. Verdejo Pinochet
2006-2007, Ryan Martell <rdm4@martellventures.com>
2006-2007, SmartJog S.A., Baptiste Coudurier <baptiste.coudurier@smartjog.com>
2006-2009, 2012, Rob Sykes <robs@users.sourceforge.net>
2006-2009, Luca Abeni <lucabe72@email.it>
2006-2009, Robert Swain <rob@opendot.cl>
2006-2010, 2013-2014, Ramiro Polla <ramiro.polla@gmail.com>
2006-2010, Aurelien Jacobs <aurel@gnuage.org>
2006-2010, Prakash Punnoor <prakash@punnoor.de>
2006-2011, Baptiste Coudurier <baptiste.coudurier@free.fr> <baptiste.coudurier@smartjog.com>
2006-2011, Xvid Solutions GmbH
2006-2013, Justin Ruggles <justin.ruggles@gmail.com>
2007, 2009, Björn Axelsson
2007, 2010, 2013, Anssi Hannula <anssi.hannula@gmail.com> <anssi.hannula@iki.fi>
2007, 2010, Bobby Bingham
2007, 2010-2015, Nicolas George <nicolas.george@normalesup.org>
2007, 2012, 2014-2015, Collabora Ltd
2007, 2014, Benoit Fouet <benoit.fouet@free.fr>
2007, 2015 Edward Hervey
2007, Alexis Ballier
2007, Christian Ohm
2007, Clemens Fruhwirth <clemens@endorphin.org>
2007, Kamil Nowosad
2007, Nicholas Tung
2007, Nokia Corporation
2007, Philippe Kalaf
2007, Richard Spindler
2007, Ulion
2007-2008, 2011, Vladimir Voroshilov
2007-2008, Ivo van Poorten
2007-2008, Joseph Artsimovich <jart@users.sourceforge.net>
2007-2008, Marco Gerards <marco@gnu.org>
2007-2008, Siarhei Siamashka <ssvb@users.sourceforge.net>
2007-2008, UAB "DKD"
2007-2009, Bartlomiej Wolowiec <bartek.wolowiec@gmail.com>
2007-2010, 2012-2015, Christophe GISQUET <christophe.gisquet@free.fr> <word1.word2@gmail.com> <christophe.gisquet@gmail.com>
2007-2010, David Conrad <lessen42@gmail.com>
2007-2011, Vitor Sessak <vitor1001@gmail.com>
2007-2013, Stefano Sabatini <stefano.sabatini-lala@poste.it> <stefasab@gmail.com>
2007-2016, Ronald S. Bultje <rsbultje@gmail.com>
2008, 2010, Alexander Strange <astrange@ithinksw.com>
2008, 2010, Eli Friedman <eli.friedman@gmail.com>
2008, 2010-2011, Zhentan Feng <spyfeng@gmail.com>
2008, Affine Systems, Inc (Michael Sullivan, Bobby Impollonia)
2008, Alessandro Sappia
2008, BBC, Anuradha Suraparaju <asuraparaju@gmail.com>
2008, NVIDIA
2008, Robert Marston
2008, Sisir Koppaka
2008, Victor Paesa
2008, vmrsss
2008-2009, Andrej Stepanchuk
2008-2009, Jaikrishnan Menon <realityman@gmx.net>
2008-2009, Splitted-Desktop Systems
2008-2010, 2012, Laurent Aimar <fenrir@videolan.org>
2008-2010, Paul Kendall <paul@kcbbs.gen.nz>
2008-2012, Alexander E. Patrakov
2008-2013, Alex Converse <alex.converse@gmail.com>
2009, 2011, Sebastian Gesemann
2009, 2012, Nathan Caldwell <saintdev@gmail.com>
2009, 2013, Christian Schmidt
2009, Colin McQuillan
2009, Dylan Yudaken
2009, Giliard B. de Freitas <giliarde@gmail.com>
2009, Jimmy Christensen
2009, Joshua Warner
2009, Kenan Gillet
2009, Kostya Shishkov
2009, Michael Tison
2009, Naotoshi Nojiri
2009, Nicolas Martin <martinic@iro.umontreal.ca>
2009, Peter Holik
2009, Samalyse
2009, Sebastien Lucas <sebastien.lucas@gmail.com>
2009, Stephen Backway
2009, Thomas P. Higdon <thomas.p.higdon@gmail.com>
2009, Tobias Bindhammer
2009, Toshimitsu Kimura
2009, Xuggle Incorporated
2009, Zuxy Meng <zuxy.meng@gmail.com>
2009-2010, 2013, Daniel Verkamp <daniel@drv.nu>
2009-2010, Fiona Glaser <fiona@x264.com>
2009-2010, 2013-2014, 2016 Thilo Borgmann <thilo.borgmann@mail.de>
2009-2010, Howard Chu
2009-2013, 2015, James Darnley <james.darnley@gmail.com>
2009-2015, Martin Storsjo
2010, 2012, 2016, Google, Inc
2010, 2012, Rafaël Carré <funman@videolan.org>
2010, 2013, Georg Martius <georg.martius@web.de>
2010, Adrian Daerr
2010, Amanda, Y.N. Wu <amanda11192003@gmail.com>
2010, Brandon Mintern
2010, Daniel G. Taylor <dan@programmer-art.org>
2010, Francesco Lavra <francescolavra@interfree.it>
2010, Hans de Goede <hdegoede@redhat.com>
2010, Holger Lubitz
2010, Jacob Meuser
2010, Josh Allmann
2010, Marcelo Galvao Povoa
2010, Mark Heath <mjpeg0@silicontrip.org>
2010, Mark Nauwelaerts
2010, Michael Chinen
2010, Michele Orrù
2010, Mohamed Naufal Basheer <naufal11@gmail.com>
2010, Nolan Lum <nol888@gmail.com>
2010, Rob Clark <rob@ti.com>
2010, Romain Degez
2010, S.N. Hemanth Meenakshisundaram <smeenaks@ucsd.edu>
2010, Sebastian Vater <cdgs.basty@googlemail.com>
2010, Tomas Härdin
2010-2011, 2013-2015, Janne Grunau <janne-libav@jannau.net>
2010-2011, Anatoly Nenashev
2010-2011, Elvis Presley
2010-2012, 2015, Carl Eugen Hoyos
2010-2013, 2015, Anton Khirnov <anton@khirnov.net>
2010-2013, Philip Langdale <ffmpeg.philipl@overt.org> <philipl@overt.org>
2011, 2014-2016 Kieran Kunhya <kieran@kunhya.com>
2011, Anatoliy Wasserman
2011, Andreas Öman
2011, Jordi Ortiz
2011, Juan Carlos Rodriguez <ing.juancarlosrodriguez@hotmail.com>
2011, KO Myung-Hun <komh@chollian.net>
2011, Matthew Hoops <clone2727@gmail.com>
2011, Max Horn
2011, Michael Karcher
2011, Mina Nagy Zaki
2011, Miroslav Slugeň <Thunder.m@seznam.cz>
2011, MirriAd Ltd
2011, Oskar Arvidsson
2011, Roger Pau Monné <roger.pau@entel.upc.edu>
2011, Sven Hesse <drmccoy@drmccoy.de>
2011, Thomas Kuehnel
2011-2012, Hyllian/Jararaca <sergiogdb@gmail.com>
2011-2012, Mark Himsley
2011-2012, Mashiat Sarker Shakkhar
2011-2012, Michael Bradshaw <mjbshaw@gmail.com>
2011-2012, Sebastien Zwickert
2011-2012, Smartjog S.A.S, Clément Bœsch <clement.boesch@smartjog.com>
2011-2013, Daniel Kang <daniel.d.kang@gmail.com>
2011-2016, Clément Bœsch <u@pkh.me> <clement@stupeflix.com>
2011-2015, Derek Buitenhuis
2011-2016, Paul B Mahol
2012, 2014, Georg Lippitsch <georg.lippitsch@gmx.at>
2012, Aleksi Nurmi
2012, Andrew D'Addesio
2012, Antti Seppälä
2012, AvxSynth Team
2012, British Broadcasting Corporation
2012, David Kment
2012, Fredrik Mellbin
2012, Jan Ekström
2012, Jeremy Tran
2012, Laurent de Soras
2012, Li Cao <li@multicorewareinc.com>
2012, Pavel Koshevoy <pkoshevoy@gmail.com>
2012, Peng Gao <peng@multicorewareinc.com>
2012, Petri Hintukainen <phintuka@users.sourceforge.net>
2012, Robert Nagy <ronag89@gmail.com>
2012, Samuel Pitoiset
2012, Steven Robertson
2012, VLC authors and VideoLAN
2012, Vitaliy E Sugrobov
2012, Xidorn Quan
2012-2013, Andrey Utkin <andrey.krieger.utkin@gmail.com>
2012-2013, Aneesh Dogra (lionaneesh) <lionaneesh@gmail.com>
2012-2013, Gildas Cocherel
2012-2013, Guillaume Martres <smarter@ubuntu.com>
2012-2013, Mickael Raulet
2012-2013, Oka Motofumi <chikuzen.mo@gmail.com>
2012-2013, Rudolf Polzer <divverent@xonotic.org>
2012-2013, Wassim Hamidouche
2012-2013, Wei Gao <weigao@multicorewareinc.com>
2012-2016, James Almer <jamrial@gmail.com>
2013, Anand Meher Kotra
2013, Ash Hughes
2013, Calvin Walton <calvin.walton@kepstin.ca>
2013, Darryl Wallace <wallacdj@gmail.com>
2013, Dirk Farin <dirk.farin@gmail.com>
2013, Fredrik Mellbin
2013, Jeff Moguillansky
2013, Lenny Wang <lwanghpc@gmail.com>
2013, MIPS Technologies, Inc., California.
2013, Marton Balint
2013, Matthew Heaney
2013, Rl, Aetey Global Technologies AB
2013, Rémi Denis-Courmont
2013, VTT
2013, Vadim Kalinsky <vadim@kalinsky.ru>
2013, Xiaolei Yu <dreifachstein@gmail.com>
2013, Yukinori Yamazoe
2013-2014, Andrew Kelley
2013-2014, Deti Fliegl
2013-2014, Lukasz Marek <lukasz.m.luki@gmail.com>
2013-2014, Mozilla Corporation
2013-2014, Nicolas Bertrand <nicoinattendu@gmail.com>
2013-2014, Pierre-Edouard Lepere
2013-2014, RISC OS Open Ltd <bavison@riscosopen.org>
2013-2015, Andreas Fuchs
2013-2015, Seppo Tomperi <seppo.tomperi@vtt.fi>
2013-2015, Wolfgang Hrauda,
2013-2015, Vittorio Giovara <vittorio.giovara@gmail.com>
2013-2015, Tiancheng "Timothy" Gu <timothygu99@gmail.com>
2014, 2016, Neil Birkbeck <birkbeck@google.com>
2014, Alexandra Hájková
2014, Aman Gupta <ffmpeg@tmm1.net>
2014, Daniel Oberhoff
2014, Dave Rice @dericed
2014, Eejya Singh
2014, James Yu <james.yu@linaro.org>
2014, Marvin Scholz
2014, Nicholas Robbins
2014, Oleksij Rempel <linux@rempel-privat.de>
2014, Rong Yan
2014, Samsung Electronics
2014, StarBrilliant <m13253@hotmail.com>
2014, Tim Walker <tdskywalker@gmail.com>
2014-2015, Arwa Arif <arwaarif1994@gmail.com>
2014-2015, Hendrik Leppkes
2014-2015, Peter Meerwald <pmeerw@pmeerw.net>
2014-2015, Supraja Meedinti
2014-2015, Vignesh Venkatasubramanian
2014-2016, Muhammad Faiz <mfcc64@gmail.com>
2014-2016, Thomas Volkert <thomas@homer-conferencing.com>
2015, Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
2015, Anshul Maheshwari
2015, Claudio Freire
2015, Donny Yang
2015, Eran Kornblau <erankor@gmail.com>
2015, Gilles Chanteperdrix <gch@xenomai.org>
2015, Henrik Gramner <henrik@gramner.com>
2015, Himangi Saraogi <himangi774@gmail.com>
2015, Imagination Technologies Ltd
2015, Kevin Wheatley <kevin.j.wheatley@gmail.com>
2015, LoRd_MuldeR <mulder2@gmx.de>
2015, Manojkumar Bhosale <Manojkumar.Bhosale@imgtec.com>
2015, Mats Peterson
2015, Matthew Waters <matthew@centricular.com>
2015, Parag Salasakar <Parag.Salasakar@imgtec.com>
2015, Pedro Arthur <bygrandao@gmail.com>
2015, Rick Kern <kernrj@gmail.com>
2015, Roger Pack
2015, Sebastian Dröge <sebastian@centricular.com>
2015, Shivraj Patil <Shivraj.Patil@imgtec.com>
2015, Stupeflix
2015, Tampere University of Technology
2015, Tom Butterworth <bangnoise@gmail.com>
2015, Urvang Joshi
2015, Vesselin Bontchev
2015, Zhang Rui <bbcallen@gmail.com>
2015, Zhang Shuangshuang <zhangshuangshuang@ict.ac.cn>
2015-2016, Ganesh Ajjanagadde <gajjanaq@gmail.com>
2015-2016, Kyle Swanson <k@ylo.ph>
2015-2016 Loongson Technology Corporation Limited
2015-2016 Zhou Xiaoyong <zhouxiaoyong@loongson.cn>
2015-2016, Matthieu Bouron <matthieu.bouron@stupeflix.com>
2015-2016, Open Broadcast Systems Ltd.
2015-2016, Rodger Combs <rodger.combs@gmail.com>
2015-2016, Rostislav Pehlivanov <atomnuker@gmail.com>
2015-2016, Timo Rothenpieler <timo@rothenpieler.org>
2016, Davinder Singh (DSM_) <ds.mudhar<@gmail.com>
2016, Floris Sluiter
2016, Jan Sebechlebsky
2016, Josh de Kock
2016, KongQun Yang <kqyang@google.com>
2016, Marton Balnt <cus@passwd.hu>
2016, Thomas Mundt <loudmax@yahoo.de>
2016, Tobias Rapp
2016, Umair Khan <omerjerk@gmail.com>
2016, foo86
License: LGPL-2.1+
Comment:
You should have received a copy of the GNU Lesser General Public
License along with FFmpeg; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
.
On Debian systems, the full text of the GNU Lesser General Public License
version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'.
.
The copyright details for Joseph Artsimovich and UAB "DKD" were extracted
from the referenced source:
<http://samples.mplayerhq.hu/A-codecs/Nelly_Moser/ASAO/ASAO.zip>.
Files:
libavfilter/af_chorus.c
libavfilter/af_earwax.c
Copyright:
1998, Juergen Mueller And Sundry Contributors
2000, Edward Beingessner And Sundry Contributors
2011, Mina Nagy Zaki
2015, Paul B Mahol
License: LGPL-2.1+ and Sundry
Comment:
On Debian systems, the full text of the GNU Lesser General Public License
version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'.
.
You should have received a copy of the GNU Lesser General Public
License along with FFmpeg; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Files:
doc/texi2pod.pl
libavcodec/x86/flac_dsp_gpl.asm
libavdevice/x11grab.c
libavfilter/f_ebur128.c
libavfilter/interlace.h
libavfilter/tinterlace.h
libavfilter/vf_blackframe.c
libavfilter/vf_boxblur.c
libavfilter/vf_colormatrix.c
libavfilter/vf_cover_rect.c
libavfilter/vf_cropdetect.c
libavfilter/vf_delogo.c
libavfilter/vf_eq.c
libavfilter/vf_eq.h
libavfilter/vf_find_rect.c
libavfilter/vf_fspp.c
libavfilter/vf_fspp.h
libavfilter/vf_geq.c
libavfilter/vf_histeq.c
libavfilter/vf_hqdn3d.c
libavfilter/vf_hqdn3d.h
libavfilter/vf_interlace.c
libavfilter/vf_kerndeint.c
libavfilter/vf_mcdeint.c
libavfilter/vf_mpdecimate.c
libavfilter/vf_nnedi.c
libavfilter/vf_owdenoise.c
libavfilter/vf_perspective.c
libavfilter/vf_phase.c
libavfilter/vf_pp.c
libavfilter/vf_pp7.c
libavfilter/vf_pp7.h
libavfilter/vf_pullup.c
libavfilter/vf_pullup.h
libavfilter/vf_repeatfields.c
libavfilter/vf_sab.c
libavfilter/vf_smartblur.c
libavfilter/vf_spp.c
libavfilter/vf_spp.h
libavfilter/vf_stereo3d.c
libavfilter/vf_super2xsai.c
libavfilter/vf_tinterlace.c
libavfilter/vf_uspp.c
libavfilter/vf_vaguedenoiser.c
libavfilter/vsrc_mptestsrc.c
libavfilter/x86/vf_eq.c
libavfilter/x86/vf_fspp.asm
libavfilter/x86/vf_fspp_init.c
libavfilter/x86/vf_hqdn3d_init.c
libavfilter/x86/vf_interlace.asm
libavfilter/x86/vf_interlace_init.c
libavfilter/x86/vf_pp7.asm
libavfilter/x86/vf_pp7_init.c
libavfilter/x86/vf_pullup.asm
libavfilter/x86/vf_pullup_init.c
libavfilter/x86/vf_removegrain.asm
libavfilter/x86/vf_spp.c
libavfilter/x86/vf_tinterlace_init.c
libavfilter/yadif.h
libpostproc/postprocess.c
libpostproc/postprocess.h
libpostproc/postprocess_altivec_template.c
libpostproc/postprocess_internal.h
libpostproc/postprocess_template.c
libswresample/tests/swresample.c
tests/checkasm/aarch64/checkasm.S
tests/checkasm/alacdsp.c
tests/checkasm/arm/checkasm.S
tests/checkasm/bswapdsp.c
tests/checkasm/checkasm.c
tests/checkasm/checkasm.h
tests/checkasm/flacdsp.c
tests/checkasm/fmtconvert.c
tests/checkasm/h264dsp.c
tests/checkasm/h264pred.c
tests/checkasm/h264qpel.c
tests/checkasm/jpeg2000dsp.c
tests/checkasm/pixblockdsp.c
tests/checkasm/synth_filter.c
tests/checkasm/v210enc.c
tests/checkasm/vf_blend.c
tests/checkasm/videodsp.c
tests/checkasm/vp9dsp.c
tests/checkasm/x86/checkasm.asm
tools/coverity.c
tests/tiny_ssim.c
Copyright:
Wilbert Dijkhof
1997-1998, Rasca, Berlin
1997-2001, ZSNES Team <zsknight@zsnes.com> <_demo_@zsnes.com>
1999-2001, Free Software Foundation, Inc.
2000-2002, Fabrice Bellard
2001, 2003, Donald A. Graft
2001-2003, 2005-2007, 2011-2012, 2014-2015, Michael Niedermayer <michaelni@gmx.at>
2002, A'rpi
2002, Jindrich Makovicka <makovick@gmail.com>
2002-2003, Brian J. Murrell
2003, Daniel Moreno <comac@comac.darktech.org>
2003, LeFunGus <lefungus@altern.org>
2003-2004, Karl H. Beckers, Frankfurt
2003, Michael Zucchi <notzed@ximian.com>
2003, Rich Felker
2003-2004, Tobias Diedrich
2003-2013, Loren Merritt <lorenm@u.washington.edu>
2004, Romain Dolbeau <romain@dolbeau.org>
2004, Ville Saari
2005, Nikolaj Poroshin <porosh3@psu.ru>
2006, Clemens Fruhwirth <clemens@endorphin.org>
2006, Edouard Gomez <ed.gomez@free.fr>
2006, Ivo van Poorten
2006-2007, 2010-2011, Kevin Stone
2006, Julian Hall
2010, Baptiste Coudurier <baptiste.coudurier@free.fr>
2010, Gordon Schmidt <gordon.schmidt@s2000.tu-chemnitz.de>
2010, Niel van der Westhuizen <nielkie@gmail.com>
2010-2012, Stefano Sabatini <stefano.sabatini-lala@poste.it> <stefasab@gmail.com>
2012-2013, Clément Bœsch <u@pkh.me> <clement@stupeflix.com>
2012, 2015, Henrik Gramner
2012, Jeremy Tran
2013, 2015, Jean Delvare <jdelvare@suse.com>
2013, Vittorio Giovara <vittorio.giovara@gmail.com>
2013-2016, Paul B Mahol
2014, James Darnley <james.darnley@gmail.com>
2014, Kieran Kunhya <kierank@obe.tv>
2014, Red Hat, Inc.
2014-2015, Arwa Arif <arwaarif1994@gmail.com>
2015, James Almer
2015, Janne Grunau
2015-2016, Martin Storsjo
2015-2016, Ronald S. Bultje <rsbultje@gmail.com>
2015-2016, Tiancheng "Timothy" Gu
License: GPL-2+
FFmpeg is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
.
FFmpeg is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
Comment:
On Debian systems, the full text of the GNU General Public License
version 2 can be found in the file `/usr/share/common-licenses/GPL-2'.
.
You should have received a copy of the GNU General Public License
along with FFmpeg; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Files:
compat/avisynth/avisynth_c.h
compat/avisynth/avs/capi.h
compat/avisynth/avs/config.h
compat/avisynth/avs/types.h
compat/avisynth/avxsynth_c.h
Copyright: 2003, Kevin Atkinson
License: GPL-2+ with Avisynth exception
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
.
As a special exception, I give you permission to link to the
Avisynth C interface with independent modules that communicate with
the Avisynth C interface solely through the interfaces defined in
avisynth_c.h, regardless of the license terms of these independent
modules, and to copy and distribute the resulting combined work
under terms of your choice, provided that every copy of the
combined work is accompanied by a complete copy of the source code
of the Avisynth C interface and Avisynth itself (with the version
used to produce the combined work), being distributed under the
terms of the GNU General Public License plus this exception. An
independent module is a module which is not derived from or based
on Avisynth C Interface, such as 3rd-party filters, import and
export plugins, or graphical user interfaces.
Comment:
On Debian systems, the full text of the GNU General Public License
version 2 can be found in the file `/usr/share/common-licenses/GPL-2'.
.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA,
or visit <http://www.gnu.org/copyleft/gpl.html>.
Files:
compat/solaris/make_sunver.pl
doc/t2h.pm
Copyright:
2010-2013, Free Software Foundation, Inc.
2014, Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
2014, Tiancheng "Timothy" Gu <timothygu99@gmail.com>
License: GPL-3+
FFmpeg is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
.
FFmpeg is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
Comment:
On Debian systems, the full text of the GNU General Public License
version 3 can be found in the file `/usr/share/common-licenses/GPL-3'.
.
You should have received a copy of the GNU General Public
License along with FFmpeg; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Files:
compat/cuda/cuviddec.h
compat/cuda/nvcuvid.h
compat/nvenc/nvEncodeAPI.h
doc/bootstrap.min.css
doc/examples/avio_dir_cmd.c
doc/examples/avio_reading.c
doc/examples/decoding_encoding.c
doc/examples/demuxing_decoding.c
doc/examples/extract_mvs.c
doc/examples/filtering_audio.c
doc/examples/filtering_video.c
doc/examples/http_multiclient.c
doc/examples/metadata.c
doc/examples/muxing.c
doc/examples/qsvdec.c
doc/examples/remuxing.c
doc/examples/resampling_audio.c
doc/examples/scaling_video.c
doc/examples/transcoding.c
doc/style.min.css
libavcodec/arm/jrevdct_arm.S
libavcodec/cinepakenc.c
libavcodec/nellymoser.c
libavcodec/nellymoser.h
libavcodec/nellymoserdec.c
libavcodec/texturedsp.c
libavcodec/texturedspenc.c
libavcodec/x86/vc1dsp_init.c
libavcodec/x86/vc1dsp_mmx.c
libavfilter/vf_avgblur.c
libavfilter/vf_deband.c
libavformat/oggdec.c
libavformat/oggdec.h
libavformat/oggparseogm.c
libavformat/oggparsespeex.c
libavformat/oggparsetheora.c
libavformat/oggparsevorbis.c
tests/api/api-band-test.c
tests/api/api-codec-param-test.c
tests/api/api-flac-test.c
tests/api/api-h264-test.c
tests/api/api-seek-test.c
tests/reference.pnm
tests/api/api-threadmessage-test.c
Copyright:
2001, 2003, Fabrice Bellard
2001, Lionel Ulmer <lionel.ulmer@free.fr> <bbrox@bbrox.org>
2005, Alex Beregszaszi
2005, Måns Rullgård
2005, Matthieu CASTET
2005, Michael Ahlberg
2007, 520e17cd55896441042b14df2566a6eb610ed444
2007, 539459aeb7d425140b62a3ec7dbf6dc8e408a306
2007, a840bda5870ba11f19698ff6eb9581dfb0f95fa5
2007, Benjamin Larsson
2007, Christophe GISQUET <christophe.gisquet@free.fr>
2007, Loic Minier <lool@dooz.org>
2008, Reimar Döffinger <Reimar.Doeffinger@gmx.de>
2009, Benjamin Dobell
2009, Glass Echidna
2010, Nicolas George
2010-2016, NVIDIA Corporation
2011, 2014, Reinhard Tartler
2011-2014, Stefano Sabatini <stefano.sabatini-lala@poste.it> <stefasab@gmail.com>
2011, Tomas Härdin
2011-2014, Twitter, Inc
2012, 2014, Clément Bœsch <u@pkh.me> <clement@stupeflix.com>
2012, Matthäus G. "Anteru" Chajdas (http://anteru.net)
2013-2014, Rl, Aetey Global Technologies AB
2014, Andrey Utkin
2014, Barbara Lepage <db0company@gmail.com>
2014, Lukasz Marek <lukasz.m.luki@gmail.com>
2015, Anton Khirnov <anton@khirnov.net>
2015, Ludmila Glinskih
2015, Matthieu Bouron <matthieu.bouron@stupeflix.com>
2015, Niklas Haas
2015-2016, Paul B Mahol
2015, Stephan Holljes
2015, Vittorio Giovara <vittorio.giovara@gmail.com>
License: Expat
Files:
libavcodec/aacdec_fixed.c
libavcodec/aacsbr_fixed.c
libavcodec/ac3dec_fixed.c
libavcodec/arm/vp8dsp_armv6.S
libavcodec/fft_fixed_32.c
libavcodec/fft_init_table.c
libavcodec/fft_table.h
libavcodec/mdct_fixed_32.c
libavcodec/mips/aaccoder_mips.c
libavcodec/mips/aacdec_mips.c
libavcodec/mips/aacdec_mips.h
libavcodec/mips/aacpsdsp_mips.c
libavcodec/mips/aacpsy_mips.h
libavcodec/mips/aacsbr_mips.c
libavcodec/mips/aacsbr_mips.h
libavcodec/mips/ac3dsp_mips.c
libavcodec/mips/acelp_filters_mips.c
libavcodec/mips/acelp_vectors_mips.c
libavcodec/mips/amrwbdec_mips.c
libavcodec/mips/amrwbdec_mips.h
libavcodec/mips/celp_filters_mips.c
libavcodec/mips/celp_math_mips.c
libavcodec/mips/compute_antialias_fixed.h
libavcodec/mips/compute_antialias_float.h
libavcodec/mips/fft_mips.c
libavcodec/mips/fmtconvert_mips.c
libavcodec/mips/iirfilter_mips.c
libavcodec/mips/lsp_mips.h
libavcodec/mips/mpegaudiodsp_mips_fixed.c
libavcodec/mips/mpegaudiodsp_mips_float.c
libavcodec/mips/sbrdsp_mips.c
libavutil/fixed_dsp.c
libavutil/fixed_dsp.h
libavutil/mips/float_dsp_mips.c
libavutil/mips/libm_mips.h
libavutil/softfloat_tables.h
Copyright:
2005-2006, Oded Shimon <ods15@ods15.dyndns.org>
2006-2007, Maxim Gavrilov <maxim.gavrilov@gmail.com>
2008-2009, Robert Swain <rob@opendot.cl>
2009-2010, Alex Converse <alex.converse@gmail.com>
2010, Google Inc.
2010, Rob Clark <rob@ti.com>
2011, Mans Rullgard <mans@mansr.com>
2012-2013, MIPS Technologies, Inc., California.
License: LGPL-2.1+ and BSD-3-clause
Comment:
On Debian systems, the full text of the GNU Lesser General Public License
version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'.
.
You should have received a copy of the GNU Lesser General Public
License along with FFmpeg; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Files:
tools/cws2fws.c
tools/qt-faststart.c
Copyright:
Alex Beregszaszi
Mike Melanson <melanson@pcisys.net>
License: public-domain
This file is placed in the public domain. Use the program however you see fit.
Files:
compat/windows/makedef
libavcodec/faandct.c
libavcodec/interplayacm.c
libavcodec/libfdk-aacdec.c
libavcodec/libfdk-aacenc.c
libavcodec/zerocodec.c
libavdevice/openal-dec.c
libavfilter/vf_hqx.c
libavutil/x86/x86inc.asm
Copyright:
2003, Michael Niedermayer <michaelni@gmx.at>
2003, Roman Shaposhnik
2004-2008, Marko Kreen
2005-2016, x264 project
2008, Adam Gashlin
2011, Jonathan Baldwin
2012, Martin Storsjo
2012-2013, Derek Buitenhuis
2014, Clément Bœsch <u@pkh.me> <clement@stupeflix.com>
2015, Paul B Mahol
License: ISC
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Files:
libavcodec/jfdctfst.c
libavcodec/jfdctint_template.c
libavcodec/jrevdct.c
Copyright: 1991-1996, Thomas G. Lane
License: IJG
The authors make NO WARRANTY or representation, either express or implied,
with respect to this software, its quality, accuracy, merchantability, or
fitness for a particular purpose. This software is provided "AS IS", and
you, its user, assume the entire risk as to its quality and accuracy.
.
Permission is hereby granted to use, copy, modify, and distribute this
software (or portions thereof) for any purpose, without fee, subject to
these conditions:
(1) If any part of the source code for this software is distributed, then
this README file must be included, with this copyright and no-warranty
notice unaltered; and any additions, deletions, or changes to the original
files must be clearly indicated in accompanying documentation.
(2) If only executable code is distributed, then the accompanying
documentation must state that "this software is based in part on the work
of the Independent JPEG Group".
(3) Permission for use of this software is granted only if the user accepts
full responsibility for any undesirable consequences; the authors accept
NO LIABILITY for damages of any kind.
.
These conditions apply to any software derived from or based on the IJG
code, not just to the unmodified library. If you use our work, you ought
to acknowledge us.
.
Permission is NOT granted for the use of any IJG author's name or company
name in advertising or publicity relating to this software or products
derived from it. This software may be referred to only as "the Independent
JPEG Group's software".
.
We specifically permit and encourage the use of this software as the basis
of commercial products, provided that all warranty or liability claims are
assumed by the product vendor.
Files: libavcodec/j2kenc.c
Copyright:
2001-2003, David Janssens
2002-2003, Yannick Verschueren
2002-2007, Communications and Remote Sensing Laboratory, Universite catholique de Louvain (UCL), Belgium
2002-2007, Professor Benoit Macq
2003-2007, Francois-Olivier Devaux and Antonin Descampe
2005, Herve Drolon, FreeImage Team
2007, Callum Lerwick <seg@haxxed.com>
2007, Kamil Nowosad
License: LGPL-2.1+ and BSD-2-clause
Files: libavutil/adler32.c
Copyright: 1995, Mark Adler
License: Zlib
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
.
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
Files:
libavfilter/af_hdcd.c
Copyright:
2010, Chris Moeller
License: BSD-3-clause
Files:
libavfilter/vf_gblur.c
Copyright:
2011, Pascal Getreuer
2016, Paul B Mahol
License: BSD-2-clause
Files: libavformat/aadec.c
Copyright:
2001-2014, Jim Teeuwen
2015, Vesselin Bontchev
License: BSD-1-clause
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
.
THIS SOFTWARE IS PROVIDED BY THE MIPS TECHNOLOGIES, INC. ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
Files: libavcodec/libzvbi-teletextdec.c
Copyright:
2005-2010, 2012, Wolfram Gloger
2013, Marton Balint
License: LGPL-2+
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
Comment:
On Debian systems, the full text of the GNU Lesser General Public License
version 2 can be found in the file `/usr/share/common-licenses/GPL-2'.
.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Files: libswresample/resample.c
Copyright:
2004-2012, Michael Niedermayer <michaelni@gmx.at>
2006, Xiaogang Zhang
License: LGPL-2.1+ and BSL
Files:
COPYING.GPLv2
COPYING.GPLv3
COPYING.LGPLv2.1
COPYING.LGPLv3
Copyright: 1989, 1991, 1999, 2007, Free Software Foundation, Inc. <http:fsf.org/>
License: FSF
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Files: debian/*
Copyright:
2014-2017, Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
2016, Sebastian Ramacher <sramacher@debian.org>
License: LGPL-2.1+
Comment:
On Debian systems, the full text of the GNU Lesser General Public License
version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'.
.
You should have received a copy of the GNU Lesser General Public
License along with this packaging; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Files: debian/missing-sources/ffmpeg-web/src/less/style.less
Copyright: 2014, Barbara Lepage <db0company@gmail.com>
License: Expat
Comment:
This is the source of doc/style.min.css.
It was obtained from the FFmpeg web repository:
<https://github.com/FFmpeg/web>
Files: debian/qt-faststart.1
Copyright: Andres Mejia <mcitadel@gmail.com>
License: man-page
This manual page was written by Andres Mejia <mcitadel@gmail.com>
for the Debian GNU/Linux system, but may be used by others.
License: BSD-2-clause
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS `AS IS'
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
License: BSD-3-clause
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the MIPS Technologies, Inc., nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
.
THIS SOFTWARE IS PROVIDED BY THE MIPS TECHNOLOGIES, INC. ``AS IS'' AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE MIPS TECHNOLOGIES, INC. BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
SUCH DAMAGE.
License: BSL
Permission is hereby granted, free of charge, to any person or organization
obtaining a copy of the software and accompanying documentation covered by
this license (the "Software") to use, reproduce, display, distribute,
execute, and transmit the Software, and to prepare derivative works of the
Software, and to permit third-parties to whom the Software is furnished to
do so, all subject to the following:
.
The copyright notices in the Software and this entire statement, including
the above license grant, this restriction and the following disclaimer,
must be included in all copies of the Software, in whole or in part, and
all derivative works of the Software, unless such copies or derivative
works are solely in the form of machine-executable object code generated by
a source language processor.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
License: Expat
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
.
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
License: LGPL-2.1+
FFmpeg is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
.
FFmpeg is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
License: Sundry
This source code is freely redistributable and may be used for
any purpose. This copyright notice must be maintained.
Juergen Mueller/Edward Beingessner And Sundry Contributors are not responsible for
the consequences of using this software.
|