ZLMediaKit/src/Rtp/RtpProcess.h

103 lines
3.0 KiB
C++
Raw Normal View History

2019-12-05 19:20:12 +08:00
/*
2020-04-04 20:30:09 +08:00
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
2019-12-06 11:54:10 +08:00
*
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
2019-12-06 11:54:10 +08:00
*
2020-04-04 20:30:09 +08:00
* Use of this source code is governed by MIT license that can be found in the
* LICENSE file in the root of the source tree. All contributing project authors
* may be found in the AUTHORS file in the root of the source tree.
2019-12-06 11:54:10 +08:00
*/
2019-12-05 19:20:12 +08:00
2019-12-06 11:54:10 +08:00
#ifndef ZLMEDIAKIT_RTPPROCESS_H
#define ZLMEDIAKIT_RTPPROCESS_H
#if defined(ENABLE_RTPPROXY)
2020-10-24 23:33:13 +08:00
#include "ProcessInterface.h"
#include "Common/MultiMediaSourceMuxer.h"
2019-12-05 19:20:12 +08:00
2020-10-24 23:33:13 +08:00
namespace mediakit {
2019-12-06 11:54:10 +08:00
class RtpProcess : public SockInfo, public MediaSinkInterface, public MediaSourceEventInterceptor, public std::enable_shared_from_this<RtpProcess>{
2019-12-05 19:20:12 +08:00
public:
typedef std::shared_ptr<RtpProcess> Ptr;
2020-09-27 11:32:49 +08:00
friend class RtpProcessHelper;
RtpProcess(const string &stream_id);
2019-12-05 19:20:12 +08:00
~RtpProcess();
2020-07-08 09:36:10 +08:00
/**
* rtp
2020-10-24 23:33:13 +08:00
* @param is_udp udp模式
2020-07-08 09:36:10 +08:00
* @param sock socket
* @param data rtp数据指针
2020-10-24 23:33:13 +08:00
* @param len rtp数据长度
2020-07-08 09:36:10 +08:00
* @param addr
* @param dts_out dts
* @return
*/
bool inputRtp(bool is_udp, const Socket::Ptr &sock, const char *data, size_t len, const struct sockaddr *addr , uint32_t *dts_out = nullptr);
2020-07-08 09:36:10 +08:00
/**
*
*/
2019-12-05 19:20:12 +08:00
bool alive();
2020-04-23 23:18:24 +08:00
/**
* RtpSelector移除时触发
*/
void onDetach();
/**
* onDetach事件回调
*/
void setOnDetach(const function<void()> &cb);
/**
* onDetach事件回调,false检查RTP超时true停止
*/
void setStopCheckRtp(bool is_check=false);
2020-07-08 09:36:10 +08:00
/// SockInfo override
2020-04-24 12:39:22 +08:00
string get_local_ip() override;
2020-04-23 23:18:24 +08:00
uint16_t get_local_port() override;
2020-04-24 12:39:22 +08:00
string get_peer_ip() override;
2020-04-23 23:18:24 +08:00
uint16_t get_peer_port() override;
string getIdentifier() const override;
2021-01-17 20:15:08 +08:00
int getTotalReaderCount();
2020-02-28 16:25:14 +08:00
void setListener(const std::weak_ptr<MediaSourceEvent> &listener);
2020-04-23 23:18:24 +08:00
2019-12-05 19:20:12 +08:00
protected:
2020-05-17 18:00:23 +08:00
void inputFrame(const Frame::Ptr &frame) override;
void addTrack(const Track::Ptr & track) override;
void addTrackCompleted() override;
2020-05-17 18:00:23 +08:00
void resetTracks() override {};
2020-04-23 23:18:24 +08:00
//// MediaSourceEvent override ////
MediaOriginType getOriginType(MediaSource &sender) const override;
string getOriginUrl(MediaSource &sender) const override;
std::shared_ptr<SockInfo> getOriginSock(MediaSource &sender) const override;
2020-04-23 23:18:24 +08:00
private:
void emitOnPublish();
2019-12-05 19:20:12 +08:00
private:
uint32_t _dts = 0;
2020-04-24 12:39:22 +08:00
uint64_t _total_bytes = 0;
2021-02-04 18:20:59 +08:00
struct sockaddr _addr{0};
2020-04-23 23:30:24 +08:00
Socket::Ptr _sock;
2020-10-24 23:33:13 +08:00
MediaInfo _media_info;
Ticker _last_frame_time;
function<void()> _on_detach;
2020-10-24 23:33:13 +08:00
std::shared_ptr<FILE> _save_file_rtp;
std::shared_ptr<FILE> _save_file_video;
ProcessInterface::Ptr _process;
MultiMediaSourceMuxer::Ptr _muxer;
2021-02-07 22:02:03 +08:00
atomic_bool _stop_rtp_check{false};
atomic_flag _busy_flag{false};
Ticker _last_check_alive;
2019-12-05 19:20:12 +08:00
};
2019-12-06 11:54:10 +08:00
}//namespace mediakit
#endif//defined(ENABLE_RTPPROXY)
#endif //ZLMEDIAKIT_RTPPROCESS_H