update MANY more files with proper copyright/license info (thanks Ian!)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6596 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2005-09-14 20:46:50 +00:00
parent f6dff3608d
commit 5da915dcfd
191 changed files with 3168 additions and 1022 deletions

View File

@@ -1,13 +1,25 @@
/* codec_a_mu.c - translate between alaw and ulaw directly
*
* Asterisk -- A telephony toolkit for Linux.
/*
* Asterisk -- An open source telephony toolkit.
*
* Copyright (c) 2001 Linux Support Services, Inc. All rights reserved.
* Copyright (C) 1999 - 2005, Digium, Inc.
*
* Mark Spencer <markster@linux-support.net
* Mark Spencer <markster@digium.com>
*
* See http://www.asterisk.org for more information about
* the Asterisk project. Please do not directly contact
* any of the maintainers of this project for assistance;
* the project provides a web site, mailing lists and IRC
* channels for your use.
*
* This program is free software, distributed under the terms of
* the GNU General Public License
* the GNU General Public License Version 2. See the LICENSE file
* at the top of the source tree.
*/
/*
*
* codec_a_mu.c - translate between alaw and ulaw directly
*
*/
#include <fcntl.h>

View File

@@ -1,6 +1,5 @@
/* codec_adpcm.c - translate between signed linear and Dialogic ADPCM
*
* Asterisk -- A telephony toolkit for Linux.
/*
* Asterisk -- An open source telephony toolkit.
*
* Based on frompcm.c and topcm.c from the Emiliano MIPL browser/
* interpreter. See http://www.bsdtelephony.com.mx
@@ -10,8 +9,21 @@
*
* Karl Sackett <krs@linux-support.net>, 2001-03-21
*
* See http://www.asterisk.org for more information about
* the Asterisk project. Please do not directly contact
* any of the maintainers of this project for assistance;
* the project provides a web site, mailing lists and IRC
* channels for your use.
*
* This program is free software, distributed under the terms of
* the GNU General Public License
* the GNU General Public License Version 2. See the LICENSE file
* at the top of the source tree.
*/
/*
*
* codec_adpcm.c - translate between signed linear and Dialogic ADPCM
*
*/
#include <fcntl.h>

View File

@@ -1,13 +1,25 @@
/* codec_alaw.c - translate between signed linear and alaw
*
* Asterisk -- A telephony toolkit for Linux.
/*
* Asterisk -- An open source telephony toolkit.
*
* Copyright (c) 2001 Linux Support Services, Inc. All rights reserved.
* Copyright (C) 1999 - 2005, Digium, Inc.
*
* Mark Spencer <markster@linux-support.net
* Mark Spencer <markster@digium.com>
*
* See http://www.asterisk.org for more information about
* the Asterisk project. Please do not directly contact
* any of the maintainers of this project for assistance;
* the project provides a web site, mailing lists and IRC
* channels for your use.
*
* This program is free software, distributed under the terms of
* the GNU General Public License
* the GNU General Public License Version 2. See the LICENSE file
* at the top of the source tree.
*/
/*
*
* codec_alaw.c - translate between signed linear and alaw
*
*/
#include <fcntl.h>

View File

@@ -1,18 +1,29 @@
/*
* Asterisk -- A telephony toolkit for Linux.
*
* Translate between signed linear and G.723.1
* Asterisk -- An open source telephony toolkit.
*
* The G.723.1 code is not included in the Asterisk distribution because
* it is covered with patents, and in spite of statements to the contrary,
* the "technology" is extremely expensive to license.
*
* Copyright (C) 1999, Mark Spencer
* Copyright (C) 1999 - 2005, Digium, Inc.
*
* Mark Spencer <markster@linux-support.net>
* Mark Spencer <markster@digium.com>
*
* See http://www.asterisk.org for more information about
* the Asterisk project. Please do not directly contact
* any of the maintainers of this project for assistance;
* the project provides a web site, mailing lists and IRC
* channels for your use.
*
* This program is free software, distributed under the terms of
* the GNU General Public License
* the GNU General Public License Version 2. See the LICENSE file
* at the top of the source tree.
*/
/*
*
* Translate between signed linear and G.723.1
*
*/
#define TYPE_HIGH 0x0

View File

@@ -1,16 +1,29 @@
/* codec_g726.c - translate between signed linear and ITU G.726-32kbps
*
* Asterisk -- A telephony toolkit for Linux.
/*
* Asterisk -- An open source telephony toolkit.
*
* Copyright (C) 1999 - 2005, Digium, Inc.
*
* Mark Spencer <markster@digium.com>
*
* Based on frompcm.c and topcm.c from the Emiliano MIPL browser/
* interpreter. See http://www.bsdtelephony.com.mx
*
* Copyright (c) 2004 - 2005, Digium, Inc.
*
* Mark Spencer <markster@digium.com>
* See http://www.asterisk.org for more information about
* the Asterisk project. Please do not directly contact
* any of the maintainers of this project for assistance;
* the project provides a web site, mailing lists and IRC
* channels for your use.
*
* This program is free software, distributed under the terms of
* the GNU General Public License
* the GNU General Public License Version 2. See the LICENSE file
* at the top of the source tree.
*/
/*
*
* codec_g726.c - translate between signed linear and ITU G.726-32kbps
*
*/
#include <fcntl.h>

View File

@@ -1,17 +1,28 @@
/*
* Asterisk -- A telephony toolkit for Linux.
* Asterisk -- An open source telephony toolkit.
*
* The GSM code is from TOAST. Copyright information for that package is available
* in the GSM directory.
*
* Copyright (C) 1999 - 2005, Digium, Inc.
*
* Mark Spencer <markster@digium.com>
*
* See http://www.asterisk.org for more information about
* the Asterisk project. Please do not directly contact
* any of the maintainers of this project for assistance;
* the project provides a web site, mailing lists and IRC
* channels for your use.
*
* This program is free software, distributed under the terms of
* the GNU General Public License Version 2. See the LICENSE file
* at the top of the source tree.
*/
/*
*
* Translate between signed linear and Global System for Mobile Communications (GSM)
*
* The GSM code is from TOAST. Copyright information for that package is available
* in the GSM directory.
*
* Copyright (C) 1999, Mark Spencer
*
* Mark Spencer <markster@linux-support.net>
*
* This program is free software, distributed under the terms of
* the GNU General Public License
*/
#include <fcntl.h>

View File

@@ -1,16 +1,27 @@
/*
* Asterisk -- A telephony toolkit for Linux.
*
* Translate between signed linear and Internet Low Bitrate Codec
* Asterisk -- An open source telephony toolkit.
*
* The iLBC code is from The IETF code base and is copyright The Internet Society (2004)
*
*
* Copyright (C) 1999 - 2005, Digium, Inc.
*
* Mark Spencer <markster@digium.com>
*
* See http://www.asterisk.org for more information about
* the Asterisk project. Please do not directly contact
* any of the maintainers of this project for assistance;
* the project provides a web site, mailing lists and IRC
* channels for your use.
*
* This program is free software, distributed under the terms of
* the GNU General Public License
* the GNU General Public License Version 2. See the LICENSE file
* at the top of the source tree.
*/
/*
*
* Translate between signed linear and Internet Low Bitrate Codec
*
*/
#include <fcntl.h>

View File

@@ -1,19 +1,29 @@
/*
* Asterisk -- A telephony toolkit for Linux.
* Asterisk -- An open source telephony toolkit.
*
* Translate between signed linear and LPC10 (Linear Predictor Code)
*
* The lpc10 code is from a library used by nautilus, modified to be a bit
* nicer to the compiler.
*
* See http://www.arl.wustl.edu/~jaf/
*
* Copyright (C) 1999 - 2005 Digium,inc
* Copyright (C) 1999 - 2005, Digium, Inc.
*
* Mark Spencer <markster@digium.com>
*
* The lpc10 code is from a library used by nautilus, modified to be a bit
* nicer to the compiler.
* See http://www.arl.wustl.edu/~jaf/
*
* See http://www.asterisk.org for more information about
* the Asterisk project. Please do not directly contact
* any of the maintainers of this project for assistance;
* the project provides a web site, mailing lists and IRC
* channels for your use.
*
* This program is free software, distributed under the terms of
* the GNU General Public License
* the GNU General Public License Version 2. See the LICENSE file
* at the top of the source tree.
*/
/*
*
* Translate between signed linear and LPC10 (Linear Predictor Code)
*
*/
#include <fcntl.h>

View File

@@ -1,17 +1,28 @@
/*
* Asterisk -- A telephony toolkit for Linux.
* Asterisk -- An open source telephony toolkit.
*
* Translate between signed linear and Speex (Open Codec)
*
* Copyright (C) 2002, Digium
* Copyright (C) 1999 - 2005, Digium, Inc.
*
* Mark Spencer <markster@digium.com>
*
* This program is free software, distributed under the terms of
* the GNU General Public License
*
* This work was motivated by Jeremy McNamara
* hacked to be configurable by anthm and bkw 9/28/2004
*
* See http://www.asterisk.org for more information about
* the Asterisk project. Please do not directly contact
* any of the maintainers of this project for assistance;
* the project provides a web site, mailing lists and IRC
* channels for your use.
*
* This program is free software, distributed under the terms of
* the GNU General Public License Version 2. See the LICENSE file
* at the top of the source tree.
*/
/*
*
* Translate between signed linear and Speex (Open Codec)
*
*/
#include <fcntl.h>

View File

@@ -1,13 +1,25 @@
/* codec_ulaw.c - translate between signed linear and ulaw
*
* Asterisk -- A telephony toolkit for Linux.
/*
* Asterisk -- An open source telephony toolkit.
*
* Copyright (c) 2001 Linux Support Services, Inc. All rights reserved.
* Copyright (C) 1999 - 2005, Digium, Inc.
*
* Mark Spencer <markster@linux-support.net
* Mark Spencer <markster@digium.com>
*
* See http://www.asterisk.org for more information about
* the Asterisk project. Please do not directly contact
* any of the maintainers of this project for assistance;
* the project provides a web site, mailing lists and IRC
* channels for your use.
*
* This program is free software, distributed under the terms of
* the GNU General Public License
* the GNU General Public License Version 2. See the LICENSE file
* at the top of the source tree.
*/
/*
*
* codec_ulaw.c - translate between signed linear and ulaw
*
*/
#include <fcntl.h>