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
|
|
|
|
#if defined(ENABLE_RTPPROXY)
|
|
|
|
|
#include "mpeg-ps.h"
|
2019-12-05 19:20:12 +08:00
|
|
|
|
#include "RtpProcess.h"
|
|
|
|
|
#include "Util/File.h"
|
|
|
|
|
#include "Extension/H265.h"
|
|
|
|
|
#include "Extension/AAC.h"
|
2020-04-23 15:19:20 +08:00
|
|
|
|
#include "Extension/G711.h"
|
2020-04-23 16:14:24 +08:00
|
|
|
|
#define RTP_APP_NAME "rtp"
|
2019-12-05 19:20:12 +08:00
|
|
|
|
|
2019-12-06 11:54:10 +08:00
|
|
|
|
namespace mediakit{
|
2019-12-05 19:20:12 +08:00
|
|
|
|
|
2019-12-16 11:00:40 +08:00
|
|
|
|
/**
|
|
|
|
|
* 合并一些时间戳相同的frame
|
|
|
|
|
*/
|
|
|
|
|
class FrameMerger {
|
|
|
|
|
public:
|
|
|
|
|
FrameMerger() = default;
|
|
|
|
|
virtual ~FrameMerger() = default;
|
|
|
|
|
|
|
|
|
|
void inputFrame(const Frame::Ptr &frame,const function<void(uint32_t dts,uint32_t pts,const Buffer::Ptr &buffer)> &cb){
|
|
|
|
|
if (!_frameCached.empty() && _frameCached.back()->dts() != frame->dts()) {
|
|
|
|
|
Frame::Ptr back = _frameCached.back();
|
|
|
|
|
Buffer::Ptr merged_frame = back;
|
|
|
|
|
if(_frameCached.size() != 1){
|
|
|
|
|
string merged;
|
|
|
|
|
_frameCached.for_each([&](const Frame::Ptr &frame){
|
|
|
|
|
merged.append(frame->data(),frame->size());
|
|
|
|
|
});
|
|
|
|
|
merged_frame = std::make_shared<BufferString>(std::move(merged));
|
|
|
|
|
}
|
|
|
|
|
cb(back->dts(),back->pts(),merged_frame);
|
|
|
|
|
_frameCached.clear();
|
|
|
|
|
}
|
|
|
|
|
_frameCached.emplace_back(Frame::getCacheAbleFrame(frame));
|
|
|
|
|
}
|
|
|
|
|
private:
|
|
|
|
|
List<Frame::Ptr> _frameCached;
|
|
|
|
|
};
|
|
|
|
|
|
2019-12-05 19:20:12 +08:00
|
|
|
|
string printSSRC(uint32_t ui32Ssrc) {
|
|
|
|
|
char tmp[9] = { 0 };
|
|
|
|
|
ui32Ssrc = htonl(ui32Ssrc);
|
|
|
|
|
uint8_t *pSsrc = (uint8_t *) &ui32Ssrc;
|
|
|
|
|
for (int i = 0; i < 4; i++) {
|
|
|
|
|
sprintf(tmp + 2 * i, "%02X", pSsrc[i]);
|
|
|
|
|
}
|
|
|
|
|
return tmp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static string printAddress(const struct sockaddr *addr){
|
2020-04-23 16:14:24 +08:00
|
|
|
|
return StrPrinter << SockUtil::inet_ntoa(((struct sockaddr_in *) addr)->sin_addr) << ":" << ntohs(((struct sockaddr_in *) addr)->sin_port);
|
2019-12-05 19:20:12 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RtpProcess::RtpProcess(uint32_t ssrc) {
|
|
|
|
|
_ssrc = ssrc;
|
|
|
|
|
_track = std::make_shared<SdpTrack>();
|
|
|
|
|
_track->_interleaved = 0;
|
|
|
|
|
_track->_samplerate = 90000;
|
|
|
|
|
_track->_type = TrackVideo;
|
|
|
|
|
_track->_ssrc = _ssrc;
|
2019-12-09 17:49:00 +08:00
|
|
|
|
|
2020-04-23 23:18:24 +08:00
|
|
|
|
_media_info._schema = RTP_APP_NAME;
|
|
|
|
|
_media_info._vhost = DEFAULT_VHOST;
|
|
|
|
|
_media_info._app = RTP_APP_NAME;
|
|
|
|
|
_media_info._streamid = printSSRC(_ssrc);
|
2019-12-05 19:20:12 +08:00
|
|
|
|
|
2019-12-06 11:54:10 +08:00
|
|
|
|
GET_CONFIG(string,dump_dir,RtpProxy::kDumpDir);
|
2019-12-05 19:20:12 +08:00
|
|
|
|
{
|
2020-04-23 23:30:24 +08:00
|
|
|
|
FILE *fp = !dump_dir.empty() ? File::createfile_file(File::absolutePath(_media_info._streamid + ".rtp",dump_dir).data(),"wb") : nullptr;
|
2019-12-05 19:20:12 +08:00
|
|
|
|
if(fp){
|
|
|
|
|
_save_file_rtp.reset(fp,[](FILE *fp){
|
|
|
|
|
fclose(fp);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{
|
2020-04-23 23:30:24 +08:00
|
|
|
|
FILE *fp = !dump_dir.empty() ? File::createfile_file(File::absolutePath(_media_info._streamid + ".mp2",dump_dir).data(),"wb") : nullptr;
|
2019-12-05 19:20:12 +08:00
|
|
|
|
if(fp){
|
|
|
|
|
_save_file_ps.reset(fp,[](FILE *fp){
|
|
|
|
|
fclose(fp);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{
|
2020-04-23 23:30:24 +08:00
|
|
|
|
FILE *fp = !dump_dir.empty() ? File::createfile_file(File::absolutePath(_media_info._streamid + ".video",dump_dir).data(),"wb") : nullptr;
|
2019-12-05 19:20:12 +08:00
|
|
|
|
if(fp){
|
|
|
|
|
_save_file_video.reset(fp,[](FILE *fp){
|
|
|
|
|
fclose(fp);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-12-16 11:00:40 +08:00
|
|
|
|
_merger = std::make_shared<FrameMerger>();
|
2019-12-05 19:20:12 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RtpProcess::~RtpProcess() {
|
2020-04-23 23:18:24 +08:00
|
|
|
|
DebugP(this);
|
|
|
|
|
if (_addr) {
|
2019-12-05 19:20:12 +08:00
|
|
|
|
delete _addr;
|
2020-04-23 23:18:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
uint64_t duration = (_last_rtp_time.createdTime() - _last_rtp_time.elapsedTime()) / 1000;
|
|
|
|
|
WarnP(this) << "RTP推流器("
|
|
|
|
|
<< _media_info._vhost << "/"
|
|
|
|
|
<< _media_info._app << "/"
|
|
|
|
|
<< _media_info._streamid
|
|
|
|
|
<< ")断开,耗时(s):" << duration;
|
|
|
|
|
|
|
|
|
|
//流量统计事件广播
|
|
|
|
|
GET_CONFIG(uint32_t, iFlowThreshold, General::kFlowThreshold);
|
|
|
|
|
if (_ui64TotalBytes > iFlowThreshold * 1024) {
|
|
|
|
|
NoticeCenter::Instance().emitEvent(Broadcast::kBroadcastFlowReport, _media_info, _ui64TotalBytes, duration, false, static_cast<SockInfo &>(*this));
|
2019-12-05 19:20:12 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-23 23:30:24 +08:00
|
|
|
|
bool RtpProcess::inputRtp(const Socket::Ptr &sock, const char *data, int data_len,const struct sockaddr *addr,uint32_t *dts_out) {
|
2019-12-06 11:54:10 +08:00
|
|
|
|
GET_CONFIG(bool,check_source,RtpProxy::kCheckSource);
|
2019-12-05 19:20:12 +08:00
|
|
|
|
//检查源是否合法
|
|
|
|
|
if(!_addr){
|
|
|
|
|
_addr = new struct sockaddr;
|
2020-04-23 23:33:58 +08:00
|
|
|
|
_sock = sock;
|
2019-12-05 19:20:12 +08:00
|
|
|
|
memcpy(_addr,addr, sizeof(struct sockaddr));
|
2020-04-23 23:18:24 +08:00
|
|
|
|
DebugP(this) << "bind to address:" << printAddress(_addr);
|
|
|
|
|
//推流鉴权
|
|
|
|
|
emitOnPublish();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(!_muxer){
|
|
|
|
|
//无权限推流
|
|
|
|
|
return false;
|
2019-12-05 19:20:12 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(check_source && memcmp(_addr,addr,sizeof(struct sockaddr)) != 0){
|
2020-04-23 23:18:24 +08:00
|
|
|
|
DebugP(this) << "address dismatch:" << printAddress(addr) << " != " << printAddress(_addr);
|
2019-12-05 19:20:12 +08:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-23 23:18:24 +08:00
|
|
|
|
_ui64TotalBytes += data_len;
|
2019-12-05 19:20:12 +08:00
|
|
|
|
_last_rtp_time.resetTime();
|
2019-12-16 11:00:40 +08:00
|
|
|
|
bool ret = handleOneRtp(0,_track,(unsigned char *)data,data_len);
|
|
|
|
|
if(dts_out){
|
|
|
|
|
*dts_out = _dts;
|
|
|
|
|
}
|
|
|
|
|
return ret;
|
2019-12-05 19:20:12 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-08 21:19:20 +08:00
|
|
|
|
//判断是否为ts负载
|
|
|
|
|
static inline bool checkTS(const uint8_t *packet, int bytes){
|
|
|
|
|
return bytes % 188 == 0 && packet[0] == 0x47;
|
2020-03-04 22:25:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-05 19:20:12 +08:00
|
|
|
|
void RtpProcess::onRtpSorted(const RtpPacket::Ptr &rtp, int) {
|
|
|
|
|
if(rtp->sequence != _sequence + 1){
|
2020-04-23 23:18:24 +08:00
|
|
|
|
WarnP(this) << rtp->sequence << " != " << _sequence << "+1";
|
2019-12-05 19:20:12 +08:00
|
|
|
|
}
|
|
|
|
|
_sequence = rtp->sequence;
|
|
|
|
|
if(_save_file_rtp){
|
|
|
|
|
uint16_t size = rtp->size() - 4;
|
|
|
|
|
size = htons(size);
|
|
|
|
|
fwrite((uint8_t *) &size, 2, 1, _save_file_rtp.get());
|
|
|
|
|
fwrite((uint8_t *) rtp->data() + 4, rtp->size() - 4, 1, _save_file_rtp.get());
|
|
|
|
|
}
|
2020-03-08 21:19:20 +08:00
|
|
|
|
decodeRtp(rtp->data() + 4 ,rtp->size() - 4);
|
2019-12-05 19:20:12 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-08 21:19:20 +08:00
|
|
|
|
void RtpProcess::onRtpDecode(const uint8_t *packet, int bytes, uint32_t timestamp, int flags) {
|
2019-12-05 19:20:12 +08:00
|
|
|
|
if(_save_file_ps){
|
|
|
|
|
fwrite((uint8_t *)packet,bytes, 1, _save_file_ps.get());
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-06 13:00:06 +08:00
|
|
|
|
if(!_decoder){
|
|
|
|
|
//创建解码器
|
2020-03-08 21:19:20 +08:00
|
|
|
|
if(checkTS(packet, bytes)){
|
2020-03-06 13:00:06 +08:00
|
|
|
|
//猜测是ts负载
|
2020-04-23 23:30:24 +08:00
|
|
|
|
InfoP(this) << "judged to be TS";
|
2020-03-06 13:00:06 +08:00
|
|
|
|
_decoder = Decoder::createDecoder(Decoder::decoder_ts);
|
|
|
|
|
}else{
|
|
|
|
|
//猜测是ps负载
|
2020-04-23 23:30:24 +08:00
|
|
|
|
InfoP(this) << "judged to be PS";
|
2020-03-06 13:00:06 +08:00
|
|
|
|
_decoder = Decoder::createDecoder(Decoder::decoder_ps);
|
|
|
|
|
}
|
|
|
|
|
_decoder->setOnDecode([this](int stream,int codecid,int flags,int64_t pts,int64_t dts,const void *data,int bytes){
|
|
|
|
|
onDecode(stream,codecid,flags,pts,dts,data,bytes);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
auto ret = _decoder->input((uint8_t *)packet,bytes);
|
2019-12-05 19:20:12 +08:00
|
|
|
|
if(ret != bytes){
|
2020-04-23 23:18:24 +08:00
|
|
|
|
WarnP(this) << ret << " != " << bytes << " " << flags;
|
2019-12-05 19:20:12 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-25 19:00:22 +08:00
|
|
|
|
#define SWITCH_CASE(codec_id) case codec_id : return #codec_id
|
|
|
|
|
static const char *getCodecName(int codec_id) {
|
|
|
|
|
switch (codec_id) {
|
|
|
|
|
SWITCH_CASE(STREAM_VIDEO_MPEG4);
|
|
|
|
|
SWITCH_CASE(STREAM_VIDEO_H264);
|
|
|
|
|
SWITCH_CASE(STREAM_VIDEO_H265);
|
|
|
|
|
SWITCH_CASE(STREAM_VIDEO_SVAC);
|
|
|
|
|
SWITCH_CASE(STREAM_AUDIO_MP3);
|
|
|
|
|
SWITCH_CASE(STREAM_AUDIO_AAC);
|
|
|
|
|
SWITCH_CASE(STREAM_AUDIO_G711);
|
|
|
|
|
SWITCH_CASE(STREAM_AUDIO_G722);
|
|
|
|
|
SWITCH_CASE(STREAM_AUDIO_G723);
|
|
|
|
|
SWITCH_CASE(STREAM_AUDIO_G729);
|
|
|
|
|
SWITCH_CASE(STREAM_AUDIO_SVAC);
|
|
|
|
|
default:
|
|
|
|
|
return "unknown codec";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-06 13:00:06 +08:00
|
|
|
|
void RtpProcess::onDecode(int stream,int codecid,int flags,int64_t pts,int64_t dts,const void *data,int bytes) {
|
2019-12-13 15:42:12 +08:00
|
|
|
|
pts /= 90;
|
|
|
|
|
dts /= 90;
|
|
|
|
|
_stamps[codecid].revise(dts,pts,dts,pts,false);
|
2019-12-05 19:20:12 +08:00
|
|
|
|
|
|
|
|
|
switch (codecid) {
|
|
|
|
|
case STREAM_VIDEO_H264: {
|
2020-04-10 14:08:10 +08:00
|
|
|
|
_dts = dts;
|
2019-12-05 19:20:12 +08:00
|
|
|
|
if (!_codecid_video) {
|
|
|
|
|
//获取到视频
|
|
|
|
|
_codecid_video = codecid;
|
2020-04-23 23:18:24 +08:00
|
|
|
|
InfoP(this) << "got video track: H264";
|
2019-12-05 19:20:12 +08:00
|
|
|
|
auto track = std::make_shared<H264Track>();
|
|
|
|
|
_muxer->addTrack(track);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (codecid != _codecid_video) {
|
2020-04-23 23:18:24 +08:00
|
|
|
|
WarnP(this) << "video track change to H264 from codecid:" << getCodecName(_codecid_video);
|
2019-12-05 19:20:12 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(_save_file_video){
|
|
|
|
|
fwrite((uint8_t *)data,bytes, 1, _save_file_video.get());
|
|
|
|
|
}
|
2019-12-16 11:00:40 +08:00
|
|
|
|
auto frame = std::make_shared<H264FrameNoCacheAble>((char *) data, bytes, dts, pts,0);
|
|
|
|
|
_merger->inputFrame(frame,[this](uint32_t dts, uint32_t pts, const Buffer::Ptr &buffer) {
|
|
|
|
|
_muxer->inputFrame(std::make_shared<H264FrameNoCacheAble>(buffer->data(), buffer->size(), dts, pts,4));
|
|
|
|
|
});
|
2019-12-05 19:20:12 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case STREAM_VIDEO_H265: {
|
2020-04-10 14:08:10 +08:00
|
|
|
|
_dts = dts;
|
2019-12-05 19:20:12 +08:00
|
|
|
|
if (!_codecid_video) {
|
|
|
|
|
//获取到视频
|
|
|
|
|
_codecid_video = codecid;
|
2020-04-23 23:18:24 +08:00
|
|
|
|
InfoP(this) << "got video track: H265";
|
2019-12-05 19:20:12 +08:00
|
|
|
|
auto track = std::make_shared<H265Track>();
|
|
|
|
|
_muxer->addTrack(track);
|
|
|
|
|
}
|
|
|
|
|
if (codecid != _codecid_video) {
|
2020-04-23 23:18:24 +08:00
|
|
|
|
WarnP(this) << "video track change to H265 from codecid:" << getCodecName(_codecid_video);
|
2019-12-05 19:20:12 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if(_save_file_video){
|
|
|
|
|
fwrite((uint8_t *)data,bytes, 1, _save_file_video.get());
|
|
|
|
|
}
|
2019-12-16 11:00:40 +08:00
|
|
|
|
auto frame = std::make_shared<H265FrameNoCacheAble>((char *) data, bytes, dts, pts, 0);
|
|
|
|
|
_merger->inputFrame(frame,[this](uint32_t dts, uint32_t pts, const Buffer::Ptr &buffer) {
|
|
|
|
|
_muxer->inputFrame(std::make_shared<H265FrameNoCacheAble>(buffer->data(), buffer->size(), dts, pts, 4));
|
|
|
|
|
});
|
2019-12-05 19:20:12 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case STREAM_AUDIO_AAC: {
|
2020-04-10 14:08:10 +08:00
|
|
|
|
_dts = dts;
|
2019-12-05 19:20:12 +08:00
|
|
|
|
if (!_codecid_audio) {
|
|
|
|
|
//获取到音频
|
|
|
|
|
_codecid_audio = codecid;
|
2020-04-23 23:18:24 +08:00
|
|
|
|
InfoP(this) << "got audio track: AAC";
|
2019-12-05 19:20:12 +08:00
|
|
|
|
auto track = std::make_shared<AACTrack>();
|
|
|
|
|
_muxer->addTrack(track);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (codecid != _codecid_audio) {
|
2020-04-23 23:18:24 +08:00
|
|
|
|
WarnP(this) << "audio track change to AAC from codecid:" << getCodecName(_codecid_audio);
|
2019-12-05 19:20:12 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
2020-04-03 20:45:58 +08:00
|
|
|
|
_muxer->inputFrame(std::make_shared<AACFrameNoCacheAble>((char *) data, bytes, dts, 0, 7));
|
2019-12-05 19:20:12 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
2020-04-23 15:19:20 +08:00
|
|
|
|
|
|
|
|
|
case STREAM_AUDIO_G711: {
|
|
|
|
|
_dts = dts;
|
|
|
|
|
//todo 等待陈大佬更新ts/ps解析库,现在暂时固定为G711A
|
|
|
|
|
auto codec = CodecG711A;
|
|
|
|
|
if (!_codecid_audio) {
|
|
|
|
|
//获取到音频
|
|
|
|
|
_codecid_audio = codecid;
|
2020-04-23 23:18:24 +08:00
|
|
|
|
InfoP(this) << "got audio track: G711";
|
2020-04-23 15:19:20 +08:00
|
|
|
|
//G711传统只支持 8000/1/16的规格,FFmpeg貌似做了扩展,但是这里不管它了
|
|
|
|
|
auto track = std::make_shared<G711Track>(codec, 8000, 1, 16);
|
|
|
|
|
_muxer->addTrack(track);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (codecid != _codecid_audio) {
|
2020-04-23 23:18:24 +08:00
|
|
|
|
WarnP(this) << "audio track change to G711 from codecid:" << getCodecName(_codecid_audio);
|
2020-04-23 15:19:20 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
_muxer->inputFrame(std::make_shared<G711FrameNoCacheAble>(codec, (char *) data, bytes, dts));
|
|
|
|
|
break;
|
|
|
|
|
}
|
2019-12-05 19:20:12 +08:00
|
|
|
|
default:
|
2020-02-25 19:00:22 +08:00
|
|
|
|
if(codecid != 0){
|
2020-04-23 23:18:24 +08:00
|
|
|
|
WarnP(this) << "unsupported codec type:" << getCodecName(codecid) << " " << (int)codecid;
|
2020-02-25 19:00:22 +08:00
|
|
|
|
}
|
2019-12-05 19:20:12 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool RtpProcess::alive() {
|
2019-12-06 11:54:10 +08:00
|
|
|
|
GET_CONFIG(int,timeoutSec,RtpProxy::kTimeoutSec)
|
2019-12-05 19:20:12 +08:00
|
|
|
|
if(_last_rtp_time.elapsedTime() / 1000 < timeoutSec){
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-23 23:18:24 +08:00
|
|
|
|
const string& RtpProcess::get_peer_ip() {
|
|
|
|
|
if(_peer_ip.empty() && _addr){
|
|
|
|
|
_peer_ip = SockUtil::inet_ntoa(((struct sockaddr_in *) _addr)->sin_addr);
|
|
|
|
|
}
|
|
|
|
|
return _peer_ip;
|
2019-12-05 19:20:12 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
uint16_t RtpProcess::get_peer_port() {
|
2020-04-23 23:18:24 +08:00
|
|
|
|
if(!_addr){
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2019-12-05 19:20:12 +08:00
|
|
|
|
return ntohs(((struct sockaddr_in *) _addr)->sin_port);
|
|
|
|
|
}
|
2019-12-06 11:54:10 +08:00
|
|
|
|
|
2020-04-23 23:18:24 +08:00
|
|
|
|
const string& RtpProcess::get_local_ip() {
|
2020-04-23 23:30:24 +08:00
|
|
|
|
if(_sock){
|
|
|
|
|
_local_ip = _sock->get_local_ip();
|
|
|
|
|
}
|
2020-04-23 23:18:24 +08:00
|
|
|
|
return _local_ip;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
uint16_t RtpProcess::get_local_port() {
|
2020-04-23 23:30:24 +08:00
|
|
|
|
if(_sock){
|
|
|
|
|
return _sock->get_local_port();
|
|
|
|
|
}
|
2020-04-23 23:18:24 +08:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string RtpProcess::getIdentifier() const{
|
|
|
|
|
return _media_info._streamid;
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-28 16:25:14 +08:00
|
|
|
|
int RtpProcess::totalReaderCount(){
|
2020-04-23 23:18:24 +08:00
|
|
|
|
return _muxer ? _muxer->totalReaderCount() : 0;
|
2020-02-28 16:25:14 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RtpProcess::setListener(const std::weak_ptr<MediaSourceEvent> &listener){
|
2020-04-23 23:18:24 +08:00
|
|
|
|
if(_muxer){
|
|
|
|
|
_muxer->setMediaListener(listener);
|
|
|
|
|
}else{
|
|
|
|
|
_listener = listener;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void RtpProcess::emitOnPublish() {
|
|
|
|
|
weak_ptr<RtpProcess> weak_self = shared_from_this();
|
|
|
|
|
Broadcast::PublishAuthInvoker invoker = [weak_self](const string &err, bool enableRtxp, bool enableHls, bool enableMP4) {
|
|
|
|
|
auto strongSelf = weak_self.lock();
|
|
|
|
|
if (!strongSelf) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (err.empty()) {
|
|
|
|
|
strongSelf->_muxer = std::make_shared<MultiMediaSourceMuxer>(strongSelf->_media_info._vhost,
|
|
|
|
|
strongSelf->_media_info._app,
|
|
|
|
|
strongSelf->_media_info._streamid, 0,
|
|
|
|
|
enableRtxp, enableRtxp, enableHls, enableMP4);
|
|
|
|
|
strongSelf->_muxer->setMediaListener(strongSelf->_listener);
|
|
|
|
|
InfoP(strongSelf) << "允许RTP推流";
|
|
|
|
|
} else {
|
|
|
|
|
WarnP(strongSelf) << "禁止RTP推流:" << err;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//触发推流鉴权事件
|
|
|
|
|
auto flag = NoticeCenter::Instance().emitEvent(Broadcast::kBroadcastMediaPublish, _media_info, invoker, static_cast<SockInfo &>(*this));
|
|
|
|
|
if(!flag){
|
|
|
|
|
//该事件无人监听,默认不鉴权
|
|
|
|
|
GET_CONFIG(bool, toRtxp, General::kPublishToRtxp);
|
|
|
|
|
GET_CONFIG(bool, toHls, General::kPublishToHls);
|
|
|
|
|
GET_CONFIG(bool, toMP4, General::kPublishToMP4);
|
|
|
|
|
invoker("", toRtxp, toHls, toMP4);
|
|
|
|
|
}
|
2020-02-28 16:25:14 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-04 22:25:00 +08:00
|
|
|
|
|
2019-12-06 11:54:10 +08:00
|
|
|
|
}//namespace mediakit
|
|
|
|
|
#endif//defined(ENABLE_RTPPROXY)
|