ZLMediaKit/src/Rtsp/RtpCodec.h

133 lines
3.0 KiB
C++
Raw Normal View History

2018-10-25 10:00:17 +08:00
/*
2020-04-04 20:30:09 +08:00
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
2018-10-25 10:00:17 +08:00
*
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
2018-10-25 10:00:17 +08:00
*
2020-04-04 20:30:09 +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.
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 "Util/RingBuffer.h"
#include "Player/PlayerBase.h"
2018-10-24 17:17:55 +08:00
using namespace toolkit;
2018-10-18 23:48:00 +08:00
2018-10-24 17:17:55 +08:00
namespace mediakit{
2018-10-18 23:48:00 +08:00
2019-12-26 09:43:44 +08:00
class RtpRing{
2018-10-23 11:09:21 +08:00
public:
2019-12-26 09:43:44 +08:00
typedef std::shared_ptr<RtpRing> Ptr;
2018-10-23 11:09:21 +08:00
typedef RingBuffer<RtpPacket::Ptr> RingType;
2019-12-26 09:43:44 +08:00
RtpRing(){}
virtual ~RtpRing(){}
2018-10-23 18:39:17 +08:00
/**
* rtp环形缓存
* @return
*/
2019-12-26 09:43:44 +08:00
virtual RingType::Ptr getRtpRing() const {
return _rtpRing;
}
2018-10-23 18:39:17 +08:00
/**
* rtp环形缓存
* @param ring
*/
2019-12-26 09:43:44 +08:00
virtual void setRtpRing(const RingType::Ptr &ring){
_rtpRing = ring;
}
2018-10-23 18:39:17 +08:00
/**
* rtp包
* @param rtp rtp包
* @param key_pos rtp包
* @return rtp包
*/
2019-12-26 09:43:44 +08:00
virtual bool inputRtp(const RtpPacket::Ptr &rtp, bool key_pos){
2018-10-25 11:53:45 +08:00
if(_rtpRing){
_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-31 09:36:12 +08:00
class RtpInfo : public ResourcePoolHelper<RtpPacket>{
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,
2020-05-25 13:51:00 +08:00
uint8_t ui8PayloadType,
2018-10-23 11:38:56 +08:00
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;
2020-05-25 13:51:00 +08:00
_ui8PayloadType = ui8PayloadType;
2018-10-24 15:43:52 +08:00
_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
}
2020-05-25 13:51:00 +08:00
int getPayloadType() const {
return _ui8PayloadType;
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
}
RtpPacket::Ptr makeRtp(TrackType type,const void *data, size_t len, bool mark, uint32_t stamp);
2020-08-01 10:22:12 +08:00
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;
2020-05-25 13:51:00 +08:00
uint8_t _ui8PayloadType;
2018-10-24 15:43:52 +08:00
uint8_t _ui8Interleaved;
uint16_t _ui16Sequence = 0;
uint32_t _ui32TimeStamp = 0;
2018-10-18 23:48:00 +08:00
};
2019-12-25 20:07:42 +08:00
class RtpCodec : public RtpRing, public FrameDispatcher , public CodecInfo{
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-24 17:17:55 +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