]> sjero.net Git - linphone/commitdiff
Merge branch 'master' of git.linphone.org:linphone
authorYann Diorcet <yann.diorcet@belledonne-communications.com>
Mon, 21 May 2012 13:35:27 +0000 (15:35 +0200)
committerYann Diorcet <yann.diorcet@belledonne-communications.com>
Mon, 21 May 2012 13:35:27 +0000 (15:35 +0200)
1  2 
coreapi/linphonecore.h

index 9b0de2e7159baf40a91a8a223ad97fe85ea26542,0eaec1e81e2e4f223b74f22600611244d935693e..0530626ea2ba99f45af85b5e97f84d2188954956
@@@ -227,24 -227,11 +227,27 @@@ typedef struct _LinphoneVideoPolicy Lin
   * The LinphoneCall object represents a call issued or received by the LinphoneCore
  **/
  struct _LinphoneCall;
+ /**
+  * The LinphoneCall object represents a call issued or received by the LinphoneCore
+ **/
  typedef struct _LinphoneCall LinphoneCall;
 -    
 +
 +
 +#define LINPHONE_CALL_STATS_AUDIO 0
 +#define LINPHONE_CALL_STATS_VIDEO 1
 +
 +typedef struct _LinphoneCallStats {
 +      int             type;
 +      jitter_stats_t  jitter_stats;
 +      mblk_t*         received_rtcp;
 +      mblk_t*         sent_rtcp;
 +      float           round_trip_delay;
 +} LinphoneCallStats;
 +
 +const LinphoneCallStats *linphone_call_get_audio_stats(const LinphoneCall *call);
 +const LinphoneCallStats *linphone_call_get_video_stats(const LinphoneCall *call);
 +
 +
  /** Callback prototype */
  typedef void (*LinphoneCallCbFunc)(struct _LinphoneCall *call,void * user_data);