我必须标准化.wav
音频文件。成功从文件(ChunkID
、ChunkSize
、等)中获取元数据(前 44 个字节) Format
,fmt
因此我可以找出有多少频道(NumChannels
)BitPerSaple
等。
现在我必须将所有样本的数据复制到动态分配的数组中,但我不知道如何获取文件的大小(用于在malloc()
函数中使用)。
这是代码(如果有帮助的话):
#include <stdio.h>
#include <stdlib.h>
#define hdr_SIZE 44
typedef struct FMT
{
char SubChunk1ID[4];
int SubChunk1Size;
short int AudioFormat;
short int NumChannels;
int SampleRate;
int ByteRate;
short int BlockAlign;
short int BitsPerSample;
} fmt;
typedef struct DATA
{
char Subchunk2ID[4];
int Subchunk2Size;
int Data[441000];
} data;
typedef struct HEADER
{
char ChunkID[4];
int ChunkSize;
char Format[4];
fmt S1;
data S2;
} header;
int main()
{
char nameIn[255], nameOut[255];
printf("Enter the names of input and output files including file extension:\n");
scanf ("%s", nameIn);
//printf("%s\n", nameIn);
scanf ("%s", nameOut);
//printf("%s\n", nameOut);
FILE *input = fopen( nameIn, "rb");
FILE *output = fopen( nameOut, "wb");
header hdr;
if(input == NULL)
{
printf("Unable to open wave file (input)\n");
exit(EXIT_FAILURE);
}
fread(&hdr, sizeof(char), hdr_SIZE, input);
/* Displaying file's metadata (chunks). */
printf("\n*********************************\n");
printf("WAVE file's metadata:\n\n");
printf("%4.4s\n", hdr.ChunkID );
printf("%d\n", hdr.ChunkSize );
printf("%4.4s\n", hdr.Format );
printf("%4.4s\n", hdr.S1.SubChunk1ID );
printf("%d\n", hdr.S1.SubChunk1Size );
printf("%d\n", hdr.S1.AudioFormat );
printf("%d\n", hdr.S1.NumChannels );
printf("%d\n", hdr.S1.SampleRate );
printf("%d\n", hdr.S1.ByteRate );
printf("%d\n", hdr.S1.BlockAlign );
printf("%d\n", hdr.S1.BitsPerSample );
printf("%4.4s\n", hdr.S2.Subchunk2ID );
printf("%d\n", hdr.S2.Subchunk2Size );
printf("\n*********************************\n");
/* Dead end... =( */
fclose(input);
fclose(output);
return 0;
}
操作系统视窗 7;代码::块 IDE。
更新(解决方案!):
事实证明,我已经有了样本的大小值(Subchunk2Size
)。所以就我而言,我只需要使用hdr.S2.Subchunk2Size
该malloc()
功能。