加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
sndwav_common.h 849 Bytes
一键复制 编辑 原始数据 按行查看 历史
pingdan32 提交于 2014-08-23 00:03 . ALSA Driver with Linux
//File : sndwav_common.h
//Author : Loon <sepnic@gmail.com>
#ifndef __SNDWAV_COMMON_H
#define __SNDWAV_COMMON_H
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include "wav_parser.h"
typedef long long off64_t;
typedef struct SNDPCMContainer {
snd_pcm_t *handle;
snd_output_t *log;
snd_pcm_uframes_t chunk_size;
snd_pcm_uframes_t buffer_size;
snd_pcm_format_t format;
uint16_t channels;
size_t chunk_bytes;
size_t bits_per_sample;
size_t bits_per_frame;
uint8_t *data_buf;
} SNDPCMContainer_t;
ssize_t SNDWAV_ReadPcm(SNDPCMContainer_t *sndpcm, size_t rcount);
ssize_t SNDWAV_WritePcm(SNDPCMContainer_t *sndpcm, size_t wcount);
int SNDWAV_SetParams(SNDPCMContainer_t *sndpcm, WAVContainer_t *wav);
#endif /* #ifndef __SNDWAV_COMMON_H */
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化