ZLMediaKit/src/Rtmp/RtmpPlayerImp.h

98 lines
3.3 KiB
C++
Raw Normal View History

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
*
2019-05-08 15:40:07 +08:00
* Copyright (c) 2016-2019 xiongziliang <771730766@qq.com>
2017-09-27 16:20:30 +08:00
*
* 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_RTMP_RTMPPLAYERIMP_H_
#define SRC_RTMP_RTMPPLAYERIMP_H_
#include <memory>
2017-04-25 11:35:41 +08:00
#include <functional>
2017-05-02 17:15:12 +08:00
#include "Common/config.h"
2017-04-01 16:35:56 +08:00
#include "RtmpPlayer.h"
2018-09-18 21:40:26 +08:00
#include "RtmpMediaSource.h"
2019-06-28 17:30:13 +08:00
#include "RtmpDemuxer.h"
2017-04-25 11:35:41 +08:00
#include "Poller/Timer.h"
2017-04-01 16:35:56 +08:00
#include "Util/TimeTicker.h"
2018-10-24 17:17:55 +08:00
using namespace toolkit;
2019-03-27 18:56:49 +08:00
using namespace mediakit::Client;
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
2018-10-24 18:09:54 +08:00
class RtmpPlayerImp: public PlayerImp<RtmpPlayer,RtmpDemuxer> {
2017-04-01 16:35:56 +08:00
public:
typedef std::shared_ptr<RtmpPlayerImp> Ptr;
RtmpPlayerImp(const EventPoller::Ptr &poller) : PlayerImp<RtmpPlayer,RtmpDemuxer>(poller){};
2018-03-01 11:49:06 +08:00
virtual ~RtmpPlayerImp(){
DebugL<<endl;
};
2017-08-14 22:20:53 +08:00
float getProgress() const override{
2017-04-01 16:35:56 +08:00
if(getDuration() > 0){
2018-10-26 14:12:16 +08:00
return getProgressMilliSecond() / (getDuration() * 1000);
2017-04-01 16:35:56 +08:00
}
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)));
2018-10-26 14:12:16 +08:00
seekToMilliSecond(fProgress * getDuration() * 1000);
2017-04-01 16:35:56 +08:00
};
2019-03-27 18:41:52 +08:00
void play(const string &strUrl) override {
PlayerImp<RtmpPlayer,RtmpDemuxer>::play(strUrl);
}
2017-04-01 16:35:56 +08:00
private:
//派生类回调函数
bool onCheckMeta(const AMFValue &val) override {
2018-10-24 15:43:52 +08:00
_pRtmpMediaSrc = dynamic_pointer_cast<RtmpMediaSource>(_pMediaSrc);
if(_pRtmpMediaSrc){
2019-12-25 11:04:12 +08:00
_pRtmpMediaSrc->setMetaData(val);
2020-01-13 15:48:55 +08:00
_set_meta_data = true;
2018-09-18 21:40:26 +08:00
}
2019-12-26 12:09:35 +08:00
_delegate.reset(new RtmpDemuxer);
_delegate->loadMetaData(val);
2018-10-25 17:39:19 +08:00
return true;
2017-04-01 16:35:56 +08:00
}
2017-12-04 23:55:09 +08:00
void onMediaData(const RtmpPacket::Ptr &chunkData) override {
2018-10-24 15:43:52 +08:00
if(_pRtmpMediaSrc){
2020-01-13 15:48:55 +08:00
if(!_set_meta_data && !chunkData->isCfgFrame()){
_set_meta_data = true;
_pRtmpMediaSrc->setMetaData(TitleMeta().getMetadata());
}
2018-10-25 16:55:48 +08:00
_pRtmpMediaSrc->onWrite(chunkData);
2018-10-25 17:39:19 +08:00
}
2019-12-03 16:10:02 +08:00
if(!_delegate){
//这个流没有metadata
2019-12-03 16:10:02 +08:00
_delegate.reset(new RtmpDemuxer());
2019-02-28 18:03:49 +08:00
}
2019-12-03 16:10:02 +08:00
_delegate->inputRtmp(chunkData);
2017-04-01 16:35:56 +08:00
}
2018-09-18 21:40:26 +08:00
private:
2018-10-24 15:43:52 +08:00
RtmpMediaSource::Ptr _pRtmpMediaSrc;
2020-01-13 15:48:55 +08:00
bool _set_meta_data = false;
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_RTMP_RTMPPLAYERIMP_H_ */