mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +00:00
173 lines
No EOL
5.1 KiB
C++
173 lines
No EOL
5.1 KiB
C++
/**
|
|
* The MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2013-2020 Runner365
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
* this software and associated documentation files (the "Software"), to deal in
|
|
* the Software without restriction, including without limitation the rights to
|
|
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
* the Software, and to permit persons to whom the Software is furnished to do so,
|
|
* subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#ifndef SRT_TO_RTMP_H
|
|
#define SRT_TO_RTMP_H
|
|
|
|
#include <srs_core.hpp>
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#include <thread>
|
|
#include <queue>
|
|
#include <map>
|
|
#include <mutex>
|
|
#include <condition_variable>
|
|
#include <srs_kernel_ts.hpp>
|
|
#include <srs_app_rtmp_conn.hpp>
|
|
#include <srs_raw_avc.hpp>
|
|
#include <srs_protocol_utility.hpp>
|
|
#include <unordered_map>
|
|
|
|
#include "srt_data.hpp"
|
|
#include "ts_demux.hpp"
|
|
|
|
#define SRT_VIDEO_MSG_TYPE 0x01
|
|
#define SRT_AUDIO_MSG_TYPE 0x02
|
|
|
|
typedef std::shared_ptr<SrsSimpleRtmpClient> RTMP_CONN_PTR;
|
|
typedef std::shared_ptr<SrsRawH264Stream> AVC_PTR;
|
|
typedef std::shared_ptr<SrsRawAacStream> AAC_PTR;
|
|
|
|
#define DEFAULT_VHOST "__default_host__"
|
|
|
|
#define QUEUE_DEF_TIMEOUT 500
|
|
#define QUEUE_LEN_MAX 100
|
|
|
|
typedef struct {
|
|
unsigned char* _data;
|
|
int _len;
|
|
int64_t _dts;
|
|
char _type;
|
|
char reserve[3];
|
|
} rtmp_packet_info_s;
|
|
|
|
class rtmp_packet_queue {
|
|
public:
|
|
rtmp_packet_queue();
|
|
~rtmp_packet_queue();
|
|
|
|
void set_queue_timeout(int64_t queue_timeout);
|
|
void insert_rtmp_data(unsigned char* data, int len, int64_t dts, char media_type);
|
|
bool get_rtmp_data(rtmp_packet_info_s& packet_info);
|
|
|
|
private:
|
|
bool is_ready();
|
|
|
|
private:
|
|
int64_t _queue_timeout;
|
|
int64_t _queue_maxlen;
|
|
int64_t _first_packet_t;
|
|
int64_t _first_local_t;
|
|
std::multimap<int64_t, rtmp_packet_info_s> _send_map;//key:dts, value:rtmp_packet_info
|
|
};
|
|
|
|
class rtmp_client : public ts_media_data_callback_I, public std::enable_shared_from_this<rtmp_client> {
|
|
public:
|
|
rtmp_client(std::string key_path);
|
|
~rtmp_client();
|
|
|
|
void receive_ts_data(SRT_DATA_MSG_PTR data_ptr);
|
|
int64_t get_last_live_ts();
|
|
std::string get_url();
|
|
|
|
srs_error_t connect();
|
|
void close();
|
|
|
|
private:
|
|
virtual void on_data_callback(SRT_DATA_MSG_PTR data_ptr, unsigned int media_type, uint64_t dts, uint64_t pts);
|
|
|
|
private:
|
|
srs_error_t on_ts_video(std::shared_ptr<SrsBuffer> avs_ptr, uint64_t dts, uint64_t pts);
|
|
srs_error_t on_ts_audio(std::shared_ptr<SrsBuffer> avs_ptr, uint64_t dts, uint64_t pts);
|
|
virtual srs_error_t write_h264_sps_pps(uint32_t dts, uint32_t pts);
|
|
virtual srs_error_t write_h264_ipb_frame(char* frame, int frame_size, uint32_t dts, uint32_t pts);
|
|
virtual srs_error_t write_audio_raw_frame(char* frame, int frame_size, SrsRawAacStreamCodec* codec, uint32_t dts);
|
|
|
|
int get_sample_rate(char sound_rate);
|
|
|
|
void rtmp_write_work();
|
|
|
|
private:
|
|
virtual srs_error_t rtmp_write_packet(char type, uint32_t timestamp, char* data, int size);
|
|
|
|
private:
|
|
std::string _key_path;
|
|
std::string _url;
|
|
std::string _vhost;
|
|
std::string _appname;
|
|
std::string _streamname;
|
|
TS_DEMUX_PTR _ts_demux_ptr;
|
|
|
|
private:
|
|
AVC_PTR _avc_ptr;
|
|
std::string _h264_sps;
|
|
bool _h264_sps_changed;
|
|
std::string _h264_pps;
|
|
bool _h264_pps_changed;
|
|
bool _h264_sps_pps_sent;
|
|
private:
|
|
std::string _aac_specific_config;
|
|
AAC_PTR _aac_ptr;
|
|
private:
|
|
RTMP_CONN_PTR _rtmp_conn_ptr;
|
|
bool _connect_flag;
|
|
int64_t _last_live_ts;
|
|
|
|
private:
|
|
rtmp_packet_queue _rtmp_queue;
|
|
};
|
|
|
|
typedef std::shared_ptr<rtmp_client> RTMP_CLIENT_PTR;
|
|
|
|
class srt2rtmp : public ISrsCoroutineHandler {
|
|
public:
|
|
static std::shared_ptr<srt2rtmp> get_instance();
|
|
srt2rtmp();
|
|
virtual ~srt2rtmp();
|
|
|
|
srs_error_t init();
|
|
void release();
|
|
|
|
void insert_data_message(unsigned char* data_p, unsigned int len, const std::string& key_path);
|
|
void insert_ctrl_message(unsigned int msg_type, const std::string& key_path);
|
|
|
|
private:
|
|
SRT_DATA_MSG_PTR get_data_message();
|
|
virtual srs_error_t cycle();
|
|
void handle_ts_data(SRT_DATA_MSG_PTR data_ptr);
|
|
void handle_close_rtmpsession(const std::string& key_path);
|
|
void check_rtmp_alive();
|
|
|
|
private:
|
|
static std::shared_ptr<srt2rtmp> s_srt2rtmp_ptr;
|
|
std::shared_ptr<SrsCoroutine> _trd_ptr;
|
|
std::mutex _mutex;
|
|
//std::condition_variable_any _notify_cond;
|
|
std::queue<SRT_DATA_MSG_PTR> _msg_queue;
|
|
|
|
std::unordered_map<std::string, RTMP_CLIENT_PTR> _rtmp_client_map;
|
|
int64_t _lastcheck_ts;
|
|
};
|
|
|
|
#endif |