ZLMediaKit/src/Player/MediaPlayer.cpp

68 lines
1.8 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/xiongziliang/ZLMediaKit).
*
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
*/
2017-04-25 11:35:41 +08:00
#include <algorithm>
#include "MediaPlayer.h"
2017-04-01 16:35:56 +08:00
#include "Rtmp/RtmpPlayerImp.h"
#include "Rtsp/RtspPlayerImp.h"
2018-10-24 17:17:55 +08:00
using namespace toolkit;
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
MediaPlayer::MediaPlayer(const EventPoller::Ptr &poller) {
_poller = poller ? poller : EventPollerPool::Instance().getPoller();
2017-04-01 16:35:56 +08:00
}
MediaPlayer::~MediaPlayer() {
}
static void setOnCreateSocket_l(const std::shared_ptr<PlayerBase> &delegate, const Socket::onCreateSocket &cb){
auto helper = dynamic_pointer_cast<SocketHelper>(delegate);
if (helper) {
helper->setOnCreateSocket(cb);
}
}
void MediaPlayer::play(const string &url) {
_delegate = PlayerBase::createPlayer(_poller, url);
assert(_delegate);
setOnCreateSocket_l(_delegate, _on_create_socket);
2020-03-20 11:51:24 +08:00
_delegate->setOnShutdown(_shutdownCB);
_delegate->setOnPlayResult(_playResultCB);
2019-12-03 16:10:02 +08:00
_delegate->setOnResume(_resumeCB);
_delegate->setMediaSouce(_pMediaSrc);
2020-03-20 11:51:24 +08:00
_delegate->mINI::operator=(*this);
_delegate->play(url);
2017-04-01 16:35:56 +08:00
}
2019-01-30 17:00:28 +08:00
EventPoller::Ptr MediaPlayer::getPoller(){
2020-03-20 11:51:24 +08:00
return _poller;
2018-09-14 18:04:41 +08:00
}
2017-08-03 13:55:46 +08:00
void MediaPlayer::setOnCreateSocket(Socket::onCreateSocket cb){
setOnCreateSocket_l(_delegate, cb);
_on_create_socket = std::move(cb);
}
void MediaPlayer::pause(bool pause) {
2020-03-20 11:51:24 +08:00
if (_delegate) {
_delegate->pause(pause);
2020-03-20 11:51:24 +08:00
}
2017-04-01 16:35:56 +08:00
}
void MediaPlayer::teardown() {
2020-03-20 11:51:24 +08:00
if (_delegate) {
_delegate->teardown();
}
2017-04-01 16:35:56 +08:00
}
2018-10-24 17:17:55 +08:00
} /* namespace mediakit */