Commit 1cb5c9a7 by xiongziliang

规范化命名

parent b6c64fb4
...@@ -35,7 +35,7 @@ ...@@ -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;
......
// //
// 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{
......
...@@ -277,16 +277,16 @@ private: ...@@ -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
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论