资源简介
lame-3.98.4 mp3编解码源码,需要的快下载啊
代码片段和文件信息
/**
*
* Lame ACM wrapper encode/decode MP3 based RIFF/AVI files in MS Windows
*
* Copyright (c) 2002 Steve Lhomme
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not write to the Free Software
* Foundation Inc. 59 Temple Place Suite 330 Boston MA 02111-1307 USA
*
*/
/*!
\author Steve Lhomme
\version \$Id: ACM.cppv 1.20.8.1 2008/11/01 20:41:47 robert Exp $
*/
#if !defined(STRICT)
#define STRICT
#endif // STRICT
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include “adebug.h“
#include “resource.h“
#include “ACMStream.h“
#ifdef ENABLE_DECODING
#include “DecodeStream.h“
#endif // ENABLE_DECODING
#include “ACM.h“
#ifndef IDC_HAND
#define IDC_HAND MAKEINTRESOURCE(32649)
#endif // IDC_HAND
char ACM::VersionString[120];
const char ACM_VERSION[] = “0.9.2“;
#ifdef WIN32
//
// 32-bit versions
//
#if (WINVER >= 0x0400)
#define VERSION_ACM_DRIVER MAKE_ACM_VERSION(4 0 0)
#else
#define VERSION_ACM_DRIVER MAKE_ACM_VERSION(3 51 0)
#endif
#define VERSION_MSACM MAKE_ACM_VERSION(3 50 0)
#else
//
// 16-bit versions
//
#define VERSION_ACM_DRIVER MAKE_ACM_VERSION(1 0 0)
#define VERSION_MSACM MAKE_ACM_VERSION(2 1 0)
#endif
#define PERSONAL_FORMAT WAVE_FORMAT_MPEGlayer3
#define SIZE_FORMAT_STRUCT sizeof(MPEGlayer3WAVEFORMAT)
//#define SIZE_FORMAT_STRUCT 0
//static const char channel_mode[][13] = {“mono““stereo““joint stereo““dual channel“};
static const char channel_mode[][13] = {“mono““stereo“};
static const unsigned int mpeg1_freq[] = {480004410032000};
static const unsigned int mpeg2_freq[] = {24000220501600012000110258000};
static const unsigned int mpeg1_bitrate[] = {320 256 224 192 160 128 112 96 80 64 56 48 40 32};
static const unsigned int mpeg2_bitrate[] = {160 144 128 112 96 80 64 56 48 40 32 24 16 8};
#define SIZE_CHANNEL_MODE (sizeof(channel_mode) / (sizeof(char) * 13))
#define SIZE_FREQ_MPEG1 (sizeof(mpeg1_freq) / sizeof(unsigned int))
#define SIZE_FREQ_MPEG2 (sizeof(mpeg2_freq) / sizeof(unsigned int))
#define SIZE_BITRATE_MPEG1 (sizeof(mpeg1_bitrate) / sizeof(unsigned int))
#define SIZE_BITRATE_MPEG2 (sizeof(mpeg2_bitrate) / sizeof(unsigned int))
static const int FORMAT_TAG_MAX_NB = 2; // PCM and PERSONAL (mand
相关资源
- mp3解析文档及其分析工具
- MP3文件ID3v2ID3v2APEv2标签读取
- 易语言搜搜mp3源码
-
MP3Pla
yer播放器 - 音频测试文件pcmmp3aacamrg711ag711u等多种
- Experimental Confirmation of High-Stability of
- 一种基于DAB接收机的MP3播放器设计方
- QT编的MP3播放器
- 取硬件信息可用VMP3.X过机器码
- mp3文件转成pcm格式
- 输出6V,0.5A的手机MP3开关电源充电器
- Node.js-微信amr音频转mp3模块
- amr音频文件转换成mp3文件
- Angular-alltomp3-app.zip
- lamescan3_r8_en
- 基于正点原子的STM32mini版代码
- VMP3.12过虚拟机、调试器检测
- qmc3转换mp3格式工具
- libmp3lame.a(3.100)静态库for iOS支持真
- 提取获取网页中的视频和MP3
- MP3程序 原理图 VS1003模块资料
- 语音芯片实现MP3播放
- stm32F103RVT6与vs1003/1053/SD卡做成的MP3
- hi3516a音频解码音频编解码库
- 1068515楼月免费MP3录音软件v3.0.zip
- stm32F103与PCM5102A与Helix软解播放MP3
- 基于QT的嵌入式MP3播放器设计代码
- 基于FPGA的MP3音乐播放器设计
- 基于MSP430单片机的MP3
- [嵌入式Linux项目实战开发]基于QT4.7.
评论
共有 条评论