1
mirror of https://github.com/mpv-player/mpv synced 2024-09-05 02:48:21 +02:00

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
This commit is contained in:
diego 2005-04-15 22:21:35 +00:00
parent f5e88339a5
commit 01ad22ac41
13 changed files with 74 additions and 0 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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,2,3 audio decoder
* ------------------------------

View File

@ -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$
*/
/*
* mpg123_synth_1to1 works the same way as the c version of this
* file. only two types of changes have been made:

View File

@ -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$
*/
/*
* Layer 2 Alloc tables ..
* most other tables are calculated on program start (which is (of course)

View File

@ -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
* --------------------------

View File

@ -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
* --------------------------

View File

@ -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
* --------------------------

View File

@ -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$
*/
/*
* mpg123 defines
* used source: musicout.h from mpegaudio package

View File

@ -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);

View File

@ -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 };