New upstream version 26.1.0+dfsg1
This commit is contained in:
parent
040dcc3fc2
commit
013818c4af
594 changed files with 19576 additions and 4478 deletions
33
plugins/mac-virtualcam/src/dal-plugin/OBSDALMachClient.h
Normal file
33
plugins/mac-virtualcam/src/dal-plugin/OBSDALMachClient.h
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
//
|
||||
// MachClient.h
|
||||
// dal-plugin
|
||||
//
|
||||
// Created by John Boiles on 5/5/20.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@protocol MachClientDelegate
|
||||
|
||||
- (void)receivedFrameWithSize:(NSSize)size
|
||||
timestamp:(uint64_t)timestamp
|
||||
fpsNumerator:(uint32_t)fpsNumerator
|
||||
fpsDenominator:(uint32_t)fpsDenominator
|
||||
frameData:(NSData *)frameData;
|
||||
- (void)receivedStop;
|
||||
|
||||
@end
|
||||
|
||||
@interface OBSDALMachClient : NSObject
|
||||
|
||||
@property (nullable, weak) id<MachClientDelegate> delegate;
|
||||
|
||||
- (BOOL)isServerAvailable;
|
||||
|
||||
- (BOOL)connectToServer;
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
Loading…
Add table
Add a link
Reference in a new issue