CPVideoCodec
Represents Video Codec Object
-
Unavailable
Use static initializer withType:
Undocumented
Declaration
Objective-C
- (instancetype)init __attribute__((unavailable("Use static initializer withType:")));
-
Returns Codec Type
Declaration
Objective-C
@property (nonatomic, readonly) CPVideoCodecTypes type;
Swift
var type: CPVideoCodecTypes { get }
-
Initializes Video Codec Object with the given Video Codec Type.
Declaration
Objective-C
+ (nonnull CPVideoCodec *)withType:(CPVideoCodecTypes)codecType;
Swift
class func withType(_ codecType: CPVideoCodecTypes) -> CPVideoCodec