PlayerBase.cpp 3.56 KB
Newer Older
xiongziliang committed
1
/*
xiongziliang committed
2
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
xiongziliang committed
3 4 5
 *
 * This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
 *
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
#include <algorithm>
xzl committed
12
#include "PlayerBase.h"
xiongzilaing committed
13 14
#include "Rtsp/RtspPlayerImp.h"
#include "Rtmp/RtmpPlayerImp.h"
15
#include "Http/HlsPlayer.h"
xiongziliang committed
16
using namespace toolkit;
xzl committed
17

xiongziliang committed
18
namespace mediakit {
xzl committed
19

20 21 22 23 24 25
//字符串是否以xx结尾
static bool end_of(const string &str, const string &substr){
    auto pos = str.rfind(substr);
    return pos != string::npos && pos == str.size() - substr.size();
}

26
PlayerBase::Ptr PlayerBase::createPlayer(const EventPoller::Ptr &poller,const string &url_in) {
27 28 29 30 31 32
    static auto releasePlayer = [](PlayerBase *ptr){
        onceToken token(nullptr,[&](){
            delete  ptr;
        });
        ptr->teardown();
    };
33 34 35 36 37 38 39
    string url = url_in;
    string prefix = FindField(url.data(), NULL, "://");
    auto pos = url.find('?');
    if (pos != string::npos) {
        //去除?后面的字符串
        url = url.substr(0, pos);
    }
40

41 42 43
    if (strcasecmp("rtsps",prefix.data()) == 0) {
        return PlayerBase::Ptr(new TcpClientWithSSL<RtspPlayerImp>(poller),releasePlayer);
    }
44

45 46 47
    if (strcasecmp("rtsp",prefix.data()) == 0) {
        return PlayerBase::Ptr(new RtspPlayerImp(poller),releasePlayer);
    }
48

49 50 51
    if (strcasecmp("rtmps",prefix.data()) == 0) {
        return PlayerBase::Ptr(new TcpClientWithSSL<RtmpPlayerImp>(poller),releasePlayer);
    }
52

53 54 55
    if (strcasecmp("rtmp",prefix.data()) == 0) {
        return PlayerBase::Ptr(new RtmpPlayerImp(poller),releasePlayer);
    }
56

57
    if ((strcasecmp("http",prefix.data()) == 0 || strcasecmp("https",prefix.data()) == 0) && end_of(url, ".m3u8")) {
58 59 60
        return PlayerBase::Ptr(new HlsPlayerImp(poller),releasePlayer);
    }

61
    return PlayerBase::Ptr(new RtspPlayerImp(poller),releasePlayer);
xzl committed
62 63
}

64
PlayerBase::PlayerBase() {
65 66 67 68
    this->mINI::operator[](kTimeoutMS) = 10000;
    this->mINI::operator[](kMediaTimeoutMS) = 5000;
    this->mINI::operator[](kBeatIntervalMS) = 5000;
    this->mINI::operator[](kMaxAnalysisMS) = 5000;
69 70
}

71
///////////////////////////Demuxer//////////////////////////////
72
bool Demuxer::isInited(int analysisMs) {
73 74 75 76 77 78 79 80 81 82 83 84 85
    if(analysisMs && _ticker.createdTime() > analysisMs){
        //analysisMs毫秒后强制初始化完毕
        return true;
    }
    if (_videoTrack && !_videoTrack->ready()) {
        //视频未准备好
        return false;
    }
    if (_audioTrack && !_audioTrack->ready()) {
        //音频未准备好
        return false;
    }
    return true;
86 87
}

88
vector<Track::Ptr> Demuxer::getTracks(bool trackReady) const {
89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
    vector<Track::Ptr> ret;
    if(_videoTrack){
        if(trackReady){
            if(_videoTrack->ready()){
                ret.emplace_back(_videoTrack);
            }
        }else{
            ret.emplace_back(_videoTrack);
        }
    }
    if(_audioTrack){
        if(trackReady){
            if(_audioTrack->ready()){
                ret.emplace_back(_audioTrack);
            }
        }else{
            ret.emplace_back(_audioTrack);
        }
    }
    return std::move(ret);
109 110 111
}

float Demuxer::getDuration() const {
112
    return _fDuration;
113
}
114 115

void Demuxer::onAddTrack(const Track::Ptr &track){
116 117 118
    if(_listener){
        _listener->onAddTrack(track);
    }
119 120 121
}

void Demuxer::setTrackListener(Demuxer::Listener *listener) {
122
    _listener = listener;
123 124
}

xiongziliang committed
125
} /* namespace mediakit */