/
githubmirror
/
obs-studio
Обзор
Документация
Войти
/
githubmirror
/
obs-studio
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
plugins/mac-virtualcam/src/obs-plugin/OBSDALMachServer.h
29 строк
518 B
PatTheMav
clang-format: Update formatting of all ObjC and ObjC++ files
11 июн 2023, 15:56
11 июн 2023, 15:56
f8e00d6
Код
Авторство
О чём код?
// // MachServer.h // obs-mac-virtualcam // // Created by John Boiles on 5/5/20. // @import Foundation; @import CoreVideo; NS_ASSUME_NONNULL_BEGIN @interface OBSDALMachServer : NSObject - (void)run; /*! Will eventually be used for sending frames to all connected clients */ - (void)sendPixelBuffer:(CVPixelBufferRef)frame timestamp:(uint64_t)timestamp fpsNumerator:(uint32_t)fpsNumerator fpsDenominator:(uint32_t)fpsDenominator; - (void)stop; @end NS_ASSUME_NONNULL_END