ZLMediaKit/src/Rtp/PSEncoder.cpp

45 lines
1.5 KiB
C++
Raw Normal View History

2020-09-06 18:09:31 +08:00
/*
2020-09-06 17:56:05 +08:00
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
*
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
2020-09-06 17:56:05 +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.
*/
#if defined(ENABLE_RTPPROXY)
2021-12-28 21:04:53 +08:00
2020-09-06 17:56:05 +08:00
#include "PSEncoder.h"
#include "Extension/H264.h"
2021-07-16 15:54:43 +08:00
#include "Rtsp/RtspMuxer.h"
2020-09-06 17:56:05 +08:00
using namespace toolkit;
2021-12-28 21:04:53 +08:00
namespace mediakit{
2020-10-24 23:33:13 +08:00
2021-12-28 21:04:53 +08:00
PSEncoderImp::PSEncoderImp(uint32_t ssrc, uint8_t payload_type) : MpegMuxer(true) {
2020-10-24 23:33:13 +08:00
GET_CONFIG(uint32_t,video_mtu,Rtp::kVideoMtuSize);
_rtp_encoder = std::make_shared<CommonRtpEncoder>(CodecInvalid, ssrc, video_mtu, 90000, payload_type, 0);
_rtp_encoder->setRtpRing(std::make_shared<RtpRing::RingType>());
_rtp_encoder->getRtpRing()->setDelegate(std::make_shared<RingDelegateHelper>([this](RtpPacket::Ptr rtp, bool is_key){
onRTP(std::move(rtp),is_key);
2020-10-24 23:33:13 +08:00
}));
InfoL << this << " " << printSSRC(_rtp_encoder->getSsrc());
}
PSEncoderImp::~PSEncoderImp() {
InfoL << this << " " << printSSRC(_rtp_encoder->getSsrc());
}
2021-12-28 21:04:53 +08:00
void PSEncoderImp::onWrite(std::shared_ptr<Buffer> buffer, uint32_t stamp, bool key_pos) {
if (!buffer) {
return;
}
_rtp_encoder->inputFrame(std::make_shared<FrameFromPtr>(buffer->data(), buffer->size(), stamp, stamp,0,key_pos));
2020-10-24 23:33:13 +08:00
}
2020-09-06 17:56:05 +08:00
}//namespace mediakit
2021-12-28 21:04:53 +08:00
2020-09-06 17:56:05 +08:00
#endif//defined(ENABLE_RTPPROXY)