SIP Endpoint SDK for OS X
 All Classes Functions Properties
GSCaptureDevice.h
1 //
2 // GSCaptureDevice.h
3 // SipEndpoint
4 //
5 // Copyright (c) 2011-2018 Genesys Telecommunications Laboratories, Inc. All rights reserved.
6 //
7 
8 #import <Foundation/Foundation.h>
9 
15 @protocol GSCaptureDevice <NSObject>
16 
20 @property (nonatomic, retain) NSString* name;
21 
25 @property (nonatomic) int deviceId;
26 
30 @property (nonatomic) BOOL canInput;
31 
35 @property (nonatomic) BOOL canOutput;
36 
40 @property (nonatomic) BOOL hasVolumeControl;
41 
45 @property (nonatomic, retain) NSArray* captureWidth;
46 
50 @property (nonatomic, retain) NSArray* captureHeight;
51 
55 @property (nonatomic, retain) NSArray* captureFps;
56 
60 @property (nonatomic, retain) NSArray* captureFormat;
61 
62 
63 @end