summaryrefslogtreecommitdiffstats
path: root/libavcodec/liba52
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2006-01-12 22:43:26 +0000
committerDiego Biurrun <diego@biurrun.de>2006-01-12 22:43:26 +0000
commit5509bffa88238d1f445a84a32e3791bfb9e532fd (patch)
tree852d6c37e7409657961378ccce977826b6799ae1 /libavcodec/liba52
parentc8a596d21045851ddbdc29d0d27397ab0a19674c (diff)
downloadffmpeg-streaming-5509bffa88238d1f445a84a32e3791bfb9e532fd.zip
ffmpeg-streaming-5509bffa88238d1f445a84a32e3791bfb9e532fd.tar.gz
Update licensing information: The FSF changed postal address.
Originally committed as revision 4842 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/liba52')
-rw-r--r--libavcodec/liba52/a52.h2
-rw-r--r--libavcodec/liba52/a52_internal.h2
-rw-r--r--libavcodec/liba52/a52_util.h2
-rw-r--r--libavcodec/liba52/bit_allocate.c2
-rw-r--r--libavcodec/liba52/bitstream.c2
-rw-r--r--libavcodec/liba52/bitstream.h2
-rw-r--r--libavcodec/liba52/downmix.c2
-rw-r--r--libavcodec/liba52/imdct.c2
-rw-r--r--libavcodec/liba52/mm_accel.h2
-rw-r--r--libavcodec/liba52/parse.c2
-rw-r--r--libavcodec/liba52/tables.h2
11 files changed, 11 insertions, 11 deletions
diff --git a/libavcodec/liba52/a52.h b/libavcodec/liba52/a52.h
index d3346ec..f2ea5f8 100644
--- a/libavcodec/liba52/a52.h
+++ b/libavcodec/liba52/a52.h
@@ -18,7 +18,7 @@
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef A52_H
diff --git a/libavcodec/liba52/a52_internal.h b/libavcodec/liba52/a52_internal.h
index 5235704..49fd4ef 100644
--- a/libavcodec/liba52/a52_internal.h
+++ b/libavcodec/liba52/a52_internal.h
@@ -18,7 +18,7 @@
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
typedef struct {
diff --git a/libavcodec/liba52/a52_util.h b/libavcodec/liba52/a52_util.h
index 121393e..8ef2cec 100644
--- a/libavcodec/liba52/a52_util.h
+++ b/libavcodec/liba52/a52_util.h
@@ -18,7 +18,7 @@
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef A52_UTIL_H
diff --git a/libavcodec/liba52/bit_allocate.c b/libavcodec/liba52/bit_allocate.c
index 7b595a0..415a08d 100644
--- a/libavcodec/liba52/bit_allocate.c
+++ b/libavcodec/liba52/bit_allocate.c
@@ -18,7 +18,7 @@
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "a52.h"
#include "a52_internal.h"
diff --git a/libavcodec/liba52/bitstream.c b/libavcodec/liba52/bitstream.c
index a760719..f6b05c5 100644
--- a/libavcodec/liba52/bitstream.c
+++ b/libavcodec/liba52/bitstream.c
@@ -18,7 +18,7 @@
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "a52.h"
#include "a52_internal.h"
diff --git a/libavcodec/liba52/bitstream.h b/libavcodec/liba52/bitstream.h
index ed1a4db..4a64bf3 100644
--- a/libavcodec/liba52/bitstream.h
+++ b/libavcodec/liba52/bitstream.h
@@ -18,7 +18,7 @@
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/* (stolen from the kernel) */
diff --git a/libavcodec/liba52/downmix.c b/libavcodec/liba52/downmix.c
index a4ce747..7999b7d 100644
--- a/libavcodec/liba52/downmix.c
+++ b/libavcodec/liba52/downmix.c
@@ -18,7 +18,7 @@
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "a52.h"
#include "a52_internal.h"
diff --git a/libavcodec/liba52/imdct.c b/libavcodec/liba52/imdct.c
index b701b41..21a2a65 100644
--- a/libavcodec/liba52/imdct.c
+++ b/libavcodec/liba52/imdct.c
@@ -21,7 +21,7 @@
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "a52.h"
diff --git a/libavcodec/liba52/mm_accel.h b/libavcodec/liba52/mm_accel.h
index 8afbd35..9a475f5 100644
--- a/libavcodec/liba52/mm_accel.h
+++ b/libavcodec/liba52/mm_accel.h
@@ -18,7 +18,7 @@
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef MM_ACCEL_H
diff --git a/libavcodec/liba52/parse.c b/libavcodec/liba52/parse.c
index be402e2..5a07015 100644
--- a/libavcodec/liba52/parse.c
+++ b/libavcodec/liba52/parse.c
@@ -18,7 +18,7 @@
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "a52.h"
#include "a52_internal.h"
diff --git a/libavcodec/liba52/tables.h b/libavcodec/liba52/tables.h
index b067c63..7f921c9 100644
--- a/libavcodec/liba52/tables.h
+++ b/libavcodec/liba52/tables.h
@@ -18,7 +18,7 @@
*
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
static const int8_t exp_1[128] = {
OpenPOWER on IntegriCloud