/
githubmirror
/
obs-studio
Обзор
Документация
Войти
/
githubmirror
/
obs-studio
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
plugins/mac-virtualcam/src/dal-plugin/OBSDALMachClient.h
33 строки
620 B
PatTheMav
clang-format: Update formatting of all ObjC and ObjC++ files
11 июн 2023, 15:56
11 июн 2023, 15:56
f8e00d6
Код
Авторство
О чём код?
// // MachClient.h // dal-plugin // // Created by John Boiles on 5/5/20. // #import <Foundation/Foundation.h> #import <CoreVideo/CoreVideo.h> NS_ASSUME_NONNULL_BEGIN @protocol MachClientDelegate - (void)receivedPixelBuffer:(CVPixelBufferRef)frame timestamp:(uint64_t)timestamp fpsNumerator:(uint32_t)fpsNumerator fpsDenominator:(uint32_t)fpsDenominator; - (void)receivedStop; @end @interface OBSDALMachClient : NSObject @property (nullable, weak) id<MachClientDelegate> delegate; - (BOOL)isServerAvailable; - (BOOL)connectToServer; @end NS_ASSUME_NONNULL_END