12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286 |
- /*****************************************************************************
- * VLCPlaybackController.m
- * VLC for iOS
- *****************************************************************************
- * Copyright (c) 2013-2015 VideoLAN. All rights reserved.
- * $Id$
- *
- * Authors: Felix Paul Kühne <fkuehne # videolan.org>
- * Carola Nitz <caro # videolan.org>
- * Gleb Pinigin <gpinigin # gmail.com>
- * Pierre Sagaspe <pierre.sagaspe # me.com>
- * Tobias Conradi <videolan # tobias-conradi.de>
- * Sylver Bruneau <sylver.bruneau # gmail dot com>
- * Winston Weinert <winston # ml1 dot net>
- *
- * Refer to the COPYING file of the official project for license.
- *****************************************************************************/
- #import "VLCPlaybackController.h"
- #import "UIDevice+VLC.h"
- #import <AVFoundation/AVFoundation.h>
- #import "VLCPlayerDisplayController.h"
- #import "VLCConstants.h"
- #import "VLCRemoteControlService.h"
- #import "VLCMetadata.h"
- NSString *const VLCPlaybackControllerPlaybackDidStart = @"VLCPlaybackControllerPlaybackDidStart";
- NSString *const VLCPlaybackControllerPlaybackDidPause = @"VLCPlaybackControllerPlaybackDidPause";
- NSString *const VLCPlaybackControllerPlaybackDidResume = @"VLCPlaybackControllerPlaybackDidResume";
- NSString *const VLCPlaybackControllerPlaybackDidStop = @"VLCPlaybackControllerPlaybackDidStop";
- NSString *const VLCPlaybackControllerPlaybackMetadataDidChange = @"VLCPlaybackControllerPlaybackMetadataDidChange";
- NSString *const VLCPlaybackControllerPlaybackDidFail = @"VLCPlaybackControllerPlaybackDidFail";
- NSString *const VLCPlaybackControllerPlaybackPositionUpdated = @"VLCPlaybackControllerPlaybackPositionUpdated";
- typedef NS_ENUM(NSUInteger, VLCAspectRatio) {
- VLCAspectRatioDefault = 0,
- VLCAspectRatioFillToScreen,
- VLCAspectRatioFourToThree,
- VLCAspectRatioSixteenToNine,
- VLCAspectRatioSixteenToTen,
- };
- @interface VLCPlaybackController () <VLCMediaPlayerDelegate, VLCMediaDelegate, VLCRemoteControlServiceDelegate>
- {
- VLCRemoteControlService *_remoteControlService;
- VLCMediaPlayer *_mediaPlayer;
- VLCMediaListPlayer *_listPlayer;
- BOOL _playerIsSetup;
- BOOL _shouldResumePlaying;
- BOOL _sessionWillRestart;
- NSString *_pathToExternalSubtitlesFile;
- int _itemInMediaListToBePlayedFirst;
- NSTimer *_sleepTimer;
- NSUInteger _currentAspectRatio;
- UIView *_videoOutputViewWrapper;
- UIView *_actualVideoOutputView;
- UIView *_preBackgroundWrapperView;
- BOOL _needsMetadataUpdate;
- BOOL _mediaWasJustStarted;
- BOOL _recheckForExistingThumbnail;
- BOOL _headphonesWasPlugged;
- NSLock *_playbackSessionManagementLock;
- VLCDialogProvider *_dialogProvider;
- NSMutableArray *_shuffleStack;
- }
- @end
- @implementation VLCPlaybackController
- #pragma mark instance management
- + (VLCPlaybackController *)sharedInstance
- {
- static VLCPlaybackController *sharedInstance = nil;
- static dispatch_once_t pred;
- dispatch_once(&pred, ^{
- sharedInstance = [VLCPlaybackController new];
- });
- return sharedInstance;
- }
- - (void)dealloc
- {
- _dialogProvider = nil;
- [[NSNotificationCenter defaultCenter] removeObserver:self];
- }
- - (instancetype)init
- {
- self = [super init];
- if (self) {
- // listen to audiosessions and appkit callback
- _headphonesWasPlugged = [self areHeadphonesPlugged];
- NSNotificationCenter *defaultCenter = [NSNotificationCenter defaultCenter];
- [defaultCenter addObserver:self selector:@selector(audioSessionRouteChange:)
- name:AVAudioSessionRouteChangeNotification object:nil];
- [defaultCenter addObserver:self selector:@selector(handleInterruption:)
- name:AVAudioSessionInterruptionNotification object:[AVAudioSession sharedInstance]];
- // appkit because we neeed to know when we go to background in order to stop the video, so that we don't crash
- [defaultCenter addObserver:self selector:@selector(applicationWillResignActive:)
- name:UIApplicationWillResignActiveNotification object:nil];
- [defaultCenter addObserver:self selector:@selector(applicationDidBecomeActive:)
- name:UIApplicationDidBecomeActiveNotification object:nil];
- [defaultCenter addObserver:self selector:@selector(applicationDidEnterBackground:)
- name:UIApplicationDidEnterBackgroundNotification object:nil];
- _metadata = [VLCMetaData new];
- _dialogProvider = [[VLCDialogProvider alloc] initWithLibrary:[VLCLibrary sharedLibrary] customUI:NO];
- _playbackSessionManagementLock = [[NSLock alloc] init];
- _shuffleMode = NO;
- _shuffleStack = [[NSMutableArray alloc] init];
- }
- return self;
- }
- - (VLCRemoteControlService *)remoteControlService
- {
- if (!_remoteControlService) {
- _remoteControlService = [[VLCRemoteControlService alloc] init];
- _remoteControlService.remoteControlServiceDelegate = self;
- }
- return _remoteControlService;
- }
- #pragma mark - playback management
- - (void)openVideoSubTitlesFromFile:(NSString *)pathToFile
- {
- [_mediaPlayer addPlaybackSlave:[NSURL fileURLWithPath:pathToFile] type:VLCMediaPlaybackSlaveTypeSubtitle enforce:YES];
- }
- - (void)playMediaList:(VLCMediaList *)mediaList firstIndex:(NSInteger)index subtitlesFilePath:(NSString *)subsFilePath
- {
- self.mediaList = mediaList;
- _itemInMediaListToBePlayedFirst = (int)index;
- _pathToExternalSubtitlesFile = subsFilePath;
- _sessionWillRestart = _playerIsSetup;
- _playerIsSetup ? [self stopPlayback] : [self startPlayback];
- }
- - (VLCTime *)playedTime
- {
- return [_mediaPlayer time];
- }
- - (void)startPlayback
- {
- if (_playerIsSetup) {
- APLog(@"%s: player is already setup, bailing out", __PRETTY_FUNCTION__);
- return;
- }
- BOOL ret = [_playbackSessionManagementLock tryLock];
- if (!ret) {
- APLog(@"%s: locking failed", __PRETTY_FUNCTION__);
- return;
- }
- NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
- if (!self.mediaList) {
- APLog(@"%s: no URL and no media list set, stopping playback", __PRETTY_FUNCTION__);
- [_playbackSessionManagementLock unlock];
- [self stopPlayback];
- return;
- }
- /* video decoding permanently fails if we don't provide a UIView to draw into on init
- * hence we provide one which is not attached to any view controller for off-screen drawing
- * and disable video decoding once playback started */
- _actualVideoOutputView = [[UIView alloc] initWithFrame:[UIScreen mainScreen].bounds];
- _actualVideoOutputView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
- _actualVideoOutputView.autoresizesSubviews = YES;
- if (_pathToExternalSubtitlesFile)
- _listPlayer = [[VLCMediaListPlayer alloc] initWithOptions:@[[NSString stringWithFormat:@"--%@=%@", kVLCSettingSubtitlesFilePath, _pathToExternalSubtitlesFile]] andDrawable:_actualVideoOutputView];
- else
- _listPlayer = [[VLCMediaListPlayer alloc] initWithDrawable:_actualVideoOutputView];
- /* to enable debug logging for the playback library instance, switch the boolean below
- * note that the library instance used for playback may not necessarily match the instance
- * used for media discovery or thumbnailing */
- _listPlayer.mediaPlayer.libraryInstance.debugLogging = NO;
- _mediaPlayer = _listPlayer.mediaPlayer;
- [_mediaPlayer setDelegate:self];
- if ([[defaults objectForKey:kVLCSettingPlaybackSpeedDefaultValue] floatValue] != 0)
- [_mediaPlayer setRate: [[defaults objectForKey:kVLCSettingPlaybackSpeedDefaultValue] floatValue]];
- if ([[defaults objectForKey:kVLCSettingDeinterlace] intValue] != 0)
- [_mediaPlayer setDeinterlaceFilter:@"blend"];
- else
- [_mediaPlayer setDeinterlaceFilter:nil];
- if (_pathToExternalSubtitlesFile)
- [_mediaPlayer addPlaybackSlave:[NSURL fileURLWithPath:_pathToExternalSubtitlesFile] type:VLCMediaPlaybackSlaveTypeSubtitle enforce:YES];
- VLCMedia *media = [_mediaList mediaAtIndex:_itemInMediaListToBePlayedFirst];
- [media parseWithOptions:VLCMediaParseLocal];
- media.delegate = self;
- [media addOptions:self.mediaOptionsDictionary];
- [_listPlayer setMediaList:self.mediaList];
- [_listPlayer setRepeatMode:VLCDoNotRepeat];
- [_playbackSessionManagementLock unlock];
- [self _playNewMedia];
- }
- - (void)_playNewMedia
- {
- BOOL ret = [_playbackSessionManagementLock tryLock];
- if (!ret) {
- APLog(@"%s: locking failed", __PRETTY_FUNCTION__);
- return;
- }
- // Set last selected equalizer profile
- unsigned int profile = (unsigned int)[[[NSUserDefaults standardUserDefaults] objectForKey:kVLCSettingEqualizerProfile] integerValue];
- [_mediaPlayer resetEqualizerFromProfile:profile];
- [_mediaPlayer setPreAmplification:[_mediaPlayer preAmplification]];
- _mediaWasJustStarted = YES;
- [_mediaPlayer addObserver:self forKeyPath:@"time" options:0 context:nil];
- [_mediaPlayer addObserver:self forKeyPath:@"remainingTime" options:0 context:nil];
- [_listPlayer playItemAtNumber:@(_itemInMediaListToBePlayedFirst)];
- if ([self.delegate respondsToSelector:@selector(prepareForMediaPlayback:)])
- [self.delegate prepareForMediaPlayback:self];
- _currentAspectRatio = VLCAspectRatioDefault;
- _mediaPlayer.videoAspectRatio = NULL;
- _mediaPlayer.videoCropGeometry = NULL;
- [[self remoteControlService] subscribeToRemoteCommands];
- _playerIsSetup = YES;
- [[NSNotificationCenter defaultCenter] postNotificationName:VLCPlaybackControllerPlaybackDidStart object:self];
- [_playbackSessionManagementLock unlock];
- }
- - (void)stopPlayback
- {
- BOOL ret = [_playbackSessionManagementLock tryLock];
- if (!ret) {
- APLog(@"%s: locking failed", __PRETTY_FUNCTION__);
- return;
- }
- if (_mediaPlayer) {
- @try {
- [_mediaPlayer removeObserver:self forKeyPath:@"time"];
- [_mediaPlayer removeObserver:self forKeyPath:@"remainingTime"];
- }
- @catch (NSException *exception) {
- APLog(@"we weren't an observer yet");
- }
- if (_mediaPlayer.media) {
- [_mediaPlayer pause];
- #if TARGET_OS_IOS
- [self _savePlaybackState];
- #endif
- [_mediaPlayer stop];
- }
- _mediaPlayer = nil;
- _listPlayer = nil;
- }
- if (!_sessionWillRestart) {
- _mediaList = nil;
- if (_pathToExternalSubtitlesFile) {
- NSFileManager *fileManager = [NSFileManager defaultManager];
- if ([fileManager fileExistsAtPath:_pathToExternalSubtitlesFile])
- [fileManager removeItemAtPath:_pathToExternalSubtitlesFile error:nil];
- _pathToExternalSubtitlesFile = nil;
- }
- }
- _playerIsSetup = NO;
- [_shuffleStack removeAllObjects];
- #pragma clang diagnostic push
- #pragma clang diagnostic ignored "-Wdeprecated-declarations"
- /* UIApplication's replacement calls require iOS 10 or later, which we can't enforce as of yet */
- if (_errorCallback && _mediaPlayer.state == VLCMediaPlayerStateError && !_sessionWillRestart)
- [[UIApplication sharedApplication] openURL:_errorCallback];
- else if (_successCallback && !_sessionWillRestart)
- [[UIApplication sharedApplication] openURL:_successCallback];
- #pragma clang diagnostic pop
- [[self remoteControlService] unsubscribeFromRemoteCommands];
- [_playbackSessionManagementLock unlock];
- if (!_sessionWillRestart) {
- [[NSNotificationCenter defaultCenter] postNotificationName:VLCPlaybackControllerPlaybackDidStop object:self];
- } else {
- _sessionWillRestart = NO;
- [self startPlayback];
- }
- }
- #if TARGET_OS_IOS
- - (void)restoreAudioAndSubtitleTrack
- {
- MLFile *item = [MLFile fileForURL:_mediaPlayer.media.url].firstObject;
- if (item) {
- _mediaPlayer.currentAudioTrackIndex = item.lastAudioTrack.intValue;
- _mediaPlayer.currentVideoSubTitleIndex = item.lastSubtitleTrack.intValue;
- }
- }
- - (void)_savePlaybackState
- {
- @try {
- [[MLMediaLibrary sharedMediaLibrary] save];
- }
- @catch (NSException *exception) {
- APLog(@"saving playback state failed");
- }
- NSArray *files = [MLFile fileForURL:_mediaPlayer.media.url];
- MLFile *fileItem = files.firstObject;
- if (!fileItem) {
- APLog(@"couldn't find file, not saving playback progress");
- return;
- }
- @try {
- float position = _mediaPlayer.position;
- fileItem.lastPosition = @(position);
- fileItem.lastAudioTrack = @(_mediaPlayer.currentAudioTrackIndex);
- fileItem.lastSubtitleTrack = @(_mediaPlayer.currentVideoSubTitleIndex);
- if (position > .95)
- return;
- if (_mediaPlayer.hasVideoOut) {
- NSArray *searchPaths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
- NSString *newThumbnailPath = [searchPaths.firstObject stringByAppendingPathComponent:@"VideoSnapshots"];
- NSError *error;
- [[NSFileManager defaultManager] createDirectoryAtPath:newThumbnailPath withIntermediateDirectories:YES attributes:nil error:&error];
- if (error == nil) {
- newThumbnailPath = [newThumbnailPath stringByAppendingPathComponent:fileItem.objectID.URIRepresentation.lastPathComponent];
- [_mediaPlayer saveVideoSnapshotAt:newThumbnailPath withWidth:0 andHeight:0];
- _recheckForExistingThumbnail = YES;
- [self performSelector:@selector(_updateStoredThumbnailForFile:) withObject:fileItem afterDelay:.25];
- }
- }
- }
- @catch (NSException *exception) {
- APLog(@"failed to save current media state - file removed?");
- }
- }
- #endif
- #if TARGET_OS_IOS
- - (void)_updateStoredThumbnailForFile:(MLFile *)fileItem
- {
- NSFileManager *fileManager = [NSFileManager defaultManager];
- NSArray *searchPaths = NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES);
- NSString* newThumbnailPath = [searchPaths[0] stringByAppendingPathComponent:@"VideoSnapshots"];
- newThumbnailPath = [newThumbnailPath stringByAppendingPathComponent:fileItem.objectID.URIRepresentation.lastPathComponent];
- if (![fileManager fileExistsAtPath:newThumbnailPath]) {
- if (_recheckForExistingThumbnail) {
- [self performSelector:@selector(_updateStoredThumbnailForFile:) withObject:fileItem afterDelay:1.];
- _recheckForExistingThumbnail = NO;
- } else
- return;
- }
- UIImage *newThumbnail = [UIImage imageWithContentsOfFile:newThumbnailPath];
- if (!newThumbnail) {
- if (_recheckForExistingThumbnail) {
- [self performSelector:@selector(_updateStoredThumbnailForFile:) withObject:fileItem afterDelay:1.];
- _recheckForExistingThumbnail = NO;
- } else
- return;
- }
- @try {
- [fileItem setComputedThumbnailScaledForDevice:newThumbnail];
- }
- @catch (NSException *exception) {
- APLog(@"updating thumbnail failed");
- }
- [fileManager removeItemAtPath:newThumbnailPath error:nil];
- }
- #endif
- - (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
- {
- if (_mediaWasJustStarted) {
- _mediaWasJustStarted = NO;
- #if TARGET_OS_IOS
- if (self.mediaList) {
- NSArray *matches = [MLFile fileForURL:_mediaPlayer.media.url];
- MLFile *item = matches.firstObject;
- [self _recoverLastPlaybackStateOfItem:item];
- }
- #else
- NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
- BOOL bValue = [defaults boolForKey:kVLCSettingUseSPDIF];
- if (bValue) {
- _mediaPlayer.audio.passthrough = bValue;
- }
- #endif
- }
- if ([self.delegate respondsToSelector:@selector(playbackPositionUpdated:)])
- [self.delegate playbackPositionUpdated:self];
- [[NSNotificationCenter defaultCenter] postNotificationName:VLCPlaybackControllerPlaybackPositionUpdated
- object:self];
- }
- - (NSInteger)mediaDuration
- {
- return _mediaPlayer.media.length.intValue;;
- }
- - (BOOL)isPlaying
- {
- return _mediaPlayer.isPlaying;
- }
- - (BOOL)willPlay
- {
- return _mediaPlayer.willPlay;
- }
- - (VLCRepeatMode)repeatMode
- {
- return _listPlayer.repeatMode;
- }
- - (void)setRepeatMode:(VLCRepeatMode)repeatMode
- {
- _listPlayer.repeatMode = repeatMode;
- }
- - (BOOL)currentMediaHasChapters
- {
- return [_mediaPlayer numberOfTitles] > 1 || [_mediaPlayer numberOfChaptersForTitle:_mediaPlayer.currentTitleIndex] > 1;
- }
- - (BOOL)currentMediaHasTrackToChooseFrom
- {
- return [[_mediaPlayer audioTrackIndexes] count] > 2 || [[_mediaPlayer videoSubTitlesIndexes] count] > 1;
- }
- - (BOOL) isSeekable
- {
- return _mediaPlayer.isSeekable;
- }
- - (NSNumber *)playbackTime
- {
- return _mediaPlayer.time.value;
- }
- - (float)playbackRate
- {
- return _mediaPlayer.rate;
- }
- - (void)setPlaybackRate:(float)playbackRate
- {
- [_mediaPlayer setRate:playbackRate];
- _metadata.playbackRate = @(_mediaPlayer.rate);
- }
- - (void)setAudioDelay:(float)audioDelay
- {
- _mediaPlayer.currentAudioPlaybackDelay = 1000000.*audioDelay;
- }
- - (float)audioDelay
- {
- return _mediaPlayer.currentAudioPlaybackDelay/1000000.;
- }
- - (float)playbackPosition
- {
- return [_mediaPlayer position];
- }
- - (void)setPlaybackPosition:(float)position
- {
- _mediaPlayer.position = position;
- }
- - (void)setSubtitleDelay:(float)subtitleDeleay
- {
- _mediaPlayer.currentVideoSubTitleDelay = 1000000.*subtitleDeleay;
- }
- - (float)subtitleDelay
- {
- return _mediaPlayer.currentVideoSubTitleDelay/1000000.;
- }
- - (float)hue
- {
- return _mediaPlayer.hue;
- }
- - (void)setHue:(float)hue
- {
- _mediaPlayer.hue = hue;
- }
- - (float)contrast
- {
- return _mediaPlayer.contrast;
- }
- - (void)setContrast:(float)contrast
- {
- _mediaPlayer.contrast = contrast;
- }
- - (float)brightness
- {
- return _mediaPlayer.brightness;
- }
- - (void)setBrightness:(float)brightness
- {
- _mediaPlayer.brightness = brightness;
- }
- - (float)saturation
- {
- return _mediaPlayer.saturation;
- }
- - (void)setSaturation:(float)saturation
- {
- _mediaPlayer.saturation = saturation;
- }
- - (void)setGamma:(float)gamma
- {
- _mediaPlayer.gamma = gamma;
- }
- - (float)gamma
- {
- return _mediaPlayer.gamma;
- }
- - (void)resetFilters
- {
- _mediaPlayer.hue = 0.;
- _mediaPlayer.contrast = 1.;
- _mediaPlayer.brightness = 1.;
- _mediaPlayer.saturation = 1.;
- _mediaPlayer.gamma = 1.;
- }
- - (void)toggleRepeatMode
- {
- VLCRepeatMode nextRepeatMode = VLCDoNotRepeat;
- switch (_listPlayer.repeatMode) {
- case VLCDoNotRepeat:
- nextRepeatMode = VLCRepeatCurrentItem;
- break;
- case VLCRepeatCurrentItem:
- nextRepeatMode = VLCRepeatAllItems;
- break;
- default:
- nextRepeatMode = VLCDoNotRepeat;
- break;
- }
- _listPlayer.repeatMode = nextRepeatMode;
- }
- - (NSInteger)indexOfCurrentAudioTrack
- {
- return [_mediaPlayer.audioTrackIndexes indexOfObject:@(_mediaPlayer.currentAudioTrackIndex)];
- }
- - (NSInteger)indexOfCurrentSubtitleTrack
- {
- return [_mediaPlayer.videoSubTitlesIndexes indexOfObject:@(_mediaPlayer.currentVideoSubTitleIndex)];
- }
- - (NSInteger)indexOfCurrentChapter
- {
- return _mediaPlayer.currentChapterIndex;
- }
- - (NSInteger)indexOfCurrentTitle
- {
- return _mediaPlayer.currentTitleIndex;
- }
- - (NSInteger)numberOfAudioTracks
- {
- return _mediaPlayer.audioTrackIndexes.count;
- }
- - (NSInteger)numberOfVideoSubtitlesIndexes
- {
- return _mediaPlayer.videoSubTitlesIndexes.count;
- }
- - (NSInteger)numberOfTitles
- {
- return [_mediaPlayer numberOfTitles];
- }
- - (NSInteger)numberOfChaptersForCurrentTitle
- {
- return [_mediaPlayer numberOfChaptersForTitle:_mediaPlayer.currentTitleIndex];
- }
- - (NSString *)videoSubtitleNameAtIndex:(NSInteger)index
- {
- if (index >= 0 && index < _mediaPlayer.videoSubTitlesNames.count)
- return _mediaPlayer.videoSubTitlesNames[index];
- return nil;
- }
- - (NSString *)audioTrackNameAtIndex:(NSInteger)index
- {
- if (index >= 0 && index < _mediaPlayer.audioTrackNames.count)
- return _mediaPlayer.audioTrackNames[index];
- return nil;
- }
- - (NSDictionary *)titleDescriptionsDictAtIndex:(NSInteger)index
- {
- if (index >= 0 && index < _mediaPlayer.titleDescriptions.count)
- return _mediaPlayer.titleDescriptions[index];
- return nil;
- }
- - (NSDictionary *)chapterDescriptionsDictAtIndex:(NSInteger)index
- {
- NSArray *chapterDescriptions = [_mediaPlayer chapterDescriptionsOfTitle:_mediaPlayer.currentTitleIndex];
- if (index >= 0 && index < chapterDescriptions.count)
- return chapterDescriptions[index];
- return nil;
- }
- - (void)selectAudioTrackAtIndex:(NSInteger)index
- {
- if (index >= 0 && index < _mediaPlayer.audioTrackIndexes.count) {
- //we can cast this cause we won't have more than 2 million audiotracks
- _mediaPlayer.currentAudioTrackIndex = [_mediaPlayer.audioTrackIndexes[index] intValue];
- }
- }
- - (void)selectVideoSubtitleAtIndex:(NSInteger)index
- {
- if (index >= 0 && index < _mediaPlayer.videoSubTitlesIndexes.count) {
- _mediaPlayer.currentVideoSubTitleIndex = [_mediaPlayer.videoSubTitlesIndexes[index] intValue];
- }
- }
- - (void)selectTitleAtIndex:(NSInteger)index
- {
- if (index >= 0 && index < [_mediaPlayer numberOfTitles]) {
- //we can cast this cause we won't have more than 2 million titles
- _mediaPlayer.currentTitleIndex = (int)index;
- }
- }
- - (void)selectChapterAtIndex:(NSInteger)index
- {
- if (index >= 0 && index < [self numberOfChaptersForCurrentTitle]) {
- //we can cast this cause we won't have more than 2 million chapters
- _mediaPlayer.currentChapterIndex = (int)index;
- }
- }
- - (void)shortJumpForward
- {
- [_mediaPlayer shortJumpForward];
- }
- - (void)shortJumpBackward
- {
- [_mediaPlayer shortJumpBackward];
- }
- - (VLCTime *)remainingTime
- {
- return [_mediaPlayer remainingTime];
- }
- - (void)setAudioPassthrough:(BOOL)shouldPass
- {
- _mediaPlayer.audio.passthrough = shouldPass;
- }
- - (void)mediaPlayerStateChanged:(NSNotification *)aNotification
- {
- VLCMediaPlayerState currentState = _mediaPlayer.state;
- switch (currentState) {
- case VLCMediaPlayerStateBuffering: {
- /* attach delegate */
- _mediaPlayer.media.delegate = self;
- /* on-the-fly values through hidden API */
- NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
- #pragma clang diagnostic push
- #pragma clang diagnostic ignored "-Wundeclared-selector"
- [_mediaPlayer performSelector:@selector(setTextRendererFont:) withObject:[defaults objectForKey:kVLCSettingSubtitlesFont]];
- [_mediaPlayer performSelector:@selector(setTextRendererFontSize:) withObject:[defaults objectForKey:kVLCSettingSubtitlesFontSize]];
- [_mediaPlayer performSelector:@selector(setTextRendererFontColor:) withObject:[defaults objectForKey:kVLCSettingSubtitlesFontColor]];
- [_mediaPlayer performSelector:@selector(setTextRendererFontForceBold:) withObject:[defaults objectForKey:kVLCSettingSubtitlesBoldFont]];
- #pragma clang diagnostic pop
- } break;
- case VLCMediaPlayerStateError: {
- APLog(@"Playback failed");
- dispatch_async(dispatch_get_main_queue(),^{
- [[NSNotificationCenter defaultCenter] postNotificationName:VLCPlaybackControllerPlaybackDidFail object:self];
- });
- _sessionWillRestart = NO;
- [self stopPlayback];
- } break;
- case VLCMediaPlayerStateEnded:
- case VLCMediaPlayerStateStopped: {
- [_listPlayer.mediaList lock];
- NSUInteger listCount = _listPlayer.mediaList.count;
- if ([_listPlayer.mediaList indexOfMedia:_mediaPlayer.media] == listCount - 1 && self.repeatMode == VLCDoNotRepeat) {
- [_listPlayer.mediaList unlock];
- _sessionWillRestart = NO;
- [self stopPlayback];
- return;
- } else if (listCount > 1) {
- [_listPlayer.mediaList unlock];
- [_listPlayer next];
- } else
- [_listPlayer.mediaList unlock];
- } break;
- case VLCMediaPlayerStateESAdded: {
- #if TARGET_OS_IOS
- [self restoreAudioAndSubtitleTrack];
- #endif
- } break;
- default:
- break;
- }
- if ([self.delegate respondsToSelector:@selector(mediaPlayerStateChanged:isPlaying:currentMediaHasTrackToChooseFrom:currentMediaHasChapters:forPlaybackController:)])
- [self.delegate mediaPlayerStateChanged:currentState
- isPlaying:_mediaPlayer.isPlaying
- currentMediaHasTrackToChooseFrom:self.currentMediaHasTrackToChooseFrom
- currentMediaHasChapters:self.currentMediaHasChapters
- forPlaybackController:self];
- [self setNeedsMetadataUpdate];
- }
- #pragma mark - playback controls
- - (void)playPause
- {
- [_mediaPlayer isPlaying] ? [self pause] : [self play];
- }
- - (void)play
- {
- [_listPlayer play];
- [[NSNotificationCenter defaultCenter] postNotificationName:VLCPlaybackControllerPlaybackDidResume object:self];
- }
- - (void)pause
- {
- [_listPlayer pause];
- #if TARGET_OS_IOS
- [self _savePlaybackState];
- #endif
- [[NSNotificationCenter defaultCenter] postNotificationName:VLCPlaybackControllerPlaybackDidPause object:self];
- }
- - (void)next
- {
- NSInteger mediaListCount = _mediaList.count;
- #if TARGET_OS_IOS
- if (self.repeatMode != VLCRepeatCurrentItem && mediaListCount > 2 && _shuffleMode) {
- NSNumber *nextIndex;
- NSUInteger currentIndex = [_mediaList indexOfMedia:_listPlayer.mediaPlayer.media];
- //Reached end of playlist
- if (_shuffleStack.count + 1 == mediaListCount) {
- if ([self repeatMode] == VLCDoNotRepeat)
- return;
- [_shuffleStack removeAllObjects];
- }
- [_shuffleStack addObject:[NSNumber numberWithUnsignedInteger:currentIndex]];
- do {
- nextIndex = [NSNumber numberWithUnsignedInt:arc4random_uniform((uint32_t)mediaListCount)];
- } while (currentIndex == nextIndex.unsignedIntegerValue || [_shuffleStack containsObject:nextIndex]);
- [_listPlayer playItemAtNumber:[NSNumber numberWithUnsignedInteger:nextIndex.unsignedIntegerValue]];
- [[NSNotificationCenter defaultCenter] postNotificationName:VLCPlaybackControllerPlaybackMetadataDidChange object:self];
- return;
- }
- #endif
- if (mediaListCount > 1) {
- [_listPlayer next];
- [[NSNotificationCenter defaultCenter] postNotificationName:VLCPlaybackControllerPlaybackMetadataDidChange object:self];
- } else {
- NSNumber *skipLength = [[NSUserDefaults standardUserDefaults] valueForKey:kVLCSettingPlaybackForwardSkipLength];
- [_mediaPlayer jumpForward:skipLength.intValue];
- }
- }
- - (void)previous
- {
- if (_mediaList.count > 1) {
- [_listPlayer previous];
- [[NSNotificationCenter defaultCenter] postNotificationName:VLCPlaybackControllerPlaybackMetadataDidChange object:self];
- }
- else {
- NSNumber *skipLength = [[NSUserDefaults standardUserDefaults] valueForKey:kVLCSettingPlaybackBackwardSkipLength];
- [_mediaPlayer jumpBackward:skipLength.intValue];
- }
- }
- - (void)jumpForward:(int)interval
- {
- [_mediaPlayer jumpForward:interval];
- }
- - (void)jumpBackward:(int)interval
- {
- [_mediaPlayer jumpBackward:interval];
- }
- - (NSString *)screenAspectRatio
- {
- UIScreen *screen = [[UIDevice currentDevice] VLCHasExternalDisplay] ? [UIScreen screens][1] : [UIScreen mainScreen];
- return [NSString stringWithFormat:@"%d:%d", (int)screen.bounds.size.width, (int)screen.bounds.size.height];
- }
- - (void)switchIPhoneXFullScreen
- {
- BOOL inFullScreen = _mediaPlayer.videoCropGeometry && [[NSString stringWithUTF8String:_mediaPlayer.videoCropGeometry] isEqualToString:[self screenAspectRatio]];
- if (inFullScreen) {
- const char *previousAspectRatio = _currentAspectRatio == VLCAspectRatioDefault ? NULL : [[self stringForAspectRatio:_currentAspectRatio] UTF8String];
- _mediaPlayer.videoAspectRatio = (char *)previousAspectRatio;
- }
- _mediaPlayer.videoCropGeometry = inFullScreen ? NULL : (char *)[[self screenAspectRatio] UTF8String];
- }
- - (void)switchAspectRatio
- {
- _currentAspectRatio = _currentAspectRatio == VLCAspectRatioSixteenToTen ? VLCAspectRatioDefault : _currentAspectRatio + 1;
- switch (_currentAspectRatio) {
- case VLCAspectRatioDefault:
- _mediaPlayer.videoAspectRatio = NULL;
- _mediaPlayer.videoCropGeometry = NULL;
- break;
- case VLCAspectRatioFillToScreen:
- _mediaPlayer.videoCropGeometry = (char *)[[self screenAspectRatio] UTF8String];
- break;
- case VLCAspectRatioFourToThree:
- case VLCAspectRatioSixteenToTen:
- case VLCAspectRatioSixteenToNine:
- _mediaPlayer.videoCropGeometry = NULL;
- _mediaPlayer.videoAspectRatio = (char *)[[self stringForAspectRatio:_currentAspectRatio] UTF8String];
- }
- if ([self.delegate respondsToSelector:@selector(showStatusMessage:forPlaybackController:)]) {
- [self.delegate showStatusMessage:[NSString stringWithFormat:NSLocalizedString(@"AR_CHANGED", nil), [self stringForAspectRatio:_currentAspectRatio]] forPlaybackController:self];
- }
- }
- - (NSString *)stringForAspectRatio:(VLCAspectRatio)ratio
- {
- switch (ratio) {
- case VLCAspectRatioFillToScreen:
- return NSLocalizedString(@"FILL_TO_SCREEN", nil);
- case VLCAspectRatioDefault:
- return NSLocalizedString(@"DEFAULT", nil);
- case VLCAspectRatioFourToThree:
- return @"4:3";
- case VLCAspectRatioSixteenToTen:
- return @"16:10";
- case VLCAspectRatioSixteenToNine:
- return @"16:9";
- default:
- NSAssert(NO, @"this shouldn't happen");
- }
- }
- - (void)setVideoTrackEnabled:(BOOL)enabled
- {
- if (!enabled)
- _mediaPlayer.currentVideoTrackIndex = -1;
- else if (_mediaPlayer.currentVideoTrackIndex == -1) {
- for (NSNumber *trackId in _mediaPlayer.videoTrackIndexes) {
- if ([trackId intValue] != -1) {
- _mediaPlayer.currentVideoTrackIndex = [trackId intValue];
- break;
- }
- }
- }
- }
- - (void)setVideoOutputView:(UIView *)videoOutputView
- {
- if (videoOutputView) {
- if ([_actualVideoOutputView superview] != nil)
- [_actualVideoOutputView removeFromSuperview];
- _actualVideoOutputView.frame = (CGRect){CGPointZero, videoOutputView.frame.size};
- [self setVideoTrackEnabled:true];
- [videoOutputView addSubview:_actualVideoOutputView];
- [_actualVideoOutputView layoutSubviews];
- [_actualVideoOutputView updateConstraints];
- [_actualVideoOutputView setNeedsLayout];
- } else
- [_actualVideoOutputView removeFromSuperview];
- _videoOutputViewWrapper = videoOutputView;
- }
- - (UIView *)videoOutputView
- {
- return _videoOutputViewWrapper;
- }
- #pragma mark - 360 Support
- #if !TARGET_OS_TV
- - (BOOL)updateViewpoint:(CGFloat)yaw pitch:(CGFloat)pitch roll:(CGFloat)roll fov:(CGFloat)fov absolute:(BOOL)absolute
- {
- return [_mediaPlayer updateViewpoint:yaw pitch:pitch roll:roll fov:fov absolute:absolute];
- }
- - (NSInteger)currentMediaProjection
- {
- VLCMedia *media = [_mediaPlayer media];
- NSInteger currentVideoTrackIndex = [_mediaPlayer currentVideoTrackIndex];
- if (media && currentVideoTrackIndex >= 0) {
- NSArray *tracksInfo = media.tracksInformation;
- for (NSDictionary *track in tracksInfo) {
- if ([track[VLCMediaTracksInformationType] isEqualToString:VLCMediaTracksInformationTypeVideo]) {
- return [track[VLCMediaTracksInformationVideoProjection] integerValue];
- }
- }
- }
- return -1;
- }
- #endif
- #pragma mark - equalizer
- - (void)setAmplification:(CGFloat)amplification forBand:(unsigned int)index
- {
- if (!_mediaPlayer.equalizerEnabled)
- [_mediaPlayer setEqualizerEnabled:YES];
- [_mediaPlayer setAmplification:amplification forBand:index];
- // For some reason we have to apply again preamp to apply change
- [_mediaPlayer setPreAmplification:[_mediaPlayer preAmplification]];
- }
- - (CGFloat)amplificationOfBand:(unsigned int)index
- {
- return [_mediaPlayer amplificationOfBand:index];
- }
- - (NSArray *)equalizerProfiles
- {
- return _mediaPlayer.equalizerProfiles;
- }
- - (void)resetEqualizerFromProfile:(unsigned int)profile
- {
- [[NSUserDefaults standardUserDefaults] setObject:@(profile) forKey:kVLCSettingEqualizerProfile];
- [_mediaPlayer resetEqualizerFromProfile:profile];
- }
- - (void)setPreAmplification:(CGFloat)preAmplification
- {
- if (!_mediaPlayer.equalizerEnabled)
- [_mediaPlayer setEqualizerEnabled:YES];
- [_mediaPlayer setPreAmplification:preAmplification];
- }
- - (CGFloat)preAmplification
- {
- return [_mediaPlayer preAmplification];
- }
- #pragma mark - AVAudioSession Notification Observers
- - (void)handleInterruption:(NSNotification *)notification
- {
- NSDictionary *userInfo = notification.userInfo;
- if (!userInfo || !userInfo[AVAudioSessionInterruptionTypeKey]) {
- return;
- }
- NSUInteger interruptionType = [userInfo[AVAudioSessionInterruptionTypeKey] unsignedIntegerValue];
- if (interruptionType == AVAudioSessionInterruptionTypeBegan) {
- [_mediaPlayer pause];
- } else if (interruptionType == AVAudioSessionInterruptionTypeEnded
- && [userInfo[AVAudioSessionInterruptionOptionKey] unsignedIntegerValue] == AVAudioSessionInterruptionOptionShouldResume) {
- [_mediaPlayer play];
- }
- }
- - (BOOL)areHeadphonesPlugged
- {
- NSArray *outputs = [[AVAudioSession sharedInstance] currentRoute].outputs;
- NSString *portName = [[outputs firstObject] portName];
- return [portName isEqualToString:@"Headphones"];
- }
- - (void)audioSessionRouteChange:(NSNotification *)notification
- {
- NSDictionary *userInfo = notification.userInfo;
- NSInteger routeChangeReason = [[userInfo valueForKey:AVAudioSessionRouteChangeReasonKey] integerValue];
- if (routeChangeReason == AVAudioSessionRouteChangeReasonRouteConfigurationChange)
- return;
- BOOL headphonesPlugged = [self areHeadphonesPlugged];
- if (_headphonesWasPlugged && !headphonesPlugged && [_mediaPlayer isPlaying]) {
- [_mediaPlayer pause];
- #if TARGET_OS_IOS
- [self _savePlaybackState];
- #endif
- [[NSNotificationCenter defaultCenter] postNotificationName:VLCPlaybackControllerPlaybackDidPause object:self];
- }
- _headphonesWasPlugged = headphonesPlugged;
- }
- #pragma mark - Managing the media item
- - (VLCMedia *)currentlyPlayingMedia
- {
- return _mediaPlayer.media;
- }
- #pragma mark - metadata handling
- - (void)performNavigationAction:(VLCMediaPlaybackNavigationAction)action
- {
- [_mediaPlayer performNavigationAction:action];
- }
- - (void)mediaDidFinishParsing:(VLCMedia *)aMedia
- {
- [self setNeedsMetadataUpdate];
- }
- - (void)mediaMetaDataDidChange:(VLCMedia*)aMedia
- {
- [self setNeedsMetadataUpdate];
- }
- - (void)setNeedsMetadataUpdate
- {
- if (_needsMetadataUpdate == NO) {
- _needsMetadataUpdate = YES;
- dispatch_async(dispatch_get_main_queue(), ^{
- [_metadata updateMetadataFromMediaPlayer:_mediaPlayer];
- _needsMetadataUpdate = NO;
- if ([self.delegate respondsToSelector:@selector(displayMetadataForPlaybackController:metadata:)])
- [self.delegate displayMetadataForPlaybackController:self metadata:_metadata];
- });
- }
- }
- #if TARGET_OS_IOS
- - (void)_recoverLastPlaybackStateOfItem:(MLFile *)item
- {
- if (item) {
- CGFloat lastPosition = .0;
- NSInteger duration = 0;
- if (item.lastPosition)
- lastPosition = item.lastPosition.floatValue;
- duration = item.duration.intValue;
- if (lastPosition < .95 && _mediaPlayer.position < lastPosition) {
- NSInteger continuePlayback;
- if ([item isAlbumTrack] || [item isSupportedAudioFile])
- continuePlayback = [[[NSUserDefaults standardUserDefaults] objectForKey:kVLCSettingContinueAudioPlayback] integerValue];
- else
- continuePlayback = [[[NSUserDefaults standardUserDefaults] objectForKey:kVLCSettingContinuePlayback] integerValue];
- if (continuePlayback == 1) {
- _mediaPlayer.position = lastPosition;
- } else if (continuePlayback == 0) {
- VLCAlertView *alert = [[VLCAlertView alloc] initWithTitle:NSLocalizedString(@"CONTINUE_PLAYBACK", nil)
- message:[NSString stringWithFormat:NSLocalizedString(@"CONTINUE_PLAYBACK_LONG", nil), item.title]
- delegate:self
- cancelButtonTitle:NSLocalizedString(@"BUTTON_CANCEL", nil)
- otherButtonTitles:NSLocalizedString(@"BUTTON_CONTINUE", nil), nil];
- alert.completion = ^(BOOL cancelled, NSInteger buttonIndex) {
- if (!cancelled) {
- _mediaPlayer.position = lastPosition;
- }
- };
- [alert show];
- }
- }
- }
- }
- #endif
- - (void)recoverDisplayedMetadata
- {
- if ([self.delegate respondsToSelector:@selector(displayMetadataForPlaybackController:metadata:)])
- [self.delegate displayMetadataForPlaybackController:self metadata:_metadata];
- }
- - (void)recoverPlaybackState
- {
- if ([self.delegate respondsToSelector:@selector(mediaPlayerStateChanged:isPlaying:currentMediaHasTrackToChooseFrom:currentMediaHasChapters:forPlaybackController:)])
- [self.delegate mediaPlayerStateChanged:_mediaPlayer.state
- isPlaying:self.isPlaying
- currentMediaHasTrackToChooseFrom:self.currentMediaHasTrackToChooseFrom
- currentMediaHasChapters:self.currentMediaHasChapters
- forPlaybackController:self];
- if ([self.delegate respondsToSelector:@selector(prepareForMediaPlayback:)])
- [self.delegate prepareForMediaPlayback:self];
- }
- - (void)scheduleSleepTimerWithInterval:(NSTimeInterval)timeInterval
- {
- if (_sleepTimer) {
- [_sleepTimer invalidate];
- _sleepTimer = nil;
- }
- _sleepTimer = [NSTimer scheduledTimerWithTimeInterval:timeInterval target:self selector:@selector(stopPlayback) userInfo:nil repeats:NO];
- }
- #pragma mark - background interaction
- - (void)applicationWillResignActive:(NSNotification *)aNotification
- {
- #if TARGET_OS_IOS
- [self _savePlaybackState];
- #endif
- if (![[[NSUserDefaults standardUserDefaults] objectForKey:kVLCSettingContinueAudioInBackgroundKey] boolValue]) {
- if ([_mediaPlayer isPlaying]) {
- [_mediaPlayer pause];
- _shouldResumePlaying = YES;
- }
- }
- }
- - (void)applicationDidEnterBackground:(NSNotification *)notification
- {
- _preBackgroundWrapperView = _videoOutputViewWrapper;
- if (_mediaPlayer.audioTrackIndexes.count > 0)
- [self setVideoTrackEnabled:false];
- }
- - (void)applicationDidBecomeActive:(NSNotification *)notification
- {
- if (_preBackgroundWrapperView) {
- [self setVideoOutputView:_preBackgroundWrapperView];
- _preBackgroundWrapperView = nil;
- }
- [self setVideoTrackEnabled:true];
- if (_shouldResumePlaying) {
- _shouldResumePlaying = NO;
- [_listPlayer play];
- }
- }
- #pragma mark - remoteControlDelegate
- - (void)remoteControlServiceHitPause:(VLCRemoteControlService *)rcs
- {
- [_listPlayer pause];
- }
- - (void)remoteControlServiceHitPlay:(VLCRemoteControlService *)rcs
- {
- [_listPlayer play];
- }
- - (void)remoteControlServiceTogglePlayPause:(VLCRemoteControlService *)rcs
- {
- [self playPause];
- }
- - (void)remoteControlServiceHitStop:(VLCRemoteControlService *)rcs
- {
- //TODO handle stop playback entirely
- [_listPlayer stop];
- }
- - (BOOL)remoteControlServiceHitPlayNextIfPossible:(VLCRemoteControlService *)rcs
- {
- //TODO This doesn't handle shuffle or repeat yet
- return [_listPlayer next];
- }
- - (BOOL)remoteControlServiceHitPlayPreviousIfPossible:(VLCRemoteControlService *)rcs
- {
- //TODO This doesn't handle shuffle or repeat yet
- return [_listPlayer previous];
- }
- - (void)remoteControlService:(VLCRemoteControlService *)rcs jumpForwardInSeconds:(NSTimeInterval)seconds
- {
- [_mediaPlayer jumpForward:seconds];
- }
- - (void)remoteControlService:(VLCRemoteControlService *)rcs jumpBackwardInSeconds:(NSTimeInterval)seconds
- {
- [_mediaPlayer jumpBackward:seconds];
- }
- - (NSInteger)remoteControlServiceNumberOfMediaItemsinList:(VLCRemoteControlService *)rcs
- {
- return _mediaList.count;
- }
- - (void)remoteControlService:(VLCRemoteControlService *)rcs setPlaybackRate:(CGFloat)playbackRate
- {
- self.playbackRate = playbackRate;
- }
- - (void)remoteControlService:(VLCRemoteControlService *)rcs setCurrentPlaybackTime:(NSTimeInterval)playbackTime
- {
- float positionDiff = playbackTime - [self.metadata.elapsedPlaybackTime floatValue];
- [_mediaPlayer jumpForward:positionDiff];
- }
- #pragma mark - helpers
- - (NSDictionary *)mediaOptionsDictionary
- {
- NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
- return @{ kVLCSettingNetworkCaching : [defaults objectForKey:kVLCSettingNetworkCaching],
- kVLCSettingStretchAudio : [[defaults objectForKey:kVLCSettingStretchAudio] boolValue] ? kVLCSettingStretchAudioOnValue : kVLCSettingStretchAudioOffValue,
- kVLCSettingTextEncoding : [defaults objectForKey:kVLCSettingTextEncoding],
- kVLCSettingSkipLoopFilter : [defaults objectForKey:kVLCSettingSkipLoopFilter],
- kVLCSettingHardwareDecoding : [defaults objectForKey:kVLCSettingHardwareDecoding]};
- }
- @end
|