Method | Description | |
---|---|---|
AcmFileWriter ( string FileName, WaveFormatTag Encoding, WaveFormat Format ) : System |
Creates a new instance of AcmFileWriter.
|
|
Dispose ( ) : void |
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
|
|
Write ( byte Buffer, int Length ) : bool |
Write data from a byte[].
|
|
Write ( float Buffer, int Length ) : bool |
Write data from a float[].
|
|
Write ( short Buffer, int Length ) : bool |
Write data from a short[].
|
Method | Description | |
---|---|---|
GetDummyChannel ( WaveFormat Format ) : int | ||
ToBassFlags ( WaveFormatTag WfTag, int BitsPerSample ) : BassFlags |
public AcmFileWriter ( string FileName, WaveFormatTag Encoding, WaveFormat Format ) : System | ||
FileName | string | Path to the file to write. |
Encoding | WaveFormatTag | |
Format | WaveFormat | |
return | System |
public Write ( byte Buffer, int Length ) : bool | ||
Buffer | byte | byte[] to write from. |
Length | int | No of bytes to write. |
return | bool |
public Write ( float Buffer, int Length ) : bool | ||
Buffer | float | float[] to write from. |
Length | int | No of bytes to write, i.e. (No of floats) * 4. |
return | bool |
public Write ( short Buffer, int Length ) : bool | ||
Buffer | short | short[] to write from. |
Length | int | No of bytes to write, i.e. (No of Shorts) * 2. |
return | bool |