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 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382
|
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:
1990, James Ashton - Sydney University
1991-1999, Free Software Foundation, Inc
1993, Computer Science, Speech Group
1994-2012, the Xiph.Org Foundation and contributors
1996-2002, Gerd Knorr
1997-1999, H. Dietz
1997-1999, R. Fisher
1998-2009, Conifer Software
1999, Nick Bailey
1999, Roger Hardiman
1999-2000, Sebastien Rougeaux <sebastien.rougeaux@anu.edu.au>
1999-2001, Chris Bagwell <cbagwell@sprynet.com>
1999-2024, Intel Corporation
2000, Chris Ausbrooks <weed@bucket.pp.ualr.edu>
2000, Fabien COELHO <fabien@coelho.net>
2000, John Walker
2000-2001, Michel Lespinasse <walken@zoy.org>
2000-2001, Peter Gubanov <peter@elecard.net.ru>
2000-2003, Nick Kurshev <nickols_k@mail.ru>
2000-2010, Fabrice Bellard <fabrice@bellard.org>
2001, Dan Dennedy <dan@dennedy.org>
2001, Heikki Leinonen
2001, Juan J. Sierralta P
2001, Lionel Ulmer
2001, Michel Lespinasse
2001, Tim Ferguson
2001-2003, BERO <bero@geocities.co.jp>
2001-2006, Daniel Maas <dmaas@dcine.com>
2001-2010, Vladimir Sadovnikov
2001-2024, Michael Niedermayer <michaelni@gmx.at>
2001-2025, Peter Ross <pross@xvid.org>
2001-2025, The FFmpeg project
2002, Anders Johansson <ajh@atri.curtin.edu.au>
2002, Brian Foley
2002, Daniel Pouzzner
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, Naoki Shibata
2002, Remi Guyomarch <rguyom@pobox.com>
2002, Steve O'Hara-Smith
2002, The Xine project
2002, Zdenek Kabelac <kabi@informatics.muni.cz>
2002-2005, Francois Revol <revol@free.fr>
2002-2005, Roberto Togni
2002-2006, Alex Beregszaszi
2002-2013, Maxim Poliakovski
2003, Alex Beregszaszi
2003, Donnie Smith
2003, Dr. Tim Ferguson
2003, Ewald Snel
2003, Gustavo Sverzut Barbieri <gsbarbieri@yahoo.com.br>
2003, International Business Machines, Corp
2003, James Klicman <james@klicman.org>
2003, Max Krasnyansky <maxk@qualcomm.com>
2003, Mike Melanson
2003, Nick Kurshev
2003, Rich Felker
2003, Thomas Raivio
2003, Tinic Uro
2003-2004, Romain Dolbeau <romain@dolbeau.org>
2003-2005, Christopher R. Hertel <crh@ubiqx.mn.org>
2003-2006, Roman Shaposhnik
2003-2007, Michel Bardiaux <mbardiaux@mediaxim.be>
2003-2007, Mike Melanson <melanson@pcisys.net>
2003-2011, Sascha Sommer <saschasommer@freenet.de>
2003-2014, Loren Merritt <lorenm@u.washington.edu>
2003-2014, Pascal Massimino <skal@planet-d.net>
2003-2017, Ivan Kalvachev
2003-2024, x264 project
2004, AGAWA Koji <i@atty.jp>
2004, Adam Thayer <krevnik@comcast.net>
2004, Benjamin Zores
2004, Gildas Bazin <gbazin@videolan.org>
2004, Maarten Daniels
2004-2005, Denes Balatoni <dbalatoni@programozo.hu>
2004-2005, Henryk Ploetz <henryk@ploetzli.ch>
2004-2006, Lennart Poettering
2004-2007, Benjamin Zores <ben@geexbox.org>
2004-2007, Eric Lasota
2004-2007, Marc Hoffman <marc.hoffman@analog.com>
2004-2010, Marcel Holtmann <marcel@holtmann.org>
2004-2014, Konstantin Shishkov <kostya.shishkov@gmail.com>
2005, Alban Bedel <albeu@free.fr>
2005, Balatoni Denes
2005, Boðaç Topaktaþ
2005, David Hammerton
2005, DivX, Inc
2005, Jeff Muizelaar
2005, Matthieu CASTET
2005, Neal Symms <tivo@freakinzoo.com>
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, Wolfram Gloger
2005-2008, Brad Midgley <bmidgley@xmission.com>
2005-2008, Ian Caulfield
2005-2011, Benjamin Larsson
2005-2012, Laurent de Soras
2005-2012, Måns Rullgård <mans@mansr.com>
2005-2012, VLC authors and VideoLAN
2005-2013, Diego Biurrun <diego@biurrun.de>
2005-2015, Luca Barbato <lu_zero@gentoo.org>
2005-2020, Reimar Döffinger <Reimar.Doeffinger@gmx.de>
2006, Benjamin Larssonb
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, 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-2008, Gregory Montoir <cyx@users.sourceforge.net>
2006-2009, Luca Abeni <lucabe72@email.it>
2006-2009, Robert Swain <rob@opendot.cl>
2006-2009, Stefan Gehrer <stefan.gehrer@gmx.de>
2006-2010, Prakash Punnoor <prakash@punnoor.de>
2006-2011, Baptiste Coudurier <baptiste.coudurier@free.fr>
2006-2011, Xvid Solutions GmbH
2006-2012, Rob Sykes <robs@users.sourceforge.net>
2006-2013, Justin Ruggles <justin.ruggles@gmail.com>
2006-2014, Ramiro Polla <ramiro.polla@gmail.com>
2006-2015, Steve Lhomme
2006-2017, Aurelien Jacobs <aurel@gnuage.org>
2007, Alexis Ballier
2007, Christian Ohm
2007, Clemens Fruhwirth <clemens@endorphin.org>
2007, Kamil Nowosad
2007, Måns Rullgård
2007, Nicholas Tung
2007, Philippe Kalaf
2007, Reynaldo H. Verdejo Pinochet (QCELP decoder)
2007, Richard Spindler
2007, Ulion
2007-2008, CSIRO
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-2009, Björn Axelsson
2007-2009, Xiph.Org Foundation
2007-2010, Bobby Bingham
2007-2010, David Conrad <lessen42@gmail.com>
2007-2010, Nokia Corporation
2007-2011, Vitor Sessak <vitor1001@gmail.com>
2007-2011, Vladimir Voroshilov
2007-2013, Stefano Sabatini <stefano.sabatini-lala@poste.it>
2007-2014, Benoit Fouet <benoit.fouet@free.fr>
2007-2015, Christophe Gisquet
2007-2015, Collabora Ltd
2007-2015, Edward Hervey
2007-2016, David Robillard <http://drobilla.net>
2007-2018, Ronald S. Bultje <rsbultje@gmail.com>
2007-2020, Anssi Hannula <anssi.hannula@iki.fi>
2007-2020, Nicolas George <nicolas.george@normalesup.org>
2008, Affine Systems, Inc (Michael Sullivan, Bobby Impollonia)
2008, Alessandro Sappia
2008, BBC, Anuradha Suraparaju <asuraparaju@gmail.com>
2008, Jaikrishnan Menon
2008, NVIDIA
2008, Rob Sykes
2008, Robert Marston
2008, Sisir Koppaka
2008, Victor Paesa
2008, vmrsss
2008-2009, Andrej Stepanchuk
2008-2009, Gregory Maxwell
2008-2009, Jaikrishnan Menon <realityman@gmx.net>
2008-2009, Splitted-Desktop Systems
2008-2010, Alexander Strange <astrange@ithinksw.com>
2008-2010, Eli Friedman <eli.friedman@gmail.com>
2008-2010, Paul Kendall <paul@kcbbs.gen.nz>
2008-2011, Zhentan Feng <spyfeng@gmail.com>
2008-2012, Alexander E. Patrakov
2008-2012, Laurent Aimar <fenrir@videolan.org>
2008-2013, Alex Converse <alex.converse@gmail.com>
2009, Alex Converse
2009, Colin McQuillan
2009, Colin McQuillian
2009, Dylan Yudaken
2009, Giliard B. de Freitas <giliarde@gmail.com>
2009, Jimmy Christensen
2009, Joshua Warner
2009, Kenan Gillet
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, Fiona Glaser <fiona@x264.com>
2009-2010, Howard Chu
2009-2011, Sebastian Gesemann
2009-2012, Nathan Caldwell <saintdev@gmail.com>
2009-2013, Christian Schmidt
2009-2013, Daniel Verkamp <daniel@drv.nu>
2009-2015, James Darnley <james.darnley@gmail.com>
2009-2018, Kostya Shishkov
2009-2023, Thilo Borgmann <thilo.borgmann@mail.de>
2009-2024, Martin Storsjo <martin@martin.st>
2010, Adrian Daerr
2010, Amanda, Y.N. Wu <amanda11192003@gmail.com>
2010, Andrzej Szombierski
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, Kenneth Vermeirsch
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-2011, Anatoly Nenashev
2010-2011, Elvis Presley
2010-2012, Rafaël Carré <funman@videolan.org>
2010-2013, Georg Martius <georg.martius@web.de>
2010-2015, Janne Grunau <janne-libav@jannau.net>
2010-2017, Carl Eugen Hoyos
2010-2019, Philip Langdale <philipl@overt.org>
2010-2020, Google, Inc
2010-2023, Anton Khirnov
2010-2023, Tomas Härdin
2010-2024, Anton Khirnov <anton@khirnov.net>
2010-2024, Rémi Denis-Courmont
2011, Anatoliy Wasserman
2011, Andreas Öman
2011, David Goldwich
2011, Janne Grunau
2011, Jordi Ortiz
2011, Juan Carlos Rodriguez <ing.juancarlosrodriguez@hotmail.com>
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, Xiang Wang
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, Smartjog S.A.S, Clément Bœsch <clement.boesch@smartjog.com>
2011-2013, Daniel Kang <daniel.d.kang@gmail.com>
2011-2016, Kieran Kunhya <kieran@kunhya.com>
2011-2017, KO Myung-Hun <komh@chollian.net>
2011-2019, Derek Buitenhuis
2011-2022, Clément Bœsch <u@pkh.me>
2011-2025, Paul B Mahol
2012, Aleksi Nurmi
2012, Andrew D'Addesio
2012, Antti Seppälä
2012, AvxSynth Team
2012, British Broadcasting Corporation
2012, David Kment
2012, Jeremy Tran
2012, Krzysztof Klinikowski
2012, Nathan Caldwell
2012, Pavel Koshevoy <pkoshevoy@gmail.com>
2012, Petri Hintukainen <phintuka users.sourceforge.net>
2012, Robert Nagy <ronag89@gmail.com>
2012, Rudolf Polzer
2012, Samuel Pitoiset
2012, Sebastien Zwickert
2012, Steven Robertson
2012, Vitaliy E Sugrobov
2012, Youness Alaoui <kakaroto@kakaroto.homelinux.net>
2012-2013, Andrey Utkin <andrey.krieger.utkin@gmail.com>
2012-2013, Aneesh Dogra (lionaneesh) <lionaneesh@gmail.com>
2012-2013, Fredrik Mellbin
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-2014, Georg Lippitsch <georg.lippitsch@gmx.at>
2012-2014, Petri Hintukainen <phintuka@users.sourceforge.net>
2012-2016, Ben "GreaseMonkey" Russell
2012-2023, Jan Ekström
2012-2024, James Almer <jamrial@gmail.com>
2013, Anand Meher Kotra
2013, Aneesh Dogra <aneesh@sugarlabs.org>
2013, Ash Hughes
2013, Darryl Wallace <wallacdj@gmail.com>
2013, Dirk Farin <dirk.farin@gmail.com>
2013, Jeff Moguillansky
2013, Lenny Wang <lwanghpc@gmail.com>
2013, MIPS Technologies, Inc., California
2013, Matthew Heaney
2013, Rl, Aetey Global Technologies AB
2013, VTT
2013, Vadim Kalinsky <vadim@kalinsky.ru>
2013, Wei Gao <weigao@multicorewareinc.com>
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
2013-2015, Andreas Fuchs
2013-2015, Seppo Tomperi <seppo.tomperi@vtt.fi>
2013-2015, Tiancheng "Timothy" Gu <timothygu99@gmail.com>
2013-2015, Wolfgang Hrauda
2013-2017, Vittorio Giovara <vittorio.giovara@gmail.com>
2013-2018, Calvin Walton <calvin.walton@kepstin.ca>
2013-2020, Marton Balint
2013-2020, Michael Barbour <barbour.michael.0@gmail.com>
2013-2022, Andreas Unterweger
2013-2022, Ben Avison <bavison@riscosopen.org>
2014, Aman Gupta <ffmpeg@tmm1.net>
2014, Daniel Oberhoff
2014, Dave Rice
2014, Eejya Singh
2014, James Yu <james.yu@linaro.org>
2014, Marvin Scholz
2014, Nicholas Robbins
2014, Nicolas Bertrand
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, Peter Meerwald <pmeerw@pmeerw.net>
2014-2015, Supraja Meedinti
2014-2015, Vignesh Venkatasubramanian
2014-2016, Muhammad Faiz <mfcc64@gmail.com>
2014-2016, Neil Birkbeck <birkbeck@google.com>
2014-2017, Alexandra Hájková
2014-2018, Thomas Volkert <thomas@homer-conferencing.com>
2014-2020, Hendrik Leppkes
2014-2021, Jason Jang
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, Himangi Saraogi <himangi774@gmail.com>
2015, Imagination Technologies Ltd
2015, Kevin Wheatley <kevin.j.wheatley@gmail.com>
2015, LoRd_MuldeR <mulder2@gmx.de>
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, Rostislav Pehlivanov
2015, Sebastian Dröge <sebastian@centricular.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, Florian Nouwt
2015-2016, Ganesh Ajjanagadde <gajjanaq@gmail.com>
2015-2016, Kyle Swanson <k@ylo.ph>
2015-2016, Open Broadcast Systems Ltd
2015-2016, Timo Rothenpieler <timo@rothenpieler.org>
2015-2016, Zhou Xiaoyong <zhouxiaoyong@loongson.cn>
2015-2017, Manojkumar Bhosale <Manojkumar.Bhosale@imgtec.com>
2015-2017, Matthieu Bouron <matthieu.bouron stupeflix.com>
2015-2017, Parag Salasakar <Parag.Salasakar@imgtec.com>
2015-2017, Shivraj Patil <Shivraj.Patil@imgtec.com>
2015-2018, Henrik Gramner <henrik@gramner.com>
2015-2018, Rostislav Pehlivanov <atomnuker@gmail.com>
2015-2021, Facebook, Inc
2015-2021, Rodger Combs <rodger.combs@gmail.com>
2015-2021, rcombs
2015-2024, Loongson Technology Corporation Limited
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, Mobibase, France
2016, Neil Birkbeck <neil.birkbeck@gmail.com>
2016, Ståle Kristoffersen
2016, Thomas Mundt <loudmax@yahoo.de>
2016, Thomas Volkert <thomas@netzeal.de>
2016, Tobias Rapp
2016, Umair Khan <omerjerk@gmail.com>
2016, William Ma, Sofia Kim, Dustin Woo
2016, William Ma, Ted Ying, Jerry Jiang
2016-2017, Savoir-faire Linux, Inc
2016-2017, foo86
2016-2018, Jokyo Images
2016-2019, Jai Luthra
2017, <samsamsam@o2.pl>
2017, Adib Surani
2017, Alexis Ballier <aballier@gentoo.org>
2017, Ashish Pratap Singh <ashk43712@gmail.com>
2017, Daniil Cherednik
2017, Felix Matouschek
2017, Ivan Kalvachev <ikalvachev@gmail.com>
2017, Jorge Ramirez <jorge.ramirez-ortiz@linaro.org>
2017, Kaustubh Raste <kaustubh.raste@imgtec.com>
2017, Lionel CHAZALLON
2017, Maksym Veremeyenko
2017, Meng Wang <wangmeng.kids@bytedance.com>
2017, Paras Chadha
2017, Richard Ling
2017, Steinar H. Gunderson
2017, Steven Liu
2017, sfan5 <sfan5@live.de>
2017-2018, Akamai Technologies, Inc
2018, Bjorn Roche
2018, Danil Iashchenko
2018, Dylan Fernando
2018, Falei Luo <falei.luo@gmail.com>
2018, Magnus Röös <mla2.roos@gmail.com>
2018, Mina Sami
2018, Misty De Meo
2018, Mohammad Izadi <moh.izadi@gmail.com>
2018, Sergey Lavrushkin
2018, Yingming Fan <yingmingfan@gmail.com>
2018, Yiqun Xu <yiqun.xu@vipl.ict.ac.cn>
2018-2019, Shiyou Yin <yinshiyou-hf@loongson.cn>
2018-2019, gxw <guxiwei-hf@loongson.cn>
2018-2020, Huiwen Ren <hwrenx@gmail.com>
2018-2025, softworkz
2019, Eugene Lyapustin
2019, Guo Yejun
2019, Leo Zhang <leozhang@qiyi.com>
2019, Swaraj Hota
2019, Vladimir Panteleev
2019-2020, Andriy Gelman
2019-2021, Sebastian Pop <spop@amazon.com>
2019-2021, Xuewei Meng
2019-2022, Manoj Gupta Bonda
2019-2025, Lynne <dev@lynne.ee>
2020, Alyssa Milburn <amilburn@zall.org>
2020, Aman Karmani <aman@tmm1.net>
2020, Björn Ottosson
2020, David Bryant
2020, Gautam Ramakrishnan
2020, John Stebbins <jstebbins.hb@gmail.com>
2020, Jun Zhao <barryjzhao@tencent.com>
2020, Nelson Gomez <nelson.gomez@microsoft.com>
2020, Stefan Dyulgerov <stefan.dyulgerov@gmail.com>
2020, Vacing Fang <vacingfang@tencent.com>
2020, Yaroslav Pogrebnyak <yyyaroslav@gmail.com>
2020, Zhenyu Wang <wangzhenyu@pkusz.edu.cn>
2020, Zixing Liu
2020-2021, 24i
2020-2021, Zane van Iperen <zane@zanevaniperen.com>
2020-2022, Andreas Rheinhardt
2020-2024, J. Dekker <jdek@itanimul.li>
2020-2024, Nuo Mi <nuomi2021@gmail.com>
2021, Aidan Richmond
2021, Boris Baracaldo
2021, Dawid Kozinski
2021, Limin Wang <lance.lmwang@gmail.com>
2021, Mark Reid <mindmark@gmail.com>
2021, Nachiket Tarate
2021, Paul Buxton
2021, Pekka Väänänen <pekka.vaananen@iki.fi>
2021, VideoLAN and dav1d authors
2021, parazyd <parazyd@dyne.org>
2021, quietvoid
2021-2023, Nuomi
2021-2024, Leo Izen <leo.izen@gmail.com>
2021-2024, Wu Jianhua <jianhua.wu@intel.com>
2021-2025, Dawid Kozinski <d.kozinski@samsung.com>
2021-2025, Niklas Haas <ffmpeg@haasn.xyz>
2021-2025, Two Orioles, LLC
2022, Caleb Etemesi <etemesicaleb@gmail.com>
2022, Erik Linge
2022, Jack Bruienne
2022, Jonathan Swinney <jswinney@amazon.com>
2022, Mark Gaiser
2022, Mohamed Khaled <Mohamed_Khaled_Kamal@outlook.com>
2022, Pierre-Anthony Lemieux <pal@palemieux.com>
2022, TADANO Tokumei
2022, Thomas Siedel
2022, Victoria Zhislina, Intel
2022, Xu Mu
2022-2025, Zhao Zhili <quinkblack@foxmail.com>
2023, Elias Carotti <eliascrt@amazon.it>
2023, Francesco Carusi
2023, Jan Ekström <jeebjp@gmail.com>
2023, John Cox <jc@kynesim.co.uk>
2023, LTN Global Communications
2023, Loongson Technology Co. Ltd
2023, SiFive, Inc
2023, xu fulong
2023-2024, Institute of Software Chinese Academy of Sciences (ISCAS)
2023-2024, Leo Izen
2024, Antoine Soulier <asoulier@google.com>
2024, Axis Communications
2024, Christian Lehmann
2024, Christian R. Helmrich
2024, Christian Stoffers
2024, Connor Worley
2024, Martin Schitter
2024, Ruslan Chernenko
2024, Shaun Loo
2024, Stone Chen
2024, asivery
2024-2025, Emma Worley <emma@emma.gg>
2025, Jack Lau
2025, Jacob Lifshay
2025, Jonathan Baudanza <jon@jonb.org>
2025, Krzysztof Aleksander Pyrkosz
2025, MulticorewWare, Inc
2025, Vittorio Palmisano
Acoustics Research Institute (ARI), Vienna, Austria
Alexandra Hajkova
Edward Hervey <bilboed@gmail.com>
Matthieu Bouron <matthieu.bouron@gcollabora.com>
Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>
Bingjie Han <hanbj@pkusz.edu.cn>
Chengxiang Lu and Alex Hauptmann
Christian Holschuh
Edouard Auvinet
Heiher <r@hev.cc>
Joseph Artsimovich and UAB "DKD"
Markus Schmidt and Christian Holschuh
Mohamed Naufal <naufal22@gmail.com>
Sebastien Bechet <s.bechet@av7.net>
Vitor Sessak <vitor1001 gmail com>
License: LGPL-2.1+
Comment:
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
Files:
doc/texi2pod.pl
libavcodec/aarch64/ac3dsp_init_aarch64.c
libavcodec/aarch64/ac3dsp_neon.S
libavcodec/x86/flac_dsp_gpl.asm
libavfilter/f_ebur128.c
libavfilter/perlin.c
libavfilter/phase_template.c
libavfilter/qp_table.c
libavfilter/qp_table.h
libavfilter/signature.h
libavfilter/signature_lookup.c
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_histeq.c
libavfilter/vf_hqdn3d.c
libavfilter/vf_hqdn3d.h
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_pp7.c
libavfilter/vf_pp7.h
libavfilter/vf_pullup.c
libavfilter/vf_pullup.h
libavfilter/vf_repeatfields.c
libavfilter/vf_sab.c
libavfilter/vf_signature.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.asm
libavfilter/x86/vf_eq_init.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_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
libavutil/macos_kperf.c
libavutil/macos_kperf.h
libswresample/tests/*
tests/checkasm/aacencdsp.c
tests/checkasm/aacpsdsp.c
tests/checkasm/aarch64/*
tests/checkasm/ac3dsp.c
tests/checkasm/aes.c
tests/checkasm/af_afir.c
tests/checkasm/alacdsp.c
tests/checkasm/arm/*
tests/checkasm/audiodsp.c
tests/checkasm/av_tx.c
tests/checkasm/blockdsp.c
tests/checkasm/bswapdsp.c
tests/checkasm/checkasm.c
tests/checkasm/checkasm.h
tests/checkasm/diracdsp.c
tests/checkasm/exrdsp.c
tests/checkasm/fdctdsp.c
tests/checkasm/fixed_dsp.c
tests/checkasm/flacdsp.c
tests/checkasm/float_dsp.c
tests/checkasm/fmtconvert.c
tests/checkasm/g722dsp.c
tests/checkasm/h263dsp.c
tests/checkasm/h264chroma.c
tests/checkasm/h264dsp.c
tests/checkasm/h264pred.c
tests/checkasm/h264qpel.c
tests/checkasm/hevc_add_res.c
tests/checkasm/hevc_deblock.c
tests/checkasm/hevc_idct.c
tests/checkasm/hevc_pel.c
tests/checkasm/hevc_sao.c
tests/checkasm/huffyuvdsp.c
tests/checkasm/idctdsp.c
tests/checkasm/jpeg2000dsp.c
tests/checkasm/llauddsp.c
tests/checkasm/lls.c
tests/checkasm/llviddsp.c
tests/checkasm/llviddspenc.c
tests/checkasm/lpc.c
tests/checkasm/motion.c
tests/checkasm/opusdsp.c
tests/checkasm/pixblockdsp.c
tests/checkasm/riscv/*
tests/checkasm/rv34dsp.c
tests/checkasm/rv40dsp.c
tests/checkasm/sbrdsp.c
tests/checkasm/scene_sad.c
tests/checkasm/svq1enc.c
tests/checkasm/sw_gbrp.c
tests/checkasm/sw_range_convert.c
tests/checkasm/sw_rgb.c
tests/checkasm/sw_scale.c
tests/checkasm/sw_yuv2rgb.c
tests/checkasm/sw_yuv2yuv.c
tests/checkasm/synth_filter.c
tests/checkasm/takdsp.c
tests/checkasm/utvideodsp.c
tests/checkasm/v210dec.c
tests/checkasm/v210enc.c
tests/checkasm/vc1dsp.c
tests/checkasm/vf_blackdetect.c
tests/checkasm/vf_blend.c
tests/checkasm/vf_bwdif.c
tests/checkasm/vf_colordetect.c
tests/checkasm/vf_convolution.c
tests/checkasm/vf_eq.c
tests/checkasm/vf_gblur.c
tests/checkasm/vf_hflip.c
tests/checkasm/vf_threshold.c
tests/checkasm/videodsp.c
tests/checkasm/vorbisdsp.c
tests/checkasm/vp8dsp.c
tests/checkasm/vp9dsp.c
tests/checkasm/vvc_alf.c
tests/checkasm/vvc_mc.c
tests/checkasm/vvc_sao.c
tests/checkasm/x86/*
tests/tiny_ssim.c
tools/coverity.c
tools/target_dec_fate.sh
Copyright:
1989-2001, Free Software Foundation, Inc
1997-2001, ZSNES Team <zsknight@zsnes.com>
2000-2002, Fabrice Bellard
2001-2003, Donald A. Graft
2001-2018, 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, 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, Ivo van Poorten
2006, Julian Hall
2006-2011, Kevin Stone
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>
2011, Mans Rullgard <mans@mansr.com>
2012, Jeremy Tran
2012-2013, Clément Bœsch <u@pkh.me>
2012-2015, Henrik Gramner
2013, Vittorio Giovara <vittorio.giovara@gmail.com>
2013-2015, Jean Delvare <jdelvare@suse.com>
2013-2017, Paul B Mahol
2014, Kieran Kunhya <kierank@obe.tv>
2014, Red Hat, Inc
2014-2015, Arwa Arif <arwaarif1994@gmail.com>
2014-2019, James Darnley <james.darnley@gmail.com>
2015, Janne Grunau
2015, Rodger Combs <rodger.combs@gmail.com>
2015-2016, Martin Storsjo
2015-2016, Ronald S. Bultje <rsbultje@gmail.com>
2015-2016, Tiancheng "Timothy" Gu
2015-2017, James Almer
2016, Alexandra Hájková
2017, Gerion Entrup
2017, Jokyo Images
2017, Thomas Mundt <tmundt75@gmail.com>
2018, Two Orioles, LLC
2018, VideoLAN and dav1d authors
2018, Yingming Fan <yingmingfan@gmail.com>
2021, Josh Dekker
2022, Ben Avison
2022-2024, Rémi Denis-Courmont
2023-2024, Institute of Software Chinese Academy of Sciences (ISCAS)
2023-2024, Nuo Mi <nuomi2021@gmail.com>
2023-2024, Wu Jianhua <toqsxw@outlook.com>
2024, Geoff Hill <geoff@geoffhill.org>
2024, Kyosuke Kawakami
Lynne
Wilbert Dijkhof
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'.
Files:
compat/solaris/*
doc/t2h.pm
libavfilter/vf_lensfun.c
Copyright:
2007, Andrew Zabolotny
2007-2013, Free Software Foundation, Inc
2014, Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
2014, Tiancheng "Timothy" Gu <timothygu99@gmail.com>
2018, Stephen Seo
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'.
Files:
doc/bootstrap.min.css
doc/examples/avio_http_serve_files.c
doc/examples/avio_list_dir.c
doc/examples/avio_read_callback.c
doc/examples/decode_audio.c
doc/examples/decode_filter_audio.c
doc/examples/decode_filter_video.c
doc/examples/decode_video.c
doc/examples/demux_decode.c
doc/examples/encode_audio.c
doc/examples/encode_video.c
doc/examples/extract_mvs.c
doc/examples/hw_decode.c
doc/examples/mux.c
doc/examples/qsv_decode.c
doc/examples/qsv_transcode.c
doc/examples/remux.c
doc/examples/resample_audio.c
doc/examples/scale_video.c
doc/examples/show_metadata.c
doc/examples/transcode.c
doc/examples/vaapi_encode.c
doc/examples/vaapi_transcode.c
doc/style.min.css
ffbuild/bin2c.c
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/af_deesser.c
libavfilter/cuda/vector_helpers.cuh
libavfilter/vf_avgblur.c
libavfilter/vf_bilateral.c
libavfilter/vf_bm3d.c
libavfilter/vf_colorspace_cuda.c
libavfilter/vf_colorspace_cuda.cu
libavfilter/vf_deband.c
libavfilter/vf_morpho.c
libavfilter/vf_scale_cuda.c
libavfilter/vf_scale_cuda.cu
libavfilter/vf_scale_cuda.h
libavfilter/vf_thumbnail_cuda.c
libavfilter/vf_thumbnail_cuda.cu
libavformat/oggdec.c
libavformat/oggdec.h
libavformat/oggparseogm.c
libavformat/oggparsespeex.c
libavformat/oggparsetheora.c
libavformat/oggparsevorbis.c
libavutil/avsscanf.c
tests/api/api-band-test.c
tests/api/api-dump-stream-meta-test.c
tests/api/api-flac-test.c
tests/api/api-h264-slice-test.c
tests/api/api-h264-test.c
tests/api/api-seek-test.c
tests/api/api-threadmessage-test.c
tests/reference.pnm
Copyright:
2001, Lionel Ulmer <lionel.ulmer@free.fr>
2001-2003, Fabrice Bellard
2005, Alex Beregszaszi
2005, Matthieu CASTET
2005, Michael Ahlberg
2005, Måns Rullgård
2005-2014, Rich Felker
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-2022, NVIDIA Corporation
2011, Tomas Härdin
2011-2014, Reinhard Tartler
2011-2014, Stefano Sabatini <stefano.sabatini-lala@poste.it>
2011-2014, Twitter, Inc
2012, Matthäus G. "Anteru" Chajdas (http://anteru.net)
2012-2014, Clément Bœsch <u@pkh.me>
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, Stephan Holljes
2015, Vittorio Giovara <vittorio.giovara@gmail.com>
2015-2016, mawen1250
2015-2021, Paul B Mahol
2016, ReneBrals
2017, Jun Zhao
2017, Kaixuan Liu
2017, Ming Yang
2018, Chris Johnson
2025, Romain Beauxis
License: Expat
Files:
libavcodec/aacsbr_fixed.c
libavcodec/ac3dec_fixed.c
libavcodec/arm/vp8dsp_armv6.S
libavcodec/ilbcdata.h
libavcodec/ilbcdec.c
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/fmtconvert_mips.c
libavcodec/mips/lsp_mips.h
libavcodec/mips/mpegaudiodsp_mips_fixed.c
libavcodec/mips/mpegaudiodsp_mips_float.c
libavcodec/vvc/itx_1d.c
libavfilter/opencl/deshake.cl
libavfilter/vf_deshake_opencl.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:
2000-2008, Intel Corporation
2005-2006, Oded Shimon <ods15@ods15.dyndns.org>
2006-2007, Maxim Gavrilov <maxim.gavrilov@gmail.com>
2008-2009, Robert Swain <rob@opendot.cl>
2009, Willow Garage Inc
2009-2010, Alex Converse <alex.converse@gmail.com>
2010, Google Inc
2010, Rob Clark <rob@ti.com>
2010-2021, ITU/ISO/IEC
2011, Mans Rullgard <mans@mansr.com>
2012-2013, MIPS Technologies, Inc., California
2013, OpenCV Foundation
2013, The WebRTC project authors
2023, Nuo Mi
License: LGPL-2.1+ and BSD-3-clause
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/liblc3dec.c
libavcodec/liblc3enc.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-2024, x264 project
2008, Adam Gashlin
2011, Jonathan Baldwin
2012, Martin Storsjo
2012-2013, Derek Buitenhuis
2014, Clément Bœsch <u@pkh.me>
2015, Paul B Mahol
2024, Antoine Soulier <asoulier@google.com>
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/aom_film_grain_template.c
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
2008-2023, Niklas Haas
2018, Two Orioles, LLC
2018, VideoLAN and dav1d authors
2020, Gautam Ramakrishnan <gautamramk@gmail.com>
Sandflow Consulting LLC
License: LGPL-2.1+ and BSD-2-clause
Files:
libavcodec/aarch64/fdctdsp_neon.S
libavutil/adler32.c
Copyright:
1995, Mark Adler
2009-2011, Nokia Corporation and/or its subsidiary(-ies)
2013-2014, Linaro Limited
2014-2020, D. R. Commander
2015-2018, Matthieu Darbois
2016, Siarhei Siamashka
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:
doc/mips.txt
libavcodec/speexdata.h
libavcodec/speexdec.c
libavfilter/af_hdcd.c
Copyright:
1992-1994, Carsten Bormann
1992-1994, Jutta Degener
1993-2006, David Rowe
2002-2008, Jean-Marc Valin
2002-2008, Xiph.org Foundation
2003, EpicGames
2005-2007, Analog Devices Inc
2005-2008, Commonwealth Scientific and Industrial Research Organisation (CSIRO)
2010, Chris Moeller
2012, MIPS Technologies, Inc., California
License: BSD-3-clause
Files:
libavfilter/ebur128.c
libavfilter/ebur128.h
Copyright: 2011, Jan Kokemüller
License: LGPL-2.1+ and Expat
Files:
libavcodec/riscv/h264addpx_rvv.S
libavcodec/riscv/h264dsp_rvv.S
libavcodec/riscv/h264idct_rvv.S
libavcodec/riscv/h264qpel_rvv.S
libavcodec/riscv/startcode_rvb.S
libavcodec/riscv/startcode_rvv.S
libavfilter/af_arnndn.c
libavfilter/gblur.h
libavfilter/vf_gblur.c
libavfilter/vf_gblur_init.h
Copyright:
2005-2009, Xiph.Org Foundation
2007-2008, CSIRO
2008-2011, Octasic Inc
2011, Pascal Getreuer
2016-2019, Paul B Mahol
2017, Mozilla
2018, Gregor Richards
2024, J. Dekker <jdek@itanimul.li>
2024, Niklas Haas
2024, Rémi Denis-Courmont
Jean-Marc Valin
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-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'.
Files: libswresample/resample.c
Copyright:
2004-2012, Michael Niedermayer <michaelni@gmx.at>
2006, Xiaogang Zhang
License: LGPL-2.1+ and BSL
Files:
libavformat/imf.h
libavformat/imf_cpl.c
libavformat/imfdec.c
libavformat/tests/imf.c
Copyright: Sandflow Consulting LLC
License: BSD-2-clause or LGPL-2.1+
Files:
libavcodec/jpeg2000htdec.c
libavutil/uuid.c
Copyright:
1996-1997, Theodore Ts'o
2019-2021, Osamu Watanabe
2022, Caleb Etemesi <etemesicaleb@gmail.com>
2022, Pierre-Anthony Lemieux <pal@palemieux.com>
Zane van Iperen <zane@zanevaniperen.com>
License: BSD-3-clause or LGPL-2.1+
Files:
libavutil/libm.h
libavutil/mathematics.c
Copyright:
2005-2012, Michael Niedermayer <michaelni@gmx.at>
2006, John Maddock
License: BSL or LGPL-2.1+
Files: debian/*
Copyright:
2014-2017, Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
2016-2025, Sebastian Ramacher <sramacher@debian.org>
2017-2018, James Cowgill <jcowgill@debian.org>
2020, Jonas Smedegaard <dr@jones.dk>
License: LGPL-2.1+
Files: debian/missing-sources/*
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.
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'.
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.
|