2017-10-09 22:11:01 +08:00
|
|
|
|
/*
|
2017-09-27 16:20:30 +08:00
|
|
|
|
* MIT License
|
2017-04-01 16:35:56 +08:00
|
|
|
|
*
|
2017-09-27 16:20:30 +08:00
|
|
|
|
* Copyright (c) 2016 xiongziliang <771730766@qq.com>
|
|
|
|
|
*
|
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
|
* SOFTWARE.
|
2017-04-01 16:35:56 +08:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef SRC_RTSPPLAYER_RTSPPLAYER_H_TXT_
|
|
|
|
|
#define SRC_RTSPPLAYER_RTSPPLAYER_H_TXT_
|
2017-04-25 11:35:41 +08:00
|
|
|
|
|
2017-04-01 16:35:56 +08:00
|
|
|
|
#include <string>
|
2017-04-25 11:35:41 +08:00
|
|
|
|
#include <memory>
|
|
|
|
|
#include "Rtsp.h"
|
2017-04-01 16:35:56 +08:00
|
|
|
|
#include "RtspSession.h"
|
2017-04-25 11:35:41 +08:00
|
|
|
|
#include "RtspMediaSource.h"
|
|
|
|
|
#include "Player/PlayerBase.h"
|
2017-04-01 16:35:56 +08:00
|
|
|
|
#include "Util/util.h"
|
2017-04-25 11:35:41 +08:00
|
|
|
|
#include "Util/logger.h"
|
2017-04-01 16:35:56 +08:00
|
|
|
|
#include "Util/TimeTicker.h"
|
2017-04-25 11:35:41 +08:00
|
|
|
|
#include "Poller/Timer.h"
|
|
|
|
|
#include "Network/Socket.h"
|
|
|
|
|
#include "Network/TcpClient.h"
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
|
|
|
|
using namespace std;
|
2018-10-24 17:17:55 +08:00
|
|
|
|
using namespace toolkit;
|
2017-04-25 11:35:41 +08:00
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
namespace mediakit {
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
|
|
|
|
//实现了rtsp播放器协议部分的功能
|
|
|
|
|
class RtspPlayer: public PlayerBase,public TcpClient {
|
|
|
|
|
public:
|
|
|
|
|
typedef std::shared_ptr<RtspPlayer> Ptr;
|
2017-08-03 13:55:46 +08:00
|
|
|
|
|
2017-04-01 16:35:56 +08:00
|
|
|
|
RtspPlayer();
|
|
|
|
|
virtual ~RtspPlayer(void);
|
2017-08-03 13:55:46 +08:00
|
|
|
|
void play(const char* strUrl) override;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
void pause(bool bPause) override;
|
|
|
|
|
void teardown() override;
|
2018-10-26 11:03:53 +08:00
|
|
|
|
float getRtpLossRate(TrackType type) const override;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
protected:
|
|
|
|
|
//派生类回调函数
|
2018-10-26 09:56:29 +08:00
|
|
|
|
virtual bool onCheckSDP(const string &strSdp, const SdpAttr &sdpAttr) = 0;
|
|
|
|
|
virtual void onRecvRTP(const RtpPacket::Ptr &pRtppt, const SdpTrack::Ptr &track) = 0;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
float getProgressTime() const;
|
|
|
|
|
void seekToTime(float fTime);
|
|
|
|
|
private:
|
2018-07-02 15:43:37 +08:00
|
|
|
|
void onShutdown_l(const SockException &ex);
|
|
|
|
|
void onRecvRTP_l(const RtpPacket::Ptr &pRtppt, int iTrackidx);
|
2018-10-26 09:56:29 +08:00
|
|
|
|
void onRecvRTP_l(const RtpPacket::Ptr &pRtppt, const SdpTrack::Ptr &track);
|
2018-07-02 15:43:37 +08:00
|
|
|
|
void onPlayResult_l(const SockException &ex);
|
|
|
|
|
|
2018-07-05 18:48:08 +08:00
|
|
|
|
int getTrackIndexByControlSuffix(const string &controlSuffix) const;
|
|
|
|
|
int getTrackIndexByInterleaved(int interleaved) const;
|
|
|
|
|
int getTrackIndexByTrackType(TrackType trackId) const;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2017-08-03 13:55:46 +08:00
|
|
|
|
void play(const char* strUrl, const char *strUser, const char *strPwd, eRtpType eType);
|
2017-04-01 16:35:56 +08:00
|
|
|
|
void onConnect(const SockException &err) override;
|
2018-02-23 15:36:51 +08:00
|
|
|
|
void onRecv(const Buffer::Ptr &pBuf) override;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
void onErr(const SockException &ex) override;
|
|
|
|
|
|
2018-07-02 15:43:37 +08:00
|
|
|
|
void handleResSETUP(const Parser &parser, unsigned int uiTrackIndex);
|
|
|
|
|
void handleResDESCRIBE(const Parser &parser);
|
|
|
|
|
bool handleAuthenticationFailure(const string &wwwAuthenticateParamsStr);
|
|
|
|
|
void handleResPAUSE(const Parser &parser, bool bPause);
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
|
|
|
|
//发数据给服务器
|
2018-07-02 15:43:37 +08:00
|
|
|
|
int onProcess(const char* strBuf);
|
2017-04-01 16:35:56 +08:00
|
|
|
|
//生成rtp包结构体
|
2018-07-02 15:43:37 +08:00
|
|
|
|
void splitRtp(unsigned char *pucData, unsigned int uiLen);
|
|
|
|
|
//处理一个rtp包
|
|
|
|
|
bool handleOneRtp(int iTrackidx, unsigned char *ucData, unsigned int uiLen);
|
|
|
|
|
|
2017-04-01 16:35:56 +08:00
|
|
|
|
//发送SETUP命令
|
2018-07-02 15:43:37 +08:00
|
|
|
|
bool sendSetup(unsigned int uiTrackIndex);
|
|
|
|
|
bool sendPause(bool bPause,float fTime);
|
2017-04-01 16:35:56 +08:00
|
|
|
|
bool sendOptions();
|
2018-07-02 15:43:37 +08:00
|
|
|
|
bool sendDescribe();
|
|
|
|
|
bool sendRtspRequest(const string &cmd, const string &url ,const StrCaseMap &header = StrCaseMap());
|
|
|
|
|
private:
|
2018-10-24 15:43:52 +08:00
|
|
|
|
string _strUrl;
|
2018-10-26 09:56:29 +08:00
|
|
|
|
|
|
|
|
|
SdpAttr _sdpAttr;
|
|
|
|
|
vector<SdpTrack::Ptr> _aTrackInfo;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2018-10-24 15:43:52 +08:00
|
|
|
|
function<void(const Parser&)> _onHandshake;
|
|
|
|
|
RtspMediaSource::PoolType _pktPool;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2018-10-24 15:43:52 +08:00
|
|
|
|
uint8_t *_pucRtpBuf = nullptr;
|
|
|
|
|
unsigned int _uiRtpBufLen = 0;
|
|
|
|
|
Socket::Ptr _apUdpSock[2];
|
2017-04-01 16:35:56 +08:00
|
|
|
|
//rtsp info
|
2018-10-24 15:43:52 +08:00
|
|
|
|
string _strSession;
|
|
|
|
|
unsigned int _uiCseq = 1;
|
|
|
|
|
uint32_t _aui32SsrcErrorCnt[2] = { 0, 0 };
|
|
|
|
|
string _strContentBase;
|
|
|
|
|
eRtpType _eType = RTP_TCP;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
/* RTP包排序所用参数 */
|
2018-10-24 15:43:52 +08:00
|
|
|
|
uint16_t _aui16LastSeq[2] = { 0 , 0 };
|
|
|
|
|
uint64_t _aui64SeqOkCnt[2] = { 0 , 0};
|
|
|
|
|
bool _abSortStarted[2] = { 0 , 0};
|
|
|
|
|
map<uint32_t , RtpPacket::Ptr> _amapRtpSort[2];
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
|
|
|
|
/* 丢包率统计需要用到的参数 */
|
2018-10-24 15:43:52 +08:00
|
|
|
|
uint16_t _aui16FirstSeq[2] = { 0 , 0};
|
|
|
|
|
uint16_t _aui16NowSeq[2] = { 0 , 0 };
|
|
|
|
|
uint64_t _aui64RtpRecv[2] = { 0 , 0};
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
|
|
|
|
//超时功能实现
|
2018-10-24 15:43:52 +08:00
|
|
|
|
Ticker _rtpTicker;
|
|
|
|
|
std::shared_ptr<Timer> _pPlayTimer;
|
|
|
|
|
std::shared_ptr<Timer> _pRtpTimer;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
//心跳定时器
|
2018-10-24 15:43:52 +08:00
|
|
|
|
std::shared_ptr<Timer> _pBeatTimer;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
|
|
|
|
//播放进度控制
|
2018-10-24 15:43:52 +08:00
|
|
|
|
float _fSeekTo = 0;
|
|
|
|
|
double _adFistStamp[2] = {0,0};
|
|
|
|
|
double _adNowStamp[2] = {0,0};
|
|
|
|
|
Ticker _aNowStampTicker[2];
|
2017-04-01 16:35:56 +08:00
|
|
|
|
};
|
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
} /* namespace mediakit */
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
|
|
|
|
#endif /* SRC_RTSPPLAYER_RTSPPLAYER_H_TXT_ */
|