OOTimeSliderProtocol.h
1 //
2 // OOTimeSliderProtocol.h
3 // OoyalaSDK
4 //
5 // Copyright © 2017 Brightcove, Inc. All rights reserved.
6 //
7 
8 #import <AVFoundation/AVFoundation.h>
9 #import "OOOoyalaPlayer.h" // Neef for visible OOUIProgressSliderMode enum
10 
11 
13 
14 - (void)setDuration:(float)duration;
15 - (void)setCurrentTime:(float)currentTime;
16 - (void)setCurrentAvailableTime:(float)currentAvailableTime;
17 - (void)setSeekableTimeRange:(CMTimeRange)seekableTimeRange;
18 - (void)setCuePointsAtSeconds:(NSSet *)cuePoints;
19 - (void)setTimeScrubberMode:(OOUIProgressSliderMode)mode;
20 - (void)setTimeScrubberUserInteractionEnabled:(BOOL)enabled;
21 - (void)updateTimeDisplay;
22 
23 @end
Definition: OOTimeSliderProtocol.h:12