ZLMediaKit/src/Rtp/PSEncoder.cpp

54 lines
1.8 KiB
C++
Raw Normal View History

2020-09-06 18:09:31 +08:00
/*
2023-12-09 16:23:51 +08:00
* Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved.
2020-09-06 17:56:05 +08:00
*
2023-12-09 16:23:51 +08:00
* This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit).
2020-09-06 17:56:05 +08:00
*
2023-12-09 16:23:51 +08:00
* Use of this source code is governed by MIT-like license that can be found in the
2020-09-06 17:56:05 +08:00
* 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 "Common/config.h"
#include "Extension/CommonRtp.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
PSEncoderImp::PSEncoderImp(uint32_t ssrc, uint8_t payload_type, bool ps_or_ts) : MpegMuxer(ps_or_ts) {
GET_CONFIG(uint32_t, s_video_mtu, Rtp::kVideoMtuSize);
2023-12-09 16:23:51 +08:00
_rtp_encoder = std::make_shared<CommonRtpEncoder>();
auto video_mtu = s_video_mtu;
if (!ps_or_ts) {
// 确保ts rtp负载部分长度是188的倍数
video_mtu = RtpPacket::kRtpHeaderSize + (s_video_mtu - (s_video_mtu % 188));
if (video_mtu > s_video_mtu) {
video_mtu -= 188;
}
}
2023-12-09 22:34:22 +08:00
_rtp_encoder->setRtpInfo(ssrc, video_mtu, 90000, payload_type);
2023-12-09 16:23:51 +08:00
auto ring = std::make_shared<RtpRing::RingType>();
ring->setDelegate(std::make_shared<RingDelegateHelper>([this](RtpPacket::Ptr rtp, bool is_key) { onRTP(std::move(rtp), is_key); }));
_rtp_encoder->setRtpRing(std::move(ring));
InfoL << this << " " << ssrc;
2020-10-24 23:33:13 +08:00
}
PSEncoderImp::~PSEncoderImp() {
2023-12-09 16:23:51 +08:00
InfoL << this;
2020-10-24 23:33:13 +08:00
}
2022-08-08 17:13:39 +08:00
void PSEncoderImp::onWrite(std::shared_ptr<Buffer> buffer, uint64_t stamp, bool key_pos) {
2021-12-28 21:04:53 +08:00
if (!buffer) {
return;
}
2023-12-09 16:23:51 +08:00
_rtp_encoder->inputFrame(std::make_shared<FrameFromPtr>(CodecH264/*只用于识别为视频*/, 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)