ZLMediaKit/src/RTP/RtpCodec.h

165 lines
3.4 KiB
C
Raw Normal View History

2018-10-18 23:48:00 +08:00
//
// Created by xzl on 2018/10/18.
//
#ifndef ZLMEDIAKIT_RTPCODEC_H
#define ZLMEDIAKIT_RTPCODEC_H
#include <memory>
#include "Util/RingBuffer.h"
#include "Rtsp/Rtsp.h"
#include "Player/PlayerBase.h"
using namespace std;
using namespace ZL::Util;
using namespace ZL::Player;
2018-10-23 11:38:56 +08:00
class RtpPacket : public CodecInfo {
2018-10-18 23:48:00 +08:00
public:
2018-10-23 11:09:21 +08:00
typedef std::shared_ptr<RtpPacket> Ptr;
2018-10-23 11:38:56 +08:00
TrackType getTrackType() const {
return type;
}
CodecId getCodecId() const {
return CodecInvalid;
}
public:
2018-10-23 11:09:21 +08:00
uint8_t interleaved;
uint8_t PT;
bool mark;
uint32_t length;
uint32_t timeStamp;
uint16_t sequence;
uint32_t ssrc;
uint8_t payload[1560];
uint8_t offset;
TrackType type;
};
class RtpRingInterface {
public:
typedef RingBuffer<RtpPacket::Ptr> RingType;
2018-10-23 18:39:17 +08:00
typedef std::shared_ptr<RtpRingInterface> Ptr;
2018-10-23 11:09:21 +08:00
RtpRingInterface(){}
virtual ~RtpRingInterface(){}
2018-10-23 18:39:17 +08:00
/**
* rtp环形缓存
* @return
*/
2018-10-23 11:09:21 +08:00
virtual RingType::Ptr getRtpRing() const = 0;
2018-10-23 18:39:17 +08:00
/**
* rtp环形缓存
* @param ring
*/
2018-10-23 11:09:21 +08:00
virtual void setRtpRing(const RingType::Ptr &ring) = 0;
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) = 0;
2018-10-23 11:09:21 +08:00
};
class RtpRing : public RtpRingInterface {
public:
typedef std::shared_ptr<RtpRing> Ptr;
2018-10-18 23:48:00 +08:00
2018-10-23 11:09:21 +08:00
RtpRing(){
2018-10-23 16:41:25 +08:00
_rtpRing = std::make_shared<RingType>();
2018-10-18 23:48:00 +08:00
}
2018-10-23 11:09:21 +08:00
virtual ~RtpRing(){}
2018-10-18 23:48:00 +08:00
2018-10-23 11:09:21 +08:00
RingType::Ptr getRtpRing() const override {
2018-10-18 23:48:00 +08:00
return _rtpRing;
}
2018-10-23 11:09:21 +08:00
void setRtpRing(const RingType::Ptr &ring) override {
_rtpRing = ring;
2018-10-18 23:48:00 +08:00
}
2018-10-23 11:09:21 +08:00
2018-10-23 18:39:17 +08:00
bool inputRtp(const RtpPacket::Ptr &rtp, bool key_pos) override{
2018-10-18 23:48:00 +08:00
_rtpRing->write(rtp,key_pos);
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 _rtpRing;
2018-10-18 23:48:00 +08:00
};
2018-10-21 21:45:44 +08:00
class RtpInfo{
2018-10-18 23:48:00 +08:00
public:
2018-10-21 21:45:44 +08:00
typedef std::shared_ptr<RtpInfo> Ptr;
2018-10-18 23:48:00 +08:00
2018-10-21 21:45:44 +08:00
RtpInfo(uint32_t ui32Ssrc,
2018-10-23 11:38:56 +08:00
uint32_t ui32MtuSize,
uint32_t ui32SampleRate,
uint8_t ui8PlayloadType,
uint8_t ui8Interleaved) {
if(ui32Ssrc == 0){
ui32Ssrc = ((uint64_t)this) & 0xFFFFFFFF;
}
2018-10-24 15:43:52 +08:00
_ui32Ssrc = ui32Ssrc;
_ui32SampleRate = ui32SampleRate;
_ui32MtuSize = ui32MtuSize;
_ui8PlayloadType = ui8PlayloadType;
_ui8Interleaved = ui8Interleaved;
2018-10-18 23:48:00 +08:00
}
2018-10-21 21:45:44 +08:00
virtual ~RtpInfo(){}
2018-10-18 23:48:00 +08:00
int getInterleaved() const {
2018-10-24 15:43:52 +08:00
return _ui8Interleaved;
2018-10-18 23:48:00 +08:00
}
int getPlayloadType() const {
2018-10-24 15:43:52 +08:00
return _ui8PlayloadType;
2018-10-18 23:48:00 +08:00
}
int getSampleRate() const {
2018-10-24 15:43:52 +08:00
return _ui32SampleRate;
2018-10-18 23:48:00 +08:00
}
uint32_t getSsrc() const {
2018-10-24 15:43:52 +08:00
return _ui32Ssrc;
2018-10-18 23:48:00 +08:00
}
uint16_t getSeqence() const {
2018-10-24 15:43:52 +08:00
return _ui16Sequence;
2018-10-18 23:48:00 +08:00
}
uint32_t getTimestamp() const {
2018-10-24 15:43:52 +08:00
return _ui32TimeStamp;
2018-10-18 23:48:00 +08:00
}
uint32_t getMtuSize() const {
2018-10-24 15:43:52 +08:00
return _ui32MtuSize;
2018-10-18 23:48:00 +08:00
}
protected:
2018-10-24 15:43:52 +08:00
uint32_t _ui32Ssrc;
uint32_t _ui32SampleRate;
uint32_t _ui32MtuSize;
uint8_t _ui8PlayloadType;
uint8_t _ui8Interleaved;
uint16_t _ui16Sequence = 0;
uint32_t _ui32TimeStamp = 0;
2018-10-18 23:48:00 +08:00
};
2018-10-24 12:01:40 +08:00
class RtpCodec : public RtpRing, public FrameRingInterfaceDelegate , public CodecInfo , public ResourcePoolHelper<RtpPacket>{
2018-10-23 11:09:21 +08:00
public:
typedef std::shared_ptr<RtpCodec> Ptr;
RtpCodec(){}
virtual ~RtpCodec(){}
};
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