mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-08-10 00:52:16 +00:00
32 lines
483 B
C++
32 lines
483 B
C++
// Created by loki on 2/2/20.
|
|
|
|
#ifndef SUNSHINE_RTSP_H
|
|
#define SUNSHINE_RTSP_H
|
|
|
|
#include <atomic>
|
|
|
|
#include "crypto.h"
|
|
#include "thread_safe.h"
|
|
|
|
namespace rtsp_stream {
|
|
constexpr auto RTSP_SETUP_PORT = 21;
|
|
|
|
struct launch_session_t {
|
|
crypto::aes_t gcm_key;
|
|
crypto::aes_t iv;
|
|
|
|
bool host_audio;
|
|
};
|
|
|
|
void
|
|
launch_session_raise(launch_session_t launch_session);
|
|
int
|
|
session_count();
|
|
|
|
void
|
|
rtpThread();
|
|
|
|
} // namespace rtsp_stream
|
|
|
|
#endif // SUNSHINE_RTSP_H
|