SIP Endpoint SDK for OS X
|
#import <GSAudioFrame.h>
Properties | |
int | direction |
NSMutableArray * | samples |
int | length |
int | samplingFrequency |
bool | isStereo |
int | serialNumber |
int | frequency |
Audio stream frame
Definition at line 13 of file GSAudioFrame.h.
|
readwritenonatomicassign |
This property is used to store the audio stream frame direction
value 1 microphone frame value 2 speaker frame value 3 microphone and speaker frames
Definition at line 15 of file GSAudioFrame.h.
|
readwritenonatomicassign |
This property is used to store the calculated frequency of the currently monitoring stream used for testing purposes gives average value
sampling frequency depends on the currently used audio codec
Definition at line 22 of file GSAudioFrame.h.
|
readwritenonatomicassign |
This property is used to store the value to indicate stereo content
value True the frame represent stereo content value False the frame represent mono content
Definition at line 19 of file GSAudioFrame.h.
|
readwritenonatomicassign |
This property is used to store the size of audio stream samples array
length = samplingFrequency / 100 * (isStereo ? 2 : 1)
Definition at line 17 of file GSAudioFrame.h.
|
readwritenonatomicretain |
This property is used to store the array with 16-bit PCM data samples
if isStereo == TRUE then data will have interleaved stereo format: L0,R0,L1,R1,... array size = length property
Definition at line 16 of file GSAudioFrame.h.
|
readwritenonatomicassign |
This property is used to store the sampling frequency
sampling frequency depends on the currently used audio codec
Definition at line 18 of file GSAudioFrame.h.
|
readwritenonatomicassign |
This property is used to store the incremental frame serial number in the currently monitoring stream
sampling frequency depends on the currently used audio codec
Definition at line 21 of file GSAudioFrame.h.