My Project
CCVideoSenderStatus.h
1 //
2 // CCVideoSenderStatus.h
3 // CCClassRoomBasic
4 //
5 // Created by cc on 17/9/25.
6 // Copyright © 2017年 cc. All rights reserved.
7 //
8 
9 
10 #import <Foundation/Foundation.h>
11 #import <UIKit/UIKit.h>
15 @interface CCVideoSenderStatus : NSObject
19 @property(nonatomic, readonly) NSString* ssrc;
23 @property(nonatomic, readonly) NSString* codecName;
27 @property(nonatomic, readonly) NSString* trackIdentifier;
31 @property(nonatomic, readonly) NSUInteger bytesSent;
35 @property(nonatomic, readonly) NSUInteger packetsSent;
39 @property(nonatomic, readonly) NSUInteger packetsLost;
43 @property(nonatomic, readonly) NSUInteger firCount;
47 @property(nonatomic, readonly) NSUInteger pliCount;
51 @property(nonatomic, readonly) NSUInteger nackCount;
55 @property(nonatomic, readonly) CGSize frameResolution;
59 @property(nonatomic, readonly) NSUInteger frameRate;
63 @property(nonatomic, readonly) NSUInteger adaptChanges;
67 @property(nonatomic, readonly) NSUInteger roundTripTime;
68 @end
NSString * ssrc
Synchronization source, defined in RTC3550.
Definition: CCVideoSenderStatus.h:19
NSUInteger nackCount
Count the total number of Negative ACKnowledgement (NACK) packets received by the sender and is sent ...
Definition: CCVideoSenderStatus.h:51
NSUInteger packetsSent
Total number of RTP packets sent for this SSRC.
Definition: CCVideoSenderStatus.h:35
NSUInteger packetsLost
Total number of RTP packets lost for this SSRC.
Definition: CCVideoSenderStatus.h:39
NSUInteger adaptChanges
Video adapt reason.
Definition: CCVideoSenderStatus.h:63
NSUInteger roundTripTime
Estimated round trip time (milliseconds) for this SSRC based on the RTCP timestamp.
Definition: CCVideoSenderStatus.h:67
NSUInteger pliCount
Count the total number of Packet Loss Indication (PLI) packets received by the sender and is sent by ...
Definition: CCVideoSenderStatus.h:47
NSString * trackIdentifier
Represents the track.id property.
Definition: CCVideoSenderStatus.h:27
NSUInteger frameRate
Video frame rate sent.
Definition: CCVideoSenderStatus.h:59
NSUInteger bytesSent
Total number of bytes sent for this SSRC.
Definition: CCVideoSenderStatus.h:31
视频上行状态
Definition: CCVideoSenderStatus.h:15
NSString * codecName
Codec name.
Definition: CCVideoSenderStatus.h:23
CGSize frameResolution
Video frame resolution sent.
Definition: CCVideoSenderStatus.h:55
NSUInteger firCount
Count the total number of Full Intra Request (FIR) packets received by the sender. This metric is only valid for video and is sent by receiver.
Definition: CCVideoSenderStatus.h:43