ZLMediaKit/src/Rtsp/RtpCodec.h

115 lines
3.0 KiB
C++
Raw Normal View History

2018-10-25 10:00:17 +08:00
/*
2023-12-09 16:23:51 +08:00
* Copyright (c) 2016-present The ZLMediaKit project authors. All Rights Reserved.
2018-10-25 10:00:17 +08:00
*
2023-12-09 16:23:51 +08:00
* This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit).
2018-10-25 10:00:17 +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-04-04 20:30:09 +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.
2018-10-25 10:00:17 +08:00
*/
2018-10-18 23:48:00 +08:00
#ifndef ZLMEDIAKIT_RTPCODEC_H
#define ZLMEDIAKIT_RTPCODEC_H
#include <memory>
#include "Extension/Frame.h"
2018-10-18 23:48:00 +08:00
#include "Util/RingBuffer.h"
#include "Rtsp/Rtsp.h"
2018-10-18 23:48:00 +08:00
namespace mediakit {
2018-10-18 23:48:00 +08:00
class RtpRing {
2018-10-23 11:09:21 +08:00
public:
using Ptr = std::shared_ptr<RtpRing>;
using RingType = toolkit::RingBuffer<RtpPacket::Ptr>;
2018-10-23 11:09:21 +08:00
virtual ~RtpRing() = default;
2018-10-23 18:39:17 +08:00
/**
* rtp环形缓存
* @param ring
*/
2023-12-09 16:23:51 +08:00
void setRtpRing(RingType::Ptr ring) {
_ring = std::move(ring);
2019-12-26 09:43:44 +08:00
}
2018-10-23 18:39:17 +08:00
/**
* rtp包
* @param rtp rtp包
* @param key_pos rtp包
* @return rtp包
*/
virtual bool inputRtp(const RtpPacket::Ptr &rtp, bool key_pos) {
if (_ring) {
_ring->write(rtp, key_pos);
2018-10-25 11:53:45 +08:00
}
2018-10-23 18:39:17 +08:00
return key_pos;
2018-10-18 23:48:00 +08:00
}
2018-10-23 11:09:21 +08:00
protected:
RingType::Ptr _ring;
2018-10-18 23:48:00 +08:00
};
class RtpInfo {
2018-10-18 23:48:00 +08:00
public:
2021-02-05 11:28:50 +08:00
using Ptr = std::shared_ptr<RtpInfo>;
2018-10-18 23:48:00 +08:00
2023-12-09 22:34:22 +08:00
RtpInfo(uint32_t ssrc, size_t mtu_size, uint32_t sample_rate, uint8_t pt, uint8_t interleaved, int track_index) {
2021-01-31 19:19:24 +08:00
if (ssrc == 0) {
ssrc = ((uint64_t) this) & 0xFFFFFFFF;
2018-10-23 11:38:56 +08:00
}
2021-01-31 19:19:24 +08:00
_pt = pt;
_ssrc = ssrc;
_mtu_size = mtu_size;
_sample_rate = sample_rate;
_interleaved = interleaved;
2023-12-09 22:34:22 +08:00
_track_index = track_index;
2018-10-18 23:48:00 +08:00
}
2021-01-31 19:19:24 +08:00
//返回rtp负载最大长度
size_t getMaxSize() const {
return _mtu_size - RtpPacket::kRtpHeaderSize;
2018-10-18 23:48:00 +08:00
}
2022-08-08 17:13:39 +08:00
RtpPacket::Ptr makeRtp(TrackType type,const void *data, size_t len, bool mark, uint64_t stamp);
2020-08-01 10:22:12 +08:00
2021-01-31 19:19:24 +08:00
private:
uint8_t _pt;
uint8_t _interleaved;
uint16_t _seq = 0;
uint32_t _ssrc;
uint32_t _sample_rate;
2023-12-09 22:34:22 +08:00
int _track_index;
2021-01-31 19:19:24 +08:00
size_t _mtu_size;
2018-10-18 23:48:00 +08:00
};
2023-12-09 16:23:51 +08:00
class RtpCodec : public RtpRing, public FrameDispatcher {
2018-10-23 11:09:21 +08:00
public:
using Ptr = std::shared_ptr<RtpCodec>;
2023-12-09 22:34:22 +08:00
void setRtpInfo(uint32_t ssrc, size_t mtu_size, uint32_t sample_rate, uint8_t pt, uint8_t interleaved = 0, int track_index = 0) {
_rtp_info.reset(new RtpInfo(ssrc, mtu_size, sample_rate, pt, interleaved, track_index));
2023-12-09 16:23:51 +08:00
}
2018-10-18 23:48:00 +08:00
2023-12-09 16:23:51 +08:00
RtpInfo &getRtpInfo() { return *_rtp_info; }
2018-10-18 23:48:00 +08:00
enum {
RTP_ENCODER_PKT_DUR_MS = 1 // 主要应用于g711 rtp 打包器每个包的时间长度option_value 为int*, option_len 为4
};
/**
* @brief rtp打包器与解包器的相关参数g711 rtp 使setsockopt
*
* @param opt
* @param param
*/
virtual void setOpt(int opt, const toolkit::Any &param) {};
2023-12-09 16:23:51 +08:00
private:
std::unique_ptr<RtpInfo> _rtp_info;
};
2018-10-18 23:48:00 +08:00
2023-12-09 16:23:51 +08:00
}//namespace mediakit
2018-10-18 23:48:00 +08:00
2018-10-23 11:38:56 +08:00
2018-10-18 23:48:00 +08:00
#endif //ZLMEDIAKIT_RTPCODEC_H