MediaPlayer.cpp 2.01 KB
Newer Older
xiongziliang committed
1
/*
xiongziliang committed
2
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
xiongziliang committed
3
 *
4
 * This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
xiongziliang committed
5
 *
xiongziliang committed
6 7 8
 * 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.
xzl committed
9 10
 */

xiongzilaing committed
11 12
#include <algorithm>
#include "MediaPlayer.h"
xzl committed
13 14
#include "Rtmp/RtmpPlayerImp.h"
#include "Rtsp/RtspPlayerImp.h"
xiongziliang committed
15
using namespace toolkit;
xzl committed
16

xiongziliang committed
17
namespace mediakit {
xzl committed
18

19
MediaPlayer::MediaPlayer(const EventPoller::Ptr &poller) {
20
    _poller = poller ? poller : EventPollerPool::Instance().getPoller();
xzl committed
21 22 23 24
}

MediaPlayer::~MediaPlayer() {
}
25 26 27 28

static void setOnCreateSocket_l(const std::shared_ptr<PlayerBase> &delegate, const Socket::onCreateSocket &cb){
    auto helper = dynamic_pointer_cast<SocketHelper>(delegate);
    if (helper) {
29 30 31 32 33 34 35 36
        if (cb) {
            helper->setOnCreateSocket(cb);
        } else {
            //客户端,确保开启互斥锁
            helper->setOnCreateSocket([](const EventPoller::Ptr &poller) {
                return Socket::createSocket(poller, true);
            });
        }
37 38 39 40 41 42 43
    }
}

void MediaPlayer::play(const string &url) {
    _delegate = PlayerBase::createPlayer(_poller, url);
    assert(_delegate);
    setOnCreateSocket_l(_delegate, _on_create_socket);
44 45
    _delegate->setOnShutdown(_shutdownCB);
    _delegate->setOnPlayResult(_playResultCB);
xiongziliang committed
46
    _delegate->setOnResume(_resumeCB);
xiongziliang committed
47
    _delegate->setMediaSource(_pMediaSrc);
48
    _delegate->mINI::operator=(*this);
49
    _delegate->play(url);
xzl committed
50 51
}

52
EventPoller::Ptr MediaPlayer::getPoller(){
53
    return _poller;
xiongziliang committed
54
}
xiongziliang committed
55

56 57 58 59 60 61
void MediaPlayer::setOnCreateSocket(Socket::onCreateSocket cb){
    setOnCreateSocket_l(_delegate, cb);
    _on_create_socket = std::move(cb);
}

void MediaPlayer::pause(bool pause) {
62
    if (_delegate) {
63
        _delegate->pause(pause);
64
    }
xzl committed
65 66 67
}

void MediaPlayer::teardown() {
68 69 70
    if (_delegate) {
        _delegate->teardown();
    }
xzl committed
71 72 73
}


xiongziliang committed
74
} /* namespace mediakit */