您好,我想做的是反转二进制文件。文件的类型是 wav,例如,如果通道号为 2,每个样本的位数为 16,则每次我将复制 32/8 = 4 个字节。首先要做的是按原样复制标题(那部分没问题),然后反转他的数据。我创建了一个代码来复制标头,然后从末尾复制部分数据 10 次(用于测试),但是由于某种原因它没有复制 40 个字节,而是在 20 处停止(即使它会执行 20 次它会仍然只复制 20 个字节)。这是执行此操作的代码。如果您能看到它,我无法发现错误告诉我:) 也许错误在其他地方,所以我编写了完整的功能
void reverse(char **array)
{
int i=0;
word numberChannels;
word bitsPerSample;
FILE *pFile;
FILE *pOutFile;
byte head[44];
byte *rev;
int count;
if(checkFileName(array[2]) == 0 || checkFileName(array[3]) == 0)
{
printf("wrong file name\n");
exit(1);
}
pFile = fopen (array[2] ,"r");
fseek(pFile, 22, SEEK_SET);//position of channel
fread(&numberChannels, sizeof(word), 1, pFile);
fseek(pFile, 34, SEEK_SET);//position of bitsPerSample
fread(&bitsPerSample, sizeof(word), 1, pFile);
count = numberChannels * bitsPerSample;
rewind(pFile);
fread(head, sizeof(head), 1, pFile);
pOutFile = fopen (array[3] ,"w");
fwrite(head, sizeof(head), 1, pOutFile);
count = count/8;//in my example count = 32 so count =4
rev = (byte*)malloc(sizeof(byte) * count);//byte = unsigned char
fseek(pFile, -count, SEEK_END);
for(i=0; i<10 ; i++)
{
fread(rev, count, 1, pFile);
fwrite(rev, count, 1, pOutFile);
fseek(pFile, -count, SEEK_CUR);
}
fclose(pFile);
fclose(pOutFile);
}