规范化命名

This commit is contained in:
xiongziliang 2018-10-23 22:18:25 +08:00
parent b6c64fb4ed
commit 1cb5c9a7ff
3 changed files with 5 additions and 5 deletions

View File

@ -35,7 +35,7 @@
#include "RTP/RtpMakerAAC.h" #include "RTP/RtpMakerAAC.h"
#include "RTP/RtpMakerH264.h" #include "RTP/RtpMakerH264.h"
#include "Rtsp/RtspToRtmpMediaSource.h" #include "Rtsp/RtspToRtmpMediaSource.h"
#include "Rtsp/RtspEncoder.h" #include "Rtsp/RtspSdp.h"
#include "Util/TimeTicker.h" #include "Util/TimeTicker.h"
using namespace std; using namespace std;

View File

@ -1,7 +1,7 @@
// //
// Created by xzl on 2018/10/23. // Created by xzl on 2018/10/23.
// //
#include "RtspEncoder.h" #include "RtspSdp.h"
namespace ZL{ namespace ZL{
namespace Rtsp{ namespace Rtsp{

View File

@ -277,16 +277,16 @@ private:
/** /**
* rtsp生成器 * rtsp生成器
*/ */
class RtspEncoder : public FrameRingInterface , public RtpRingInterface{ class RtspMaker : public FrameRingInterface , public RtpRingInterface{
public: public:
/** /**
* *
*/ */
RtspEncoder(){ RtspMaker(){
_rtpRing = std::make_shared<RtpRingInterface::RingType>(); _rtpRing = std::make_shared<RtpRingInterface::RingType>();
_frameRing = std::make_shared<FrameRingInterface::RingType>(); _frameRing = std::make_shared<FrameRingInterface::RingType>();
} }
virtual ~RtspEncoder(){} virtual ~RtspMaker(){}
/** /**
* track * track