obs-studio/plugins/mac-avcapture/OBSAVCapturePresetInfo.m
PatTheMav e284a79b48 mac-avcapture: Update plugin to ObjC and modern APIs
Marks old AVFoundation capture source as deprecated.
2024-01-19 16:56:10 -05:00

26 lines
399 B
Objective-C

//
// OBSAVCapturePresetInfo.m
// mac-avcapture
//
// Created by Patrick Heyer on 2023-03-07.
//
#import <OBSAVCapturePresetInfo.h>
@implementation OBSAVCapturePresetInfo
- (instancetype)init
{
self = [super init];
if (self) {
_activeFormat = nil;
_minFrameRate = CMTimeMake(10000, 300);
_maxFrameRate = CMTimeMake(10000, 300);
}
return self;
}
@end