/
githubmirror
/
obs-studio
Обзор
Документация
Войти
/
githubmirror
/
obs-studio
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
plugins/decklink/linux/platform.cpp
13 строк
221 B
Warchamp7
Update C++ files with braces
09 июн 2026, 20:41
09 июн 2026, 20:41
30b63c6
Код
Авторство
О чём код?
#include "../platform.hpp" bool DeckLinkStringToStdString(decklink_string_t input, std::string &output) { if (input == nullptr) { return false; } output = std::string(input); free((void *)input); return true; }