ZLMediaKit/src/Rtp/RtpProcess.h

77 lines
2.4 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/xiongziliang/ZLMediaKit).
*
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)
2019-12-05 19:20:12 +08:00
#include "Rtsp/RtpReceiver.h"
#include "RtpDecoder.h"
2020-03-06 13:00:06 +08:00
#include "Decoder.h"
2019-12-05 19:20:12 +08:00
#include "Common/Device.h"
2019-12-13 15:42:12 +08:00
#include "Common/Stamp.h"
2019-12-05 19:20:12 +08:00
using namespace mediakit;
2019-12-06 11:54:10 +08:00
namespace mediakit{
2019-12-05 19:20:12 +08:00
string printSSRC(uint32_t ui32Ssrc);
class FrameMerger;
2020-04-23 23:18:24 +08:00
class RtpProcess : public RtpReceiver , public RtpDecoder, public SockInfo, public std::enable_shared_from_this<RtpProcess>{
2019-12-05 19:20:12 +08:00
public:
typedef std::shared_ptr<RtpProcess> Ptr;
RtpProcess(uint32_t ssrc);
~RtpProcess();
2020-04-23 23:30:24 +08:00
bool inputRtp(const Socket::Ptr &sock, const char *data,int data_len, const struct sockaddr *addr , uint32_t *dts_out = nullptr);
2019-12-05 19:20:12 +08:00
bool alive();
2020-04-23 23:18:24 +08:00
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;
2020-02-28 16:25:14 +08:00
int totalReaderCount();
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:
void onRtpSorted(const RtpPacket::Ptr &rtp, int track_index) override ;
2020-03-06 13:00:06 +08:00
void onRtpDecode(const uint8_t *packet, int bytes, uint32_t timestamp, int flags) override;
void onDecode(int stream,int codecid,int flags,int64_t pts,int64_t dts, const void *data,int bytes);
2020-04-23 23:18:24 +08:00
private:
void emitOnPublish();
2019-12-05 19:20:12 +08:00
private:
std::shared_ptr<FILE> _save_file_rtp;
std::shared_ptr<FILE> _save_file_ps;
std::shared_ptr<FILE> _save_file_video;
uint32_t _ssrc;
SdpTrack::Ptr _track;
struct sockaddr *_addr = nullptr;
uint16_t _sequence = 0;
int _codecid_video = 0;
int _codecid_audio = 0;
MultiMediaSourceMuxer::Ptr _muxer;
std::shared_ptr<FrameMerger> _merger;
2019-12-05 19:20:12 +08:00
Ticker _last_rtp_time;
2020-04-07 10:26:07 +08:00
unordered_map<int,Stamp> _stamps;
uint32_t _dts = 0;
2020-03-06 13:00:06 +08:00
Decoder::Ptr _decoder;
2020-04-23 23:18:24 +08:00
std::weak_ptr<MediaSourceEvent> _listener;
MediaInfo _media_info;
2020-04-24 12:39:22 +08:00
uint64_t _total_bytes = 0;
2020-04-23 23:30:24 +08:00
Socket::Ptr _sock;
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