Changeset 1177

Show
Ignore:
Timestamp:
10/23/09 19:28:05 (5 months ago)
Author:
gbooker
Message:

Add "CoreMediaAuthoringSourcePropertyHelper?" to the processes in which we use the frontrow hack since it can't handle alpha either

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Subtitles/SubImport.mm

    r1153 r1177  
    9595                isSet = 1; 
    9696         
    97         ret = (minorVersion >= 5) && (minorVersion <= 6) && [applicationName isEqualToString:@"Front Row"] && isSet; 
     97        bool systemVersionCheck = (minorVersion >= 5) && (minorVersion <= 6); 
     98        bool appNameCheck = ([applicationName isEqualToString:@"Front Row"] || [applicationName isEqualToString:@"CoreMediaAuthoringSourcePropertyHelper"]); 
     99        ret = systemVersionCheck && appNameCheck && isSet; 
    98100        [pool release]; 
    99101