My Project
CCAudioReceiveStatus.h
1 //
2 // CCAudioReceiveStatus.h
3 // CCClassRoomBasic
4 //
5 // Created by cc on 17/9/25.
6 // Copyright © 2017年 cc. All rights reserved.
7 //
8 
9 
10 
11 #import <Foundation/Foundation.h>
12 
16 @interface CCAudioReceiveStatus : NSObject
20 @property(nonatomic, readonly) NSString* ssrc;
24 @property(nonatomic, readonly) NSString* codecName;
28 @property(nonatomic, readonly) NSString* trackIdentifier;
32 @property(nonatomic, readonly) NSUInteger bytesReceived;
36 @property(nonatomic, readonly) NSUInteger packetsReceived;
40 @property(nonatomic, readonly) NSUInteger packetsLost;
44 @property(nonatomic, readonly) NSUInteger estimatedDelay;
45 @end
NSString * trackIdentifier
Represents the track.id property.
Definition: CCAudioReceiveStatus.h:28
音频下行状态
Definition: CCAudioReceiveStatus.h:16
NSUInteger packetsReceived
Total number of RTP packets received for this SSRC.
Definition: CCAudioReceiveStatus.h:36
NSUInteger estimatedDelay
Audio delay estimated with unit of millisecond.
Definition: CCAudioReceiveStatus.h:44
NSUInteger bytesReceived
Total number of bytes received for this SSRC.
Definition: CCAudioReceiveStatus.h:32
NSString * codecName
Codec name.
Definition: CCAudioReceiveStatus.h:24
NSString * ssrc
Synchronization source, defined in RTC3550.
Definition: CCAudioReceiveStatus.h:20
NSUInteger packetsLost
Total number of RTP packets lost for this SSRC.
Definition: CCAudioReceiveStatus.h:40