ZLMediaKit/src/Rtmp/RtmpPlayerImp.h

96 lines
2.7 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_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;
2020-08-30 10:48:34 +08:00
RtmpPlayerImp(const EventPoller::Ptr &poller) : PlayerImp<RtmpPlayer, RtmpDemuxer>(poller) {};
~RtmpPlayerImp() override {
DebugL << endl;
}
float getProgress() const override {
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();
2020-08-30 10:48:34 +08:00
}
void seekTo(float fProgress) override {
fProgress = MAX(float(0), MIN(fProgress, float(1.0)));
seekToMilliSecond((uint32_t)(fProgress * getDuration() * 1000));
2020-08-30 10:48:34 +08:00
}
void seekTo(uint32_t seekPos) override {
2021-08-12 16:07:31 +08:00
uint32_t pos = MAX(float(0), MIN(seekPos, getDuration())) * 1000;
seekToMilliSecond(pos);
}
2019-03-27 18:41:52 +08:00
void play(const string &strUrl) override {
2020-08-30 10:48:34 +08:00
PlayerImp<RtmpPlayer, RtmpDemuxer>::play(strUrl);
}
2020-08-30 10:48:34 +08:00
2017-04-01 16:35:56 +08:00
private:
//派生类回调函数
bool onCheckMeta(const AMFValue &val) override {
2020-08-30 10:48:34 +08:00
_rtmp_src = dynamic_pointer_cast<RtmpMediaSource>(_pMediaSrc);
if (_rtmp_src) {
_rtmp_src->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
}
2020-08-30 10:48:34 +08:00
2021-02-04 17:58:51 +08:00
void onMediaData(RtmpPacket::Ptr chunkData) override {
if (!_delegate) {
//这个流没有metadata
_delegate.reset(new RtmpDemuxer());
}
_delegate->inputRtmp(chunkData);
2020-08-30 10:48:34 +08:00
if (_rtmp_src) {
if (!_set_meta_data && !chunkData->isCfgFrame()) {
2020-01-13 15:48:55 +08:00
_set_meta_data = true;
2020-08-30 10:48:34 +08:00
_rtmp_src->setMetaData(TitleMeta().getMetadata());
2020-01-13 15:48:55 +08:00
}
2021-02-04 17:58:51 +08:00
_rtmp_src->onWrite(std::move(chunkData));
2018-10-25 17:39:19 +08:00
}
2017-04-01 16:35:56 +08:00
}
2020-08-30 10:48:34 +08:00
2018-09-18 21:40:26 +08:00
private:
2020-08-30 10:48:34 +08:00
RtmpMediaSource::Ptr _rtmp_src;
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_ */