3 writes to _wfxOut
System.Speech (3)
Internal\Synthesis\AudioFileOut.cs (3)
28
_wfxOut
= new WAVEFORMATEX();
41
_wfxOut
= WAVEFORMATEX.Default;
70
_doConversion = _pcmConverter.PrepareConverter(ref _wfxIn, ref
_wfxOut
);
14 references to _wfxOut
System.Speech (14)
Internal\Synthesis\AudioFileOut.cs (14)
33
_wfxOut
.wFormatTag = (short)formatInfo.EncodingFormat;
34
_wfxOut
.wBitsPerSample = (short)formatInfo.BitsPerSample;
35
_wfxOut
.nSamplesPerSec = formatInfo.SamplesPerSecond;
36
_wfxOut
.nChannels = (short)formatInfo.ChannelCount;
43
_wfxOut
.nBlockAlign = (short)(
_wfxOut
.nChannels *
_wfxOut
.wBitsPerSample / 8);
44
_wfxOut
.nAvgBytesPerSec =
_wfxOut
.wBitsPerSample *
_wfxOut
.nSamplesPerSec *
_wfxOut
.nChannels / 8;
74
WriteWaveHeader(_stream,
_wfxOut
, _startStreamPosition, 0);
101
WriteWaveHeader(_stream,
_wfxOut
, _startStreamPosition, _totalByteWrittens);
226
return
_wfxOut
.ToBytes();