My Project
CCAudioSenderStatus.h
1 //
2 // CCAudioSenderStatus.h
3 // CCClassRoomBasic
4 //
5 // Created by cc on 17/9/25.
6 // Copyright © 2017年 cc. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
10 
14 @interface CCAudioSenderStatus : NSObject
18 @property(nonatomic, readonly) NSString* ssrc;
22 @property(nonatomic, readonly) NSString* codecName;
26 @property(nonatomic, readonly) NSString* trackIdentifier;
30 @property(nonatomic, readonly) NSUInteger bytesSent;
34 @property(nonatomic, readonly) NSUInteger packetsSent;
38 @property(nonatomic, readonly) NSUInteger packetsLost;
42 @property(nonatomic, readonly) NSUInteger roundTripTime;
43 @end
NSString * codecName
Codec name.
Definition: CCAudioSenderStatus.h:22
NSUInteger packetsSent
Total number of RTP packets sent for this SSRC.
Definition: CCAudioSenderStatus.h:34
NSUInteger roundTripTime
Estimated round trip time (milliseconds) for this SSRC based on the RTCP timestamp.
Definition: CCAudioSenderStatus.h:42
NSString * trackIdentifier
Represents the track.id property.
Definition: CCAudioSenderStatus.h:26
NSUInteger bytesSent
Total number of bytes sent for this SSRC.
Definition: CCAudioSenderStatus.h:30
NSUInteger packetsLost
Total number of RTP packets lost for this SSRC.
Definition: CCAudioSenderStatus.h:38
音频上行状态
Definition: CCAudioSenderStatus.h:14
NSString * ssrc
Synchronization source, defined in RTC3550.
Definition: CCAudioSenderStatus.h:18