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>2012-03-11 01:49:43 +0400
committerMikkel Krautz <mikkel@krautz.dk>2012-03-11 01:49:43 +0400
commitb6a4307b6e52bb4539e5f8ad4f17a889a549c161 (patch)
tree8ac26aa585eccddcba06dda5fa9f8dd284f706b9 /src/MumbleKit
parent94ceb59d76d3625871de1bbe32b884d9982303f4 (diff)
Remove MKAudio benchmark mode.
Diffstat (limited to 'src/MumbleKit')
-rw-r--r--src/MumbleKit/MKAudio.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/MumbleKit/MKAudio.h b/src/MumbleKit/MKAudio.h
index 380f424..a1b3182 100644
--- a/src/MumbleKit/MKAudio.h
+++ b/src/MumbleKit/MKAudio.h
@@ -68,14 +68,8 @@ typedef struct _MKAudioSettings {
int outputDelay;
float micBoost;
BOOL enablePreprocessor;
- BOOL enableBenchmark;
} MKAudioSettings;
-typedef struct _MKAudioBenchmark {
- signed long avgPreprocessorRuntime;
-} MKAudioBenchmark;
-
-
/**
* MKAudio represents the MumbleKit audio subsystem.
*/
@@ -156,19 +150,7 @@ typedef struct _MKAudioBenchmark {
*/
- (void) setForceTransmit:(BOOL)enableForceTransmit;
-///----------------
-/// @name Benchmark
-///----------------
-
-/**
- * Fills a MKAudioBenchmark struct with the current benchmark data.
- *
- * @param bench The struct to fill out with benchmark data. Should point to a MKAudioBenchmark struct.
- */
-- (void) getBenchmarkData:(MKAudioBenchmark *)bench;
-
- (NSString *) currentAudioRoute;
-
- (float) speechProbablity;
- (float) peakCleanMic;