ZLMediaKit/src/Player/PlayerBase.h

281 lines
7.1 KiB
C++
Raw Normal View History

2017-10-09 22:11:01 +08:00
/*
2020-04-04 20:30:09 +08:00
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
2017-09-27 16:20:30 +08:00
*
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
2017-09-27 16:20:30 +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.
2017-04-01 16:35:56 +08:00
*/
#ifndef SRC_PLAYER_PLAYERBASE_H_
#define SRC_PLAYER_PLAYERBASE_H_
2017-08-03 13:55:46 +08:00
#include <map>
2017-04-01 16:35:56 +08:00
#include <memory>
#include <string>
2017-04-25 11:35:41 +08:00
#include <functional>
#include "Network/Socket.h"
2017-08-03 13:55:46 +08:00
#include "Util/mini.h"
2018-09-19 12:34:29 +08:00
#include "Util/RingBuffer.h"
2018-10-21 21:21:14 +08:00
#include "Common/MediaSource.h"
2021-04-20 17:53:43 +08:00
#include "Common/MediaSink.h"
2018-10-30 14:59:42 +08:00
#include "Extension/Frame.h"
#include "Extension/Track.h"
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
2019-12-03 12:32:57 +08:00
class DemuxerBase : public TrackSource{
2018-10-25 15:45:38 +08:00
public:
2020-03-20 11:51:24 +08:00
typedef std::shared_ptr<DemuxerBase> Ptr;
/**
*
* @return
*/
virtual float getDuration() const { return 0;}
/**
* getTrack方法
* @param analysisMs
* @return
*/
virtual bool isInited(int analysisMs) { return true; }
2018-10-25 15:45:38 +08:00
};
class PlayerBase : public DemuxerBase, public mINI{
2017-04-01 16:35:56 +08:00
public:
2020-03-20 11:51:24 +08:00
typedef std::shared_ptr<PlayerBase> Ptr;
static Ptr createPlayer(const EventPoller::Ptr &poller,const string &strUrl);
2020-03-20 11:51:24 +08:00
PlayerBase();
virtual ~PlayerBase(){}
/**
*
* @param strUrl urlrtsp/rtmp
*/
virtual void play(const string &strUrl) {}
/**
*
* @param bPause
*/
virtual void pause(bool bPause) {}
/**
*
*/
virtual void teardown() {}
/**
*
* @param cb
*/
virtual void setOnShutdown( const function<void(const SockException &)> &cb) {}
/**
*
* @param cb
*/
virtual void setOnPlayResult( const function<void(const SockException &ex)> &cb) {}
2018-09-18 23:49:48 +08:00
2019-05-08 15:27:37 +08:00
/**
*
* @param cb
*/
virtual void setOnResume( const function<void()> &cb) {}
2020-03-20 11:51:24 +08:00
/**
* 0.0 ~ 1.0
* @return
*/
2018-10-23 16:41:25 +08:00
virtual float getProgress() const { return 0;}
2018-10-26 14:12:16 +08:00
/**
*
* @param fProgress 0.0 ~ 1.0
*/
2018-10-23 16:41:25 +08:00
virtual void seekTo(float fProgress) {}
2018-10-26 11:03:53 +08:00
2018-10-26 14:12:16 +08:00
/**
* MediaSourcertsp/rtmp代理
* @param src
*/
2020-10-24 23:30:06 +08:00
virtual void setMediaSource(const MediaSource::Ptr & src) {}
2018-10-26 14:12:16 +08:00
/**
* rtsp
* @param trackType TrackInvalid时为总丢包率
* @return
*/
2020-03-20 11:51:24 +08:00
virtual float getPacketLossRate(TrackType trackType) const {return 0; }
2019-12-03 16:10:02 +08:00
/**
* track
*/
vector<Track::Ptr> getTracks(bool trackReady = true) const override{
return vector<Track::Ptr>();
}
2017-04-01 16:35:56 +08:00
protected:
2018-10-23 16:41:25 +08:00
virtual void onShutdown(const SockException &ex) {}
virtual void onPlayResult(const SockException &ex) {}
2019-05-08 15:27:37 +08:00
/**
*
*/
virtual void onResume(){};
2017-04-01 16:35:56 +08:00
};
2019-12-03 16:10:02 +08:00
template<typename Parent,typename Delegate>
class PlayerImp : public Parent {
2017-04-01 16:35:56 +08:00
public:
2020-03-20 11:51:24 +08:00
typedef std::shared_ptr<PlayerImp> Ptr;
template<typename ...ArgsType>
PlayerImp(ArgsType &&...args):Parent(std::forward<ArgsType>(args)...){}
virtual ~PlayerImp(){}
void setOnShutdown(const function<void(const SockException &)> &cb) override {
if (_delegate) {
_delegate->setOnShutdown(cb);
}
_shutdownCB = cb;
}
void setOnPlayResult(const function<void(const SockException &ex)> &cb) override {
if (_delegate) {
_delegate->setOnPlayResult(cb);
}
_playResultCB = cb;
}
2017-04-01 16:35:56 +08:00
2019-05-08 15:27:37 +08:00
void setOnResume(const function<void()> &cb) override {
2019-12-03 16:10:02 +08:00
if (_delegate) {
_delegate->setOnResume(cb);
2019-05-08 15:27:37 +08:00
}
_resumeCB = cb;
}
bool isInited(int analysisMs) override{
2019-12-03 16:10:02 +08:00
if (_delegate) {
return _delegate->isInited(analysisMs);
2017-04-01 16:35:56 +08:00
}
2019-12-03 16:10:02 +08:00
return Parent::isInited(analysisMs);
2017-04-01 16:35:56 +08:00
}
2020-03-20 11:51:24 +08:00
float getDuration() const override {
if (_delegate) {
return _delegate->getDuration();
}
return Parent::getDuration();
}
2017-08-14 22:20:53 +08:00
float getProgress() const override{
2019-12-03 16:10:02 +08:00
if (_delegate) {
return _delegate->getProgress();
2017-04-01 16:35:56 +08:00
}
2019-12-03 16:10:02 +08:00
return Parent::getProgress();
2018-10-23 16:41:25 +08:00
}
2017-04-01 16:35:56 +08:00
void seekTo(float fProgress) override{
2019-12-03 16:10:02 +08:00
if (_delegate) {
return _delegate->seekTo(fProgress);
2017-04-01 16:35:56 +08:00
}
2019-12-03 16:10:02 +08:00
return Parent::seekTo(fProgress);
2018-10-23 16:41:25 +08:00
}
2018-09-18 21:40:26 +08:00
2020-10-24 23:30:06 +08:00
void setMediaSource(const MediaSource::Ptr & src) override {
2020-03-20 11:51:24 +08:00
if (_delegate) {
2020-10-24 23:30:06 +08:00
_delegate->setMediaSource(src);
2020-03-20 11:51:24 +08:00
}
_pMediaSrc = src;
2018-10-23 16:41:25 +08:00
}
2018-09-18 21:40:26 +08:00
2018-11-16 18:46:05 +08:00
vector<Track::Ptr> getTracks(bool trackReady = true) const override{
2020-03-20 11:51:24 +08:00
if (_delegate) {
return _delegate->getTracks(trackReady);
}
return Parent::getTracks(trackReady);
}
2020-09-27 11:32:49 +08:00
std::shared_ptr<SockInfo> getSockInfo() const{
return dynamic_pointer_cast<SockInfo>(_delegate);
}
2017-04-01 16:35:56 +08:00
protected:
2020-03-20 11:51:24 +08:00
void onShutdown(const SockException &ex) override {
if (_shutdownCB) {
_shutdownCB(ex);
_shutdownCB = nullptr;
}
}
void onPlayResult(const SockException &ex) override {
if(_playResultCB) {
_playResultCB(ex);
_playResultCB = nullptr;
}
}
void onResume() override{
2019-05-08 15:27:37 +08:00
if(_resumeCB){
_resumeCB();
}
}
2018-09-18 21:40:26 +08:00
protected:
2020-03-20 11:51:24 +08:00
function<void(const SockException &ex)> _shutdownCB;
function<void(const SockException &ex)> _playResultCB;
2019-05-08 15:27:37 +08:00
function<void()> _resumeCB;
2019-12-03 16:10:02 +08:00
std::shared_ptr<Delegate> _delegate;
2020-03-20 11:51:24 +08:00
MediaSource::Ptr _pMediaSrc;
2017-04-01 16:35:56 +08:00
};
2018-10-23 16:41:25 +08:00
2021-04-20 17:53:43 +08:00
class Demuxer : public PlayerBase, public TrackListener{
public:
2021-04-20 17:53:43 +08:00
Demuxer() = default;
~Demuxer() override = default;
2020-03-20 11:51:24 +08:00
/**
*
* RtspDemuxer对象时有些rtsp的sdp不包含sps pps信息
* sps的rtp包后才能完成
*
* RtmpDemuxer对象时是无法获取sps pps aac_cfg等这些信息
* inputRtmp后才会获取到这些信息
* @param analysisMs
* @return
*/
bool isInited(int analysisMs) override;
/**
* Track
* @return Track
*/
vector<Track::Ptr> getTracks(bool trackReady = true) const override;
/**
*
* @return ,
*/
float getDuration() const override;
/**
* track监听器
*/
2021-04-20 17:53:43 +08:00
void setTrackListener(TrackListener *listener);
protected:
2021-04-20 17:53:43 +08:00
void addTrack(const Track::Ptr &track) override;
void addTrackCompleted() override;
void resetTracks() override;
protected:
2021-04-20 17:53:43 +08:00
float _fDuration = 0;
Ticker _ticker;
2020-03-20 11:51:24 +08:00
AudioTrack::Ptr _audioTrack;
VideoTrack::Ptr _videoTrack;
2021-04-20 17:53:43 +08:00
TrackListener *_listener = nullptr;
};
2018-10-24 17:17:55 +08:00
} /* namespace mediakit */
2017-04-01 16:35:56 +08:00
#endif /* SRC_PLAYER_PLAYERBASE_H_ */