Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumblekit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikkel Krautz <mikkel@krautz.dk>2011-07-30 04:34:09 +0400
committerMikkel Krautz <mikkel@krautz.dk>2011-07-30 04:34:09 +0400
commitece344bfcd2c43cfd0e5e2a2f1291ba8e969141e (patch)
tree8a0c349fe26ecfb965dd96250d1197a4ad3c0b24 /src/MumbleKit/MKAudioOutputSpeech.h
parent1947ec2ba171c07c45c4830aa24fdbe45abf2ac4 (diff)
Don't expose ivars in class @interfaces in public headers.
Diffstat (limited to 'src/MumbleKit/MKAudioOutputSpeech.h')
-rw-r--r--src/MumbleKit/MKAudioOutputSpeech.h32
1 files changed, 1 insertions, 31 deletions
diff --git a/src/MumbleKit/MKAudioOutputSpeech.h b/src/MumbleKit/MKAudioOutputSpeech.h
index ca5408c..3c335c1 100644
--- a/src/MumbleKit/MKAudioOutputSpeech.h
+++ b/src/MumbleKit/MKAudioOutputSpeech.h
@@ -36,37 +36,7 @@
struct MKAudioOutputSpeechPrivate;
-@interface MKAudioOutputSpeech : MKAudioOutputUser {
- @private
- struct MKAudioOutputSpeechPrivate *_private;
-
- @protected
- MKUDPMessageType messageType;
- NSUInteger bufferOffset;
- NSUInteger bufferFilled;
- NSUInteger outputSize;
- NSUInteger lastConsume;
- NSUInteger frameSize;
- BOOL lastAlive;
- BOOL hasTerminator;
-
- float *fadeIn;
- float *fadeOut;
-
- NSInteger missCount;
- NSInteger missedFrames;
-
- NSMutableArray *frames;
- unsigned char flags;
-
- NSUInteger _userSession;
- float powerMin, powerMax;
- float averageAvailable;
-
- MKTalkState _talkState;
-
- pthread_mutex_t jitterMutex;
-}
+@interface MKAudioOutputSpeech : MKAudioOutputUser
- (id) initWithSession:(NSUInteger)session sampleRate:(NSUInteger)freq messageType:(MKMessageType)type;
- (void) dealloc;