ZLMediaKit/src/Rtp/RtpProcess.h

105 lines
3.3 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"
2022-07-26 11:21:19 +08:00
#include "Rtcp/RtcpContext.h"
2020-10-24 23:33:13 +08:00
#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 RtcpContextForRecv, public toolkit::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 std::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
*/
2022-08-08 17:13:39 +08:00
bool inputRtp(bool is_udp, const toolkit::Socket::Ptr &sock, const char *data, size_t len, const struct sockaddr *addr , uint64_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 std::function<void()> &cb);
/**
* onDetach事件回调,false检查RTP超时true停止
*/
void setStopCheckRtp(bool is_check=false);
2020-07-08 09:36:10 +08:00
/// SockInfo override
std::string get_local_ip() override;
2020-04-23 23:18:24 +08:00
uint16_t get_local_port() override;
std::string get_peer_ip() override;
2020-04-23 23:18:24 +08:00
uint16_t get_peer_port() override;
std::string getIdentifier() const override;
2020-04-23 23:18:24 +08:00
2019-12-05 19:20:12 +08:00
protected:
bool inputFrame(const Frame::Ptr &frame) override;
bool 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;
std::string getOriginUrl(MediaSource &sender) const override;
std::shared_ptr<SockInfo> getOriginSock(MediaSource &sender) const override;
toolkit::EventPoller::Ptr getOwnerPoller(MediaSource &sender) override;
float getLossRate(MediaSource &sender, TrackType type) override;
2020-04-23 23:18:24 +08:00
private:
void emitOnPublish();
void doCachedFunc();
2020-04-23 23:18:24 +08:00
2019-12-05 19:20:12 +08:00
private:
2022-08-08 17:13:39 +08:00
uint64_t _dts = 0;
2020-04-24 12:39:22 +08:00
uint64_t _total_bytes = 0;
2022-05-10 10:44:12 +08:00
std::unique_ptr<sockaddr_storage> _addr;
toolkit::Socket::Ptr _sock;
2020-10-24 23:33:13 +08:00
MediaInfo _media_info;
toolkit::Ticker _last_frame_time;
std::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;
std::atomic_bool _stop_rtp_check{false};
toolkit::Ticker _last_check_alive;
std::recursive_mutex _func_mtx;
std::deque<std::function<void()> > _cached_func;
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