SIP Endpoint SDK for OS X
 All Classes Functions Properties
GSAudioFrame.h
1 //
2 // GSVideoStream.h
3 // SipEndpoint
4 //
5 // Copyright (c) 2011-2018 Genesys Telecommunications Laboratories, Inc. All rights reserved.
6 //
7 
8 #import <Foundation/Foundation.h>
9 
13 @interface GSAudioFrame : NSObject {
14 @private
15  int direction;
16  NSMutableArray *samples;
17  int length;
19  bool isStereo;
20 @public
22  int frequency;
23 }
24 
32 @property (nonatomic) int direction;
33 
42 @property (nonatomic, retain) NSMutableArray *samples;
43 
51 @property (nonatomic) int length;
52 
58 @property (nonatomic) int samplingFrequency;
59 
66 @property (nonatomic) bool isStereo;
67 
74 @property (nonatomic) int serialNumber;
75 
83 @property (nonatomic) int frequency;
84 @end