Sip Endpoint SDK for Apple OS
 All Classes Functions Properties
GSStatistics.h
1 //
2 // GSStatistics.h
3 // SipEndpoint
4 //
5 // Created by Valery Polishchuk on 09/01/12.
6 // Copyright (c) 2012 Genesys Labs. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 //#import "GSAudioStreamStatistics.h"
11 
12 @interface GSStatistics : NSObject {
13  NSString* codecName;
14 
15  int gotLocalStat;
16  float localFractionLost;
17  int localTotalLost;
18  unsigned localJitter;
19  unsigned localPktCount;
20  unsigned localOctCount;
21 
22  int gotRemoteSR;
23  unsigned remotePktCount;
24  unsigned remoteOctCount;
25 
26  int gotRemoteRR;
27  float remoteFractionLost;
28  int remoteTotalLost;
29  unsigned remoteJitter;
30  int rttMs;
31 }
32 
33 @property (nonatomic, copy) NSString* codecName;
34 
35 @property (nonatomic) int gotLocalStat;
36 @property (nonatomic) float localFractionLost;
37 @property (nonatomic) int localTotalLost;
38 @property (nonatomic) unsigned localJitter;
39 @property (nonatomic) unsigned localPktCount;
40 @property (nonatomic) unsigned localOctCount;
41 
42 @property (nonatomic) int gotRemoteSR;
43 @property (nonatomic) unsigned remotePktCount;
44 @property (nonatomic) unsigned remoteOctCount;
45 
46 @property (nonatomic) int gotRemoteRR;
47 @property (nonatomic) float remoteFractionLost;
48 @property (nonatomic) int remoteTotalLost;
49 @property (nonatomic) unsigned remoteJitter;
50 @property (nonatomic) int rttMs;
51 
52 @end