资源简介
使用标准C++库实现实现PCM格式的WAV文件的读写。
class CWaveFile
{
public:
CWaveFile(void);
~CWaveFile(void);
// Write wav head
bool static WriteHead(const string& filename, uint32_t length);
// Write wav file
bool static write(const string& filename, const Wave_header &header, void *data, uint32_t length);
// Read wav file
bool read(const string &filename);
private:
// Read wav file header
bool read_header(const string &filename);
private:
shared_ptr header;
unique_ptr data;
};
代码片段和文件信息
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2563 2018-08-06 21:20 wav文件读写接口实现.rar
----------- --------- ---------- ----- ----
文件 2563 2018-08-06 21:20 wav文件读写接口实现.rar
- 上一篇:学生学籍管理系统c语言实现
- 下一篇:ACM HDU 2000->2099 解题报告
评论
共有 条评论