PlayerBase.h 7.12 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 11 12 13
 */

#ifndef SRC_PLAYER_PLAYERBASE_H_
#define SRC_PLAYER_PLAYERBASE_H_

xiongziliang committed
14
#include <map>
xzl committed
15 16
#include <memory>
#include <string>
xiongzilaing committed
17 18
#include <functional>
#include "Network/Socket.h"
xiongziliang committed
19
#include "Util/mini.h"
20
#include "Util/RingBuffer.h"
xiongziliang committed
21
#include "Common/MediaSource.h"
22 23
#include "Extension/Frame.h"
#include "Extension/Track.h"
xiongziliang committed
24
using namespace toolkit;
xiongzilaing committed
25

xiongziliang committed
26
namespace mediakit {
xzl committed
27

xiongziliang committed
28
class DemuxerBase : public TrackSource{
xiongziliang committed
29
public:
30 31 32 33 34 35 36 37 38 39 40 41 42 43
    typedef std::shared_ptr<DemuxerBase> Ptr;

    /**
     * 获取节目总时长,单位秒
     * @return
     */
    virtual float getDuration() const { return 0;}

    /**
     * 是否初始化完毕,完毕后方可调用getTrack方法
     * @param analysisMs 数据流最大分析时间 单位毫秒
     * @return
     */
    virtual bool isInited(int analysisMs) { return true; }
xiongziliang committed
44 45 46 47
};


class PlayerBase : public DemuxerBase, public mINI{
xzl committed
48
public:
49
    typedef std::shared_ptr<PlayerBase> Ptr;
50
    static Ptr createPlayer(const EventPoller::Ptr &poller,const string &strUrl);
51

52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
    PlayerBase();
    virtual ~PlayerBase(){}

    /**
     * 开始播放
     * @param strUrl 视频url,支持rtsp/rtmp
     */
    virtual void play(const string &strUrl) {}

    /**
     * 暂停或恢复
     * @param bPause
     */
    virtual void pause(bool bPause) {}

    /**
     * 中断播放
     */
    virtual void teardown() {}

    /**
     * 设置异常中断回调
     * @param cb
     */
    virtual void setOnShutdown( const function<void(const SockException &)> &cb) {}

    /**
     * 设置播放结果回调
     * @param cb
     */
    virtual void setOnPlayResult( const function<void(const SockException &ex)> &cb) {}
83

84 85 86 87 88 89
    /**
     * 设置播放恢复回调
     * @param cb
     */
    virtual void setOnResume( const function<void()> &cb) {}

90 91 92 93
    /**
     * 获取播放进度,取值 0.0 ~ 1.0
     * @return
     */
xiongziliang committed
94
    virtual float getProgress() const { return 0;}
95 96 97 98 99

    /**
     * 拖动进度条
     * @param fProgress 进度,取值 0.0 ~ 1.0
     */
xiongziliang committed
100
    virtual void seekTo(float fProgress) {}
xiongziliang committed
101

102 103 104 105
    /**
     * 设置一个MediaSource,直接生产rtsp/rtmp代理
     * @param src
     */
xiongziliang committed
106
    virtual void setMediaSource(const MediaSource::Ptr & src) {}
107 108 109 110 111 112

    /**
     * 获取丢包率,只支持rtsp
     * @param trackType 音频或视频,TrackInvalid时为总丢包率
     * @return
     */
113
    virtual float getPacketLossRate(TrackType trackType) const {return 0; }
xiongziliang committed
114 115 116 117 118 119 120

    /**
     * 获取所有track
     */
    vector<Track::Ptr> getTracks(bool trackReady = true) const override{
        return vector<Track::Ptr>();
    }
xzl committed
121
protected:
xiongziliang committed
122 123
    virtual void onShutdown(const SockException &ex) {}
    virtual void onPlayResult(const SockException &ex) {}
124 125 126 127
    /**
     * 暂停后恢复播放时间
     */
    virtual void onResume(){};
xzl committed
128 129
};

xiongziliang committed
130 131
template<typename Parent,typename Delegate>
class PlayerImp : public Parent {
xzl committed
132
public:
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
    typedef std::shared_ptr<PlayerImp> Ptr;

    template<typename ...ArgsType>
    PlayerImp(ArgsType &&...args):Parent(std::forward<ArgsType>(args)...){}

    virtual ~PlayerImp(){}
    void setOnShutdown(const function<void(const SockException &)> &cb) override {
        if (_delegate) {
            _delegate->setOnShutdown(cb);
        }
        _shutdownCB = cb;
    }
    void setOnPlayResult(const function<void(const SockException &ex)> &cb) override {
        if (_delegate) {
            _delegate->setOnPlayResult(cb);
        }
        _playResultCB = cb;
    }
xzl committed
151

152
    void setOnResume(const function<void()> &cb) override {
xiongziliang committed
153 154
        if (_delegate) {
            _delegate->setOnResume(cb);
155 156 157 158
        }
        _resumeCB = cb;
    }

159
    bool isInited(int analysisMs) override{
xiongziliang committed
160 161
        if (_delegate) {
            return _delegate->isInited(analysisMs);
xzl committed
162
        }
xiongziliang committed
163
        return Parent::isInited(analysisMs);
xzl committed
164
    }
165 166 167 168 169 170
    float getDuration() const override {
        if (_delegate) {
            return _delegate->getDuration();
        }
        return Parent::getDuration();
    }
xiongziliang committed
171
    float getProgress() const override{
xiongziliang committed
172 173
        if (_delegate) {
            return _delegate->getProgress();
xzl committed
174
        }
xiongziliang committed
175
        return Parent::getProgress();
xiongziliang committed
176
    }
xzl committed
177
    void seekTo(float fProgress) override{
xiongziliang committed
178 179
        if (_delegate) {
            return _delegate->seekTo(fProgress);
xzl committed
180
        }
xiongziliang committed
181
        return Parent::seekTo(fProgress);
xiongziliang committed
182
    }
xiongziliang committed
183

xiongziliang committed
184
    void setMediaSource(const MediaSource::Ptr & src) override {
185
        if (_delegate) {
xiongziliang committed
186
            _delegate->setMediaSource(src);
187 188
        }
        _pMediaSrc = src;
xiongziliang committed
189
    }
xiongziliang committed
190

191
    vector<Track::Ptr> getTracks(bool trackReady = true) const override{
192 193 194 195 196
        if (_delegate) {
            return _delegate->getTracks(trackReady);
        }
        return Parent::getTracks(trackReady);
    }
197 198 199 200 201

    std::shared_ptr<SockInfo> getSockInfo() const{
        return dynamic_pointer_cast<SockInfo>(_delegate);
    }

xzl committed
202
protected:
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
    void onShutdown(const SockException &ex) override {
        if (_shutdownCB) {
            _shutdownCB(ex);
            _shutdownCB = nullptr;
        }
    }

    void onPlayResult(const SockException &ex) override {
        if(_playResultCB) {
            _playResultCB(ex);
            _playResultCB = nullptr;
        }
    }

    void onResume() override{
218 219 220 221
        if(_resumeCB){
            _resumeCB();
        }
    }
xiongziliang committed
222
protected:
223 224
    function<void(const SockException &ex)> _shutdownCB;
    function<void(const SockException &ex)> _playResultCB;
225
    function<void()> _resumeCB;
xiongziliang committed
226
    std::shared_ptr<Delegate> _delegate;
227
    MediaSource::Ptr _pMediaSrc;
xzl committed
228
};
xiongziliang committed
229

230 231 232

class Demuxer : public PlayerBase{
public:
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
    class Listener{
    public:
        Listener() = default;
        virtual ~Listener() = default;
        virtual void onAddTrack(const Track::Ptr &track) = 0;
    };

    Demuxer(){};
    virtual ~Demuxer(){};

    /**
     * 返回是否完成初始化完毕
     * 在构造RtspDemuxer对象时有些rtsp的sdp不包含sps pps信息
     * 所以要等待接收到到sps的rtp包后才能完成
     *
     * 在构造RtmpDemuxer对象时是无法获取sps pps aac_cfg等这些信息,
     * 所以要调用inputRtmp后才会获取到这些信息,这时才初始化成功
     * @param analysisMs 数据流最大分析时间 单位毫秒
     * @return
     */
    bool isInited(int analysisMs) override;

    /**
     * 获取所有Track
     * @return 所有Track
     */
    vector<Track::Ptr> getTracks(bool trackReady = true) const override;

    /**
     * 获取节目总时长
     * @return 节目总时长,单位秒
     */
    float getDuration() const override;

    /**
     * 设置track监听器
     */
    void setTrackListener(Listener *listener);
271
protected:
272
    void onAddTrack(const Track::Ptr &track);
273
protected:
274 275 276 277 278
    Listener *_listener = nullptr;
    AudioTrack::Ptr _audioTrack;
    VideoTrack::Ptr _videoTrack;
    Ticker _ticker;
    float _fDuration = 0;
279 280
};

xiongziliang committed
281
} /* namespace mediakit */
xzl committed
282 283

#endif /* SRC_PLAYER_PLAYERBASE_H_ */