|
Oh. I know this question.
But the type of data collected is: {This is the data collected by the audio
FWaveFormat.wFormatTag: = 1;
FWaveFormat.nChannels: = 2; // mono
FWaveFormat.nSamplesPerSec: = 44100;
FWaveFormat.nAvgBytesPerSec: = 176400;
FWaveFormat.nBlockAlign: = 4;
FWaveFormat.wbitspersample: = 16;
FWaveFormat.cbSize: = 0;} The size of each Sample is 176400/2, and each sampling point needs 16 bits, so the number of points I collected is calculated as follows: 8200/2 (channel) / 16 (bit) What is the integer |
|