mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-08-24 01:56:06 -04:00
14 lines
436 B
Objective-C
14 lines
436 B
Objective-C
#import "MLFormat.h"
|
|
#import "YTSingleVideoControllerDelegate.h"
|
|
#import "YTSingleVideo.h"
|
|
|
|
@interface YTSingleVideoController : NSObject
|
|
@property (nonatomic, weak, readwrite) NSObject <YTSingleVideoControllerDelegate> *delegate;
|
|
- (YTSingleVideo *)singleVideo;
|
|
- (YTSingleVideo *)videoData;
|
|
- (NSArray <MLFormat *> *)selectableVideoFormats;
|
|
- (BOOL)isMuted;
|
|
- (void)playerRateDidChange:(float)rate;
|
|
- (void)setMuted:(BOOL)muted;
|
|
@end
|