SellyCloudSDK_demo/SellyCloudSDK/sdk/SellyCloudSDK.framework/Headers/SellyLivePusherStats.h

42 lines
959 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// SellyLivePusherStats.h
// AFNetworking
//
// Created by Caleb on 23/9/25.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface SellyLivePusherStats : NSObject <NSCopying>
//直播协议
@property (nonatomic, strong)NSString *protocol;
/// App / System CPU%
@property (nonatomic, assign) NSUInteger appCpu;
@property (nonatomic, assign) NSUInteger systemCpu;
/// 帧率fps
@property (nonatomic, assign) NSUInteger fps;
/// 视频 / 音频码率kbps
@property (nonatomic, assign) NSUInteger videoBitrate;
@property (nonatomic, assign) NSUInteger audioBitrate;
/// 总上行速率kbps等于videoBitrate+audioBitrate
@property (nonatomic, assign) NSUInteger netSpeed;
/// RTTms
@property (nonatomic, assign) NSUInteger rtt;
/// 快照时间ms since boot
@property (nonatomic, assign) uint64_t timestampMs;
//videoSize
@property (nonatomic, assign)CGSize size;
@end
NS_ASSUME_NONNULL_END