You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
479 B
Objective-C

//
// SPPlayCGIParseResult.m
// SuperPlayer
//
// Created by cui on 2019/12/25.
// Copyright © 2019 annidy. All rights reserved.
//
#import "SPPlayCGIParseResult.h"
#import "TXImageSprite.h"
@implementation SPPlayCGIParseResult
+ (SPDrmType)drmTypeFromString:(NSString *)typeString {
BOOL isSimpleAES = [typeString caseInsensitiveCompare:@"SimpleAES"] == NSOrderedSame;
if (isSimpleAES) {
return SPDrmTypeSimpleAES;
}
return SPDrmTypeNone;
}
@end