ZLMediaKit/src/Rtsp/RtspPlayerImp.h

66 lines
1.5 KiB
C
Raw Normal View History

2017-04-01 16:35:56 +08:00
/*
* RtspParserTester.h
*
* Created on: 201695
* Author: xzl
*/
#ifndef SRC_RTP_RTPPARSERTESTER_H_
#define SRC_RTP_RTPPARSERTESTER_H_
#include <memory>
2017-04-25 11:35:41 +08:00
#include <algorithm>
#include <functional>
2017-05-02 17:15:12 +08:00
#include "Common/config.h"
2017-04-25 11:35:41 +08:00
#include "RtpParser.h"
#include "RtspPlayer.h"
#include "Poller/Timer.h"
2017-04-01 16:35:56 +08:00
#include "Util/TimeTicker.h"
using namespace std;
using namespace ZL::Util;
using namespace ZL::Player;
namespace ZL {
namespace Rtsp {
class RtspPlayerImp: public PlayerImp<RtspPlayer,RtpParser> {
public:
typedef std::shared_ptr<RtspPlayerImp> Ptr;
RtspPlayerImp();
virtual ~RtspPlayerImp();
2017-08-14 22:20:53 +08:00
float getProgress() const override{
2017-04-01 16:35:56 +08:00
if(getDuration() > 0){
return getProgressTime() / getDuration();
}
2017-08-14 22:20:53 +08:00
return PlayerBase::getProgress();
2017-04-01 16:35:56 +08:00
};
void seekTo(float fProgress) override{
fProgress = MAX(float(0),MIN(fProgress,float(1.0)));
seekToTime(fProgress * getDuration());
};
private:
//派生类回调函数
bool onCheckSDP(const string &sdp, const RtspTrack *track, int trackCnt) override {
try {
m_parser.reset(new RtpParser(sdp));
m_parser->setOnVideoCB(m_onGetVideoCB);
m_parser->setOnAudioCB(m_onGetAudioCB);
return true;
} catch (std::exception &ex) {
WarnL << ex.what();
return false;
}
}
void onRecvRTP(const RtpPacket::Ptr &rtppt, const RtspTrack &track) override {
m_parser->inputRtp(*rtppt);
}
};
} /* namespace Rtsp */
} /* namespace ZL */
#endif /* SRC_RTP_RTPPARSERTESTER_H_ */