blob: 77d6ada6b1ad1a667d3cbbda625aa0ec03bae386 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
/* HBPlayer.h $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr/>.
It may be used under the terms of the GNU General Public License. */
#import <Foundation/Foundation.h>
#import <QuartzCore/QuartzCore.h>
#import "HBPlayerTrack.h"
NS_ASSUME_NONNULL_BEGIN
/**
* A protocol for a generic player,
* users should call loadPlayableValueAsynchronouslyWithCompletionHandler
* before calling any other method or property.
*/
@protocol HBPlayer <NSObject>
- (instancetype)initWithURL:(NSURL *)url;
@property (nonatomic, readonly) CALayer *layer;
@property (nonatomic, readonly) NSTimeInterval duration;
@property (nonatomic) NSTimeInterval currentTime;
@property (nonatomic, readonly, copy) NSArray<HBPlayerTrack *> *audioTracks;
@property (nonatomic, readonly, copy) NSArray<HBPlayerTrack *> *subtitlesTracks;
- (void)enableAudioTrack:(nullable HBPlayerTrack *)playerTrack;
- (void)enableSubtitlesTrack:(nullable HBPlayerTrack *)playerTrack;
@property (nonatomic) float rate;
@property (nonatomic) float volume;
@property (nonatomic, readonly, getter=isPlayable) BOOL playable;
- (void)loadPlayableValueAsynchronouslyWithCompletionHandler:(nullable void (^)(void))handler;
- (id)addPeriodicTimeObserverUsingBlock:(void (^)(NSTimeInterval time))block;
- (void)removeTimeObserver:(id)observer;
- (id)addRateObserverUsingBlock:(void (^)(void))block;
- (void)removeRateObserver:(id)observer;
- (void)play;
- (void)pause;
- (void)gotoBeginning;
- (void)gotoEnd;
- (void)stepForward;
- (void)stepBackward;
@end
NS_ASSUME_NONNULL_END
|