我正在用C语言编写一个函数,用于播放 wav
文件。我可以播放一次声音,但我想增加一个循环选项。
我有两种工作模式。
- 从文件名播放
- 从记忆中播放。
在这两种模式下,我都不能播放声音超过两次,之后函数崩溃。
注:我在代码中加入了这个功能,解决了这个问题。
BOOL WINAPI PlaySound(LPCSTR,HMODULE,DWORD);
没有它,我得到的问题。
我的代码。
#include <windows.h>
#include <stdio.h>
void play(char * fileName, int repeat);
char* file2vector(char* fileName, long int* size);
int main(int argc, char ** argv)
{
if (argc > 1) {
play(argv[1], 5);
}
}
void play(char * fileName, int repeat)
{
#define SND_SYNC 0
#define SND_ASYNC 1
#define SND_FILENAME 0x20000
#define SND_NODEFAULT 2
#define SND_MEMORY 4
#define SND_NOSTOP 16
int mode = SND_SYNC | SND_NODEFAULT | SND_NOSTOP;
char * sound;
int play = 1;
int i;
long int size;
unsigned char* wavFile = file2vector(fileName, &size);
if (wavFile == NULL) {
mode |= SND_FILENAME;
sound = fileName;
printf("filename\n");
}
else {
mode |= SND_MEMORY;
sound = wavFile;
printf("memory\n");
}
if (repeat) {
play += repeat;
}
printf("play %d times\n", play);
int res;
for (i = 1; i <= play; ++i) {
printf("played %i\n", i);
res = PlaySound(sound, NULL, mode);
printf("res:%d\n", res);
}
PlaySound(NULL, 0, 0);
free(wavFile);
printf("ready");
}
char* file2vector(char* fileName, long int* size)
{
char* vector = NULL;
FILE* file = fopen(fileName, "rb");
if (NULL == file) {
*size = 0L;
}
else
{
fseek(file, 0L, SEEK_END);
*size = ftell(file);
fseek(file, 0L, SEEK_SET);
/* ftell can return -1 on failure */
if (*size <= 0) {
*size = 0L;
}
else
{
vector = (char*)malloc(*size);
if (NULL != vector) {
fread(vector, sizeof(char), *size, file);
}
}
fclose(file);
}
return vector;
}
当我运行这段代码时,例如:
pplay.exe c:\windows\media\chimes.wav
它的打印结果是:
memory
play 6 times
played 1
res:1
played 2
res:1
played 4198705
在我的电脑上的代码工作正常。即使我播放的文件更多的时间。输出是:
这是相当奇怪的。如果你想的话,可以从这里下载那个可执行文件试试,看看是否有效。https:/www.dropbox.comsiphluu1huzq48vkexample.exe