0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 04:42:18 +02:00
obs-studio/plugins/obs-webrtc/whip-service.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
484 B
C
Raw Normal View History

#pragma once
#include <obs-module.h>
#include <string>
struct WHIPService {
std::string server;
std::string bearer_token;
WHIPService(obs_data_t *settings, obs_service_t *service);
void Update(obs_data_t *settings);
static obs_properties_t *Properties();
static void ApplyEncoderSettings(obs_data_t *video_settings,
obs_data_t *audio_settings);
bool CanTryToConnect();
const char *GetConnectInfo(enum obs_service_connect_info type);
};
void register_whip_service();