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

MKAudioDevice.m « src - github.com/mumble-voip/mumblekit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 05288f7e9575fcccc1e904c32e98064fbcaf8baf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright 2012 The MumbleKit Developers. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

#import "MKAudioDevice.h"

@implementation MKAudioDevice

- (id) initWithSettings:(MKAudioSettings *)settings {
    return nil;
}

- (BOOL) setupDevice {
    return NO;
}

- (BOOL) teardownDevice {
    return NO;
}

- (void) setupOutput:(MKAudioDeviceOutputFunc)outf {
}

- (void) setupInput:(MKAudioDeviceInputFunc)inf {
}

- (int) inputSampleRate {
    return 0;
}

- (int) outputSampleRate {
    return 0;
}

- (int) numberOfInputChannels {
    return 0;
}

- (int) numberOfOutputChannels {
    return 0;
}

@end