C# 클래스 FSO.Files.XA.XAFile

Represents a *.xa file. It is used to store compressed wav data.
파일 보기 프로젝트 열기: RHY3756547/FreeSO 1 사용 예제들

공개 메소드들

메소드 설명
DecompressFile ( ) : void

Decompresses the sounddata and stores it in the the decompressed stream in this class.

LoadFile ( byte Data ) : void

Loads an *.xa file, setting things up for decompression. Should always be called before DecompressFile().

LoadFile ( string Path ) : void

Loads a *.xa file, setting things up for decompression. Should always be called before DecompressFile().

XAFile ( byte data ) : System
XAFile ( string path ) : System

비공개 메소드들

메소드 설명
Clip16BitSample ( int sample ) : int
DecompressMono ( byte InputBuffer ) : void

Decompresses a mono sample.

DecompressStereo ( byte InputBuffer ) : void

Decompresses a stereo sample.

HINIBBLE ( byte B ) : byte
LONIBBLE ( byte B ) : byte

메소드 상세

DecompressFile() 공개 메소드

Decompresses the sounddata and stores it in the the decompressed stream in this class.
public DecompressFile ( ) : void
리턴 void

LoadFile() 공개 메소드

Loads an *.xa file, setting things up for decompression. Should always be called before DecompressFile().
public LoadFile ( byte Data ) : void
Data byte The data of the *.xa file to process.
리턴 void

LoadFile() 공개 메소드

Loads a *.xa file, setting things up for decompression. Should always be called before DecompressFile().
public LoadFile ( string Path ) : void
Path string The path to the *.xa file to load.
리턴 void

XAFile() 공개 메소드

public XAFile ( byte data ) : System
data byte
리턴 System

XAFile() 공개 메소드

public XAFile ( string path ) : System
path string
리턴 System