Changeset 1184 for trunk/CommonMediaPlayer/Classes/CMPPlayerManager.m
- Timestamp:
- 02/26/10 04:22:15 (2 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/CommonMediaPlayer/Classes/CMPPlayerManager.m
r1179 r1184 28 28 #import "CMPISODVDPlayer.h" 29 29 #import "CMPDVDImporter.h" 30 #import "CMPInstaller.h" 30 31 31 32 @implementation CMPPlayerManager … … 50 51 if (self == nil) 51 52 return self; 52 53 /* 54 55 This was some testing code to get it to check for updates and to override showing the players to try and force a download and 56 install, this didn't work out because my download class basis has the superclass of BRController, and since we link to headers 57 that are older than dirt, BRController doesn't exist, and every single workaround i pushed towards miserably failed. 58 59 if ([CMPInstaller checkForUpdate]) 60 { 61 return nil; 62 } 63 64 */ 53 65 knownPlayers = [[NSMutableSet alloc] init]; 54 66 knownControllers = [[NSMutableSet alloc] init]; … … 64 76 65 77 [self registerPlayer:[CMPDVDImporter class] forType:CMPPlayerManagerFileTypeDVDImport withExtensions:[NSArray arrayWithObject:@""]]; 78 66 79 67 80 return self;
