public AIAudioResultCode SaveWave(string path, ref AIAudio_TWaveFormat format, short[] wave) { byte[] dst = new byte[wave.Length * 2]; Buffer.BlockCopy(wave, 0, dst, 0, dst.Length); AIAudioResultCode code = AIAudioAPI.SaveWave(path, ref format, dst, (uint)dst.Length); this.OnWriteLog("[AIAudioAPI_SaveWave] " + code); return(code); }
public static extern AIAudioResultCode SaveWave(string path, ref AIAudio_TWaveFormat format, byte[] buf, uint len);