Files
camera-streamer/output/webrtc/webrtc.h
2023-02-22 21:40:17 +01:00

15 lines
284 B
C

#pragma once
#include <stdio.h>
typedef struct http_worker_s http_worker_t;
typedef struct webrtc_options_s {
bool running;
bool disabled;
} webrtc_options_t;
// WebRTC
void http_webrtc_offer(http_worker_t *worker, FILE *stream);
int webrtc_server(webrtc_options_t *options);