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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
//
// SuperPlayerViewConfig.h
// SuperPlayer
//
// Created by annidyfeng on 2018/10/18.
//
# import <Foundation / Foundation.h>
# import <UIKit / UIKit.h>
@interface SuperPlayerViewConfig : NSObject
/// 是否镜像, 默认NO
@property BOOL mirror ;
/// 是否硬件加速, 默认YES
@property BOOL hwAcceleration ;
/// 播放速度, 默认1.0
@property CGFloat playRate ;
/// 是否静音, 默认NO
@property BOOL mute ;
/// 填充模式,默认铺满。 参见 TXLiveSDKTypeDef.h
@property NSInteger renderMode ;
/// http头, 跟进情况自行设置
@property NSDictionary * headers ;
/// 播放器最大缓存个数
@property ( nonatomic ) NSInteger maxCacheItem ;
/// 时移域名, 默认为playtimeshift.live.myqcloud.com
@property NSString * playShiftDomain ;
/// log打印
@property BOOL enableLog ;
@end