Merge pull request #800 from tablexi/allow-progress-update-interval-to-work-on-ios
Allow setting progressUpdateInterval to work on iOS
This commit is contained in:
commit
6c139a7821
@ -127,7 +127,8 @@ static NSString *const timedMetadata = @"timedMetadata";
|
|||||||
-(void)addPlayerTimeObserver
|
-(void)addPlayerTimeObserver
|
||||||
{
|
{
|
||||||
const Float64 progressUpdateIntervalMS = _progressUpdateInterval / 1000;
|
const Float64 progressUpdateIntervalMS = _progressUpdateInterval / 1000;
|
||||||
// @see endScrubbing in AVPlayerDemoPlaybackViewController.m of https://developer.apple.com/library/ios/samplecode/AVPlayerDemo/Introduction/Intro.html
|
// @see endScrubbing in AVPlayerDemoPlaybackViewController.m
|
||||||
|
// of https://developer.apple.com/library/ios/samplecode/AVPlayerDemo/Introduction/Intro.html
|
||||||
__weak RCTVideo *weakSelf = self;
|
__weak RCTVideo *weakSelf = self;
|
||||||
_timeObserver = [_player addPeriodicTimeObserverForInterval:CMTimeMakeWithSeconds(progressUpdateIntervalMS, NSEC_PER_SEC)
|
_timeObserver = [_player addPeriodicTimeObserverForInterval:CMTimeMakeWithSeconds(progressUpdateIntervalMS, NSEC_PER_SEC)
|
||||||
queue:NULL
|
queue:NULL
|
||||||
@ -738,6 +739,11 @@ static NSString *const timedMetadata = @"timedMetadata";
|
|||||||
- (void)setProgressUpdateInterval:(float)progressUpdateInterval
|
- (void)setProgressUpdateInterval:(float)progressUpdateInterval
|
||||||
{
|
{
|
||||||
_progressUpdateInterval = progressUpdateInterval;
|
_progressUpdateInterval = progressUpdateInterval;
|
||||||
|
|
||||||
|
if (_timeObserver) {
|
||||||
|
[self removePlayerTimeObserver];
|
||||||
|
[self addPlayerTimeObserver];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)removePlayerLayer
|
- (void)removePlayerLayer
|
||||||
|
Loading…
Reference in New Issue
Block a user