C# 클래스 Poker.Client.Audio.AudioEncoderBase

상속: IAudioEncoder
파일 보기 프로젝트 열기: BernhardGlueck/Poker

공개 메소드들

메소드 설명
Close ( ) : void
Open ( System targetStream, int channelCount, int sampleFrequency ) : void
Write ( float samples, int count ) : void

보호된 메소드들

메소드 설명
OnClose ( ) : void
OnOpen ( System targetStream, int channelCount, int sampleFrequency ) : void
OnWrite ( byte buffer, int count ) : void

메소드 상세

Close() 공개 메소드

public Close ( ) : void
리턴 void

OnClose() 보호된 추상적인 메소드

protected abstract OnClose ( ) : void
리턴 void

OnOpen() 보호된 추상적인 메소드

protected abstract OnOpen ( System targetStream, int channelCount, int sampleFrequency ) : void
targetStream System
channelCount int
sampleFrequency int
리턴 void

OnWrite() 보호된 추상적인 메소드

protected abstract OnWrite ( byte buffer, int count ) : void
buffer byte
count int
리턴 void

Open() 공개 메소드

public Open ( System targetStream, int channelCount, int sampleFrequency ) : void
targetStream System
channelCount int
sampleFrequency int
리턴 void

Write() 공개 메소드

public Write ( float samples, int count ) : void
samples float
count int
리턴 void