Show
Ignore:
Timestamp:
08/02/08 16:24:20 (4 months ago)
Author:
astrange
Message:

Merge trunk to the branch.
Disable ssse3 qpel stuff (https://roundup.mplayerhq.hu/roundup/ffmpeg/issue463)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/perian-1.1

    • Property svn:externals changed from
      ffmpeg -r 13239 svn://svn.mplayerhq.hu/ffmpeg/trunk
      libebml -r 1306 https://services.corecodec.com/svn/matroska/trunk/libebml
      libmatroska -r 1306 https://services.corecodec.com/svn/matroska/trunk/libmatroska
      a52codec -r 64 http://svn.cod3r.com/a52codec/trunk
      to
      ffmpeg -r 14508 svn://svn.mplayerhq.hu/ffmpeg/trunk
      libebml -r 1306 https://services.corecodec.com/svn/matroska/trunk/libebml
      libmatroska -r 1306 https://services.corecodec.com/svn/matroska/trunk/libmatroska
      a52codec -r 64 http://svn.cod3r.com/a52codec/trunk

  • branches/perian-1.1/CPFPerianPrefPaneController.m

    r904 r923  
    403403 
    404404- (void) dealloc { 
     405        [[NSDistributedNotificationCenter defaultCenter] removeObserver:self name:UPDATE_STATUS_NOTIFICATION object:nil]; 
    405406        [perianForumURL release]; 
    406407        [perianDonateURL release]; 
     
    657658                auth = nil; 
    658659         
    659         int tag = 0; 
    660660        componentPath = [[self quickTimeComponentDir:userInstalled] stringByAppendingPathComponent:@"Perian.component"]; 
    661661        if(auth != nil && !userInstalled) 
     
    688688- (IBAction)installUninstall:(id)sender 
    689689{ 
    690         [progress_install startAnimation:sender]; 
    691690        if(installStatus == InstallStatusInstalled) 
    692691                [NSThread detachNewThreadSelector:@selector(uninstall:) toTarget:self withObject:nil]; 
     
    697696- (void)installComplete:(id)sender 
    698697{ 
    699         [progress_install stopAnimation:sender]; 
    700698        [self checkForInstallation]; 
    701699} 
     
    779777 
    780778#pragma mark Check Updates 
     779- (void)updateCheckStatusChanged:(NSNotification*)notification 
     780{ 
     781        NSString *status = [notification object]; 
     782         
     783        //FIXME localize these 
     784        if ([status isEqualToString:@"Starting"]) { 
     785                [textField_updateStatus setStringValue:@"Checking..."]; 
     786        } else if ([status isEqualToString:@"Error"]) { 
     787                [textField_updateStatus setStringValue:@"Couldn't reach the update server."]; 
     788        } else if ([status isEqualToString:@"NoUpdates"]) { 
     789                [textField_updateStatus setStringValue:@"There are no updates."]; 
     790        } else if ([status isEqualToString:@"NoUpdates"]) { 
     791                [textField_updateStatus setStringValue:@"Updates found!"]; 
     792        } 
     793} 
     794 
    781795- (IBAction)updateCheck:(id)sender  
    782796{ 
    783797        FSRef updateCheckRef; 
    784798         
     799        [[NSDistributedNotificationCenter defaultCenter] removeObserver:self name:UPDATE_STATUS_NOTIFICATION object:nil]; 
     800        [[NSDistributedNotificationCenter defaultCenter] addObserver:self selector:@selector(updateCheckStatusChanged:) name:UPDATE_STATUS_NOTIFICATION object:nil]; 
    785801        CFPreferencesSetAppValue((CFStringRef)NEXT_RUN_KEY, NULL, perianAppID); 
    786802        CFPreferencesSetAppValue((CFStringRef)MANUAL_RUN_KEY, [NSNumber numberWithBool:YES], perianAppID); 
     
    800816        else 
    801817                CFPreferencesSetAppValue(key, [NSDate distantFuture], perianAppID); 
     818     
     819    CFPreferencesAppSynchronize(perianAppID); 
    802820}  
    803821 
     
    901919{        
    902920        [self setKey:ExternalSubtitlesKey forAppID:perianAppID fromBool:(BOOL)[sender state]]; 
     921    CFPreferencesAppSynchronize(perianAppID); 
    903922} 
    904923