⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iwinm.c

📁 希望能帮助大家学习C语言.
💻 C
字号:
/*____________________________________________________________________________
	
	MP3 Decoding Libraries
	Lanuguages used: C, C++, ASM

	As much as I would love to, I cannot take
	full credit for writing this code.
	Xing Technology	made MPEG-Layer 3 for us
	to decode. =)
	- ULTiMaTuM -

	MPEG-Layer 3 (MP3)
	Copyright (C) 1995-1997 Xing Technology

  	NOTE: I only edited the bare-minimum. 90%
		of this is original decoding code...
		Hmm... that sounds strange =)

____________________________________________________________________________*/

/****  iwinm.c  ***************************************************

MPEG audio decoder, window master
portable C       integer version of cwinm.c



******************************************************************/

#include <stdlib.h>
#include <stdio.h>
#include <float.h>
#include <math.h>
#include "itype.h"

/*-------------------------------------------------------------------------*/
/* public vbuf's */
WININT vbuf[512];
WININT vbuf2[512];

/*--  integer point window coefs  ---*/
/*--  quick uses only first 116  ----*/
static WINCOEF iwincoef[264];

/*==================================================================*/
WINCOEF *i_wincoef_addr()
{
   return iwincoef;
}
/*-------------------------------------------------------------------*/
#ifdef FULL_INTEGER
#include "iwin.c"
#include "iwinb.c"
#else
#include "iwinQ.c"
#include "iwinbQ.c"
#endif
/*-------------------------------------------------------------------*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -