mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-18 11:10:04 +00:00
27 lines
420 B
C++
27 lines
420 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 stream {
|
|
struct launch_session_t {
|
|
crypto::aes_t gcm_key;
|
|
crypto::aes_t iv;
|
|
};
|
|
|
|
void launch_session_raise(launch_session_t launch_session);
|
|
int session_count();
|
|
|
|
void rtpThread(std::shared_ptr<safe::signal_t> shutdown_event);
|
|
|
|
}
|
|
|
|
#endif //SUNSHINE_RTSP_H
|