You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
541 B
Objective-C
23 lines
541 B
Objective-C
//
|
|
// SPSubStreamInfo.h
|
|
// SuperPlayer
|
|
//
|
|
// Created by Steven Choi on 2020/2/11.
|
|
// Copyright © 2020 annidy. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <CoreGraphics/CoreGraphics.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/// 自适应码流子流信息
|
|
@interface SPSubStreamInfo : NSObject
|
|
@property (assign, nonatomic) CGSize size;
|
|
@property (copy, nonatomic) NSString *resolutionName;
|
|
@property (copy, nonatomic) NSString *type;
|
|
+ (instancetype)infoWithDictionary:(NSDictionary *)dict;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|