mirror of
https://gitee.com/xia-chu/ZLMediaKit.git
synced 2026-05-07 03:17:49 +08:00
* 优化MultiMediaSourceMuxer头文件包含 * 将MediaSinkDelegate和Demux移到MediaSink中 * MediaSource头文件重构, 独立出PacketCache.h 精简Frame和Track的头文件 * Rtmp头文件重构 * Rtsp头文件重构 * webrtc头文件重构 * 规范.h头文件包含,并将其移到.cpp中: - 尽量不包含Common\config.h - Util\File.h - Rtsp/RtspPlayer.h - Rtmp/RtmpPlayer.h * 删除多余的Stamp.h和Base64包含
47 lines
1.5 KiB
C++
47 lines
1.5 KiB
C++
/*
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
|
*
|
|
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
|
|
*
|
|
* 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)
|
|
|
|
#include "PSEncoder.h"
|
|
#include "Common/config.h"
|
|
#include "Extension/H264.h"
|
|
#include "Extension/CommonRtp.h"
|
|
#include "Rtsp/RtspMuxer.h"
|
|
|
|
using namespace toolkit;
|
|
|
|
namespace mediakit{
|
|
|
|
PSEncoderImp::PSEncoderImp(uint32_t ssrc, uint8_t payload_type) : MpegMuxer(true) {
|
|
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);
|
|
}));
|
|
InfoL << this << " " << printSSRC(_rtp_encoder->getSsrc());
|
|
}
|
|
|
|
PSEncoderImp::~PSEncoderImp() {
|
|
InfoL << this << " " << printSSRC(_rtp_encoder->getSsrc());
|
|
}
|
|
|
|
void PSEncoderImp::onWrite(std::shared_ptr<Buffer> buffer, uint64_t stamp, bool key_pos) {
|
|
if (!buffer) {
|
|
return;
|
|
}
|
|
_rtp_encoder->inputFrame(std::make_shared<FrameFromPtr>(buffer->data(), buffer->size(), stamp, stamp,0,key_pos));
|
|
}
|
|
|
|
}//namespace mediakit
|
|
|
|
#endif//defined(ENABLE_RTPPROXY)
|