summaryrefslogtreecommitdiffstats
path: root/mp3lib
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-04-15 22:21:35 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-04-15 22:21:35 +0000
commit01ad22ac41e420a6c7b2e2da6b2b0e846a47d311 (patch)
tree0f15339b47f139fd69e795fa6ad9bbdb86922068 /mp3lib
parentf5e88339a5288c13e56b476ced5c06b4bfee0562 (diff)
downloadmpv-01ad22ac41e420a6c7b2e2da6b2b0e846a47d311.tar.bz2
mpv-01ad22ac41e420a6c7b2e2da6b2b0e846a47d311.tar.xz
Mark modified imported files as such to comply with (L)GPL ยง2a.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@15168 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'mp3lib')
-rw-r--r--mp3lib/dct36.c6
-rw-r--r--mp3lib/dct36_3dnow.c4
-rw-r--r--mp3lib/dct64.c5
-rw-r--r--mp3lib/dct64_i386.c5
-rw-r--r--mp3lib/decod386.c6
-rw-r--r--mp3lib/decode_i586.c6
-rw-r--r--mp3lib/l2tables.h6
-rw-r--r--mp3lib/layer1.c6
-rw-r--r--mp3lib/layer2.c6
-rw-r--r--mp3lib/layer3.c6
-rw-r--r--mp3lib/mpg123.h6
-rw-r--r--mp3lib/sr1.c6
-rw-r--r--mp3lib/tabinit.c6
13 files changed, 74 insertions, 0 deletions
diff --git a/mp3lib/dct36.c b/mp3lib/dct36.c
index 18bb35a5c4..54fcc4f7a9 100644
--- a/mp3lib/dct36.c
+++ b/mp3lib/dct36.c
@@ -1,3 +1,9 @@
+/*
+ * Modified for use with MPlayer, for details see the CVS changelog at
+ * http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/
+ * $Id$
+ */
+
/*
// This is an optimized DCT from Jeff Tsay's maplay 1.2+ package.
// Saved one multiplication by doing the 'twiddle factor' stuff
diff --git a/mp3lib/dct36_3dnow.c b/mp3lib/dct36_3dnow.c
index e62babe3b6..52ed54f2f8 100644
--- a/mp3lib/dct36_3dnow.c
+++ b/mp3lib/dct36_3dnow.c
@@ -14,6 +14,10 @@
* by KIMURA Takuhiro <kim@hannah.ipc.miyakyo-u.ac.jp> - until 31.Mar.1999
* <kim@comtec.co.jp> - after 1.Apr.1999
*
+ * Modified for use with MPlayer, for details see the CVS changelog at
+ * http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/
+ * $Id$
+ *
* Original disclaimer:
* The author of this program disclaim whole expressed or implied
* warranties with regard to this program, and in no event shall the
diff --git a/mp3lib/dct64.c b/mp3lib/dct64.c
index 70c7da50a9..195921d233 100644
--- a/mp3lib/dct64.c
+++ b/mp3lib/dct64.c
@@ -1,3 +1,8 @@
+/*
+ * Modified for use with MPlayer, for details see the CVS changelog at
+ * http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/
+ * $Id$
+ */
/*
* Discrete Cosine Tansform (DCT) for subband synthesis
diff --git a/mp3lib/dct64_i386.c b/mp3lib/dct64_i386.c
index 0eae194280..6ba92ac831 100644
--- a/mp3lib/dct64_i386.c
+++ b/mp3lib/dct64_i386.c
@@ -1,3 +1,8 @@
+/*
+ * Modified for use with MPlayer, for details see the CVS changelog at
+ * http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/
+ * $Id$
+ */
/*
* Discrete Cosine Tansform (DCT) for subband synthesis
diff --git a/mp3lib/decod386.c b/mp3lib/decod386.c
index 686debad17..4095b3e1c1 100644
--- a/mp3lib/decod386.c
+++ b/mp3lib/decod386.c
@@ -1,4 +1,10 @@
/*
+ * Modified for use with MPlayer, for details see the CVS changelog at
+ * http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/
+ * $Id$
+ */
+
+/*
* Mpeg Layer-1,2,3 audio decoder
* ------------------------------
* copyright (c) 1995,1996,1997 by Michael Hipp, All rights reserved.
diff --git a/mp3lib/decode_i586.c b/mp3lib/decode_i586.c
index 82a43f4eeb..1c5e75c0ed 100644
--- a/mp3lib/decode_i586.c
+++ b/mp3lib/decode_i586.c
@@ -1,4 +1,10 @@
/*
+ * Modified for use with MPlayer, for details see the CVS changelog at
+ * http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/
+ * $Id$
+ */
+
+/*
* mpg123_synth_1to1 works the same way as the c version of this
* file. only two types of changes have been made:
* - reordered floating point instructions to
diff --git a/mp3lib/l2tables.h b/mp3lib/l2tables.h
index d9fcbee411..f472996b59 100644
--- a/mp3lib/l2tables.h
+++ b/mp3lib/l2tables.h
@@ -1,4 +1,10 @@
/*
+ * Modified for use with MPlayer, for details see the CVS changelog at
+ * http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/
+ * $Id$
+ */
+
+/*
* Layer 2 Alloc tables ..
* most other tables are calculated on program start (which is (of course)
* not ISO-conform) ..
diff --git a/mp3lib/layer1.c b/mp3lib/layer1.c
index e84e9f5ea5..be4d6c7c7e 100644
--- a/mp3lib/layer1.c
+++ b/mp3lib/layer1.c
@@ -1,3 +1,9 @@
+/*
+ * Modified for use with MPlayer, for details see the CVS changelog at
+ * http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/
+ * $Id$
+ */
+
/*
* Mpeg Layer-1 audio decoder
* --------------------------
diff --git a/mp3lib/layer2.c b/mp3lib/layer2.c
index 759d57521a..40f6002496 100644
--- a/mp3lib/layer2.c
+++ b/mp3lib/layer2.c
@@ -1,3 +1,9 @@
+/*
+ * Modified for use with MPlayer, for details see the CVS changelog at
+ * http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/
+ * $Id$
+ */
+
/*
* Mpeg Layer-2 audio decoder
* --------------------------
diff --git a/mp3lib/layer3.c b/mp3lib/layer3.c
index de954a3d12..5b06cc2285 100644
--- a/mp3lib/layer3.c
+++ b/mp3lib/layer3.c
@@ -1,3 +1,9 @@
+/*
+ * Modified for use with MPlayer, for details see the CVS changelog at
+ * http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/
+ * $Id$
+ */
+
/*
* Mpeg Layer-3 audio decoder
* --------------------------
diff --git a/mp3lib/mpg123.h b/mp3lib/mpg123.h
index 482e024b51..c317901d65 100644
--- a/mp3lib/mpg123.h
+++ b/mp3lib/mpg123.h
@@ -1,4 +1,10 @@
/*
+ * Modified for use with MPlayer, for details see the CVS changelog at
+ * http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/
+ * $Id$
+ */
+
+/*
* mpg123 defines
* used source: musicout.h from mpegaudio package
*/
diff --git a/mp3lib/sr1.c b/mp3lib/sr1.c
index 0e8022e357..a3f7b292b1 100644
--- a/mp3lib/sr1.c
+++ b/mp3lib/sr1.c
@@ -65,6 +65,12 @@ LOCAL int mp3_read(char *buf,int size){
#else
extern int mp3_read(char *buf,int size);
#endif
+/*
+ * Modified for use with MPlayer, for details see the CVS changelog at
+ * http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/
+ * $Id$
+ */
+
//void mp3_seek(int pos){
// fseek(mp3_file,pos,SEEK_SET);
diff --git a/mp3lib/tabinit.c b/mp3lib/tabinit.c
index 2dd1fd857f..4b5ad41a57 100644
--- a/mp3lib/tabinit.c
+++ b/mp3lib/tabinit.c
@@ -1,3 +1,9 @@
+/*
+ * Modified for use with MPlayer, for details see the CVS changelog at
+ * http://www.mplayerhq.hu/cgi-bin/cvsweb.cgi/main/
+ * $Id$
+ */
+
real mp3lib_decwin[(512+32)];
static real cos64[32], cos32[16], cos16[8], cos8[4], cos4[2];
real *mp3lib_pnts[]={ cos64,cos32,cos16,cos8,cos4 };