RtspMediaSourceImp.h 3.48 KB
Newer Older
xiongziliang committed
1
/*
xiongziliang committed
2 3 4 5 6 7 8 9
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
 *
 * This file is part of ZLMediaKit(https://github.com/xiongziliang/ZLMediaKit).
 *
 * 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
10 11 12 13 14

#ifndef SRC_RTSP_RTSPTORTMPMEDIASOURCE_H_
#define SRC_RTSP_RTSPTORTMPMEDIASOURCE_H_

#include "Rtmp/amf.h"
xiongziliang committed
15
#include "RtspMediaSource.h"
xiongziliang committed
16
#include "RtspDemuxer.h"
17
#include "Common/MultiMediaSourceMuxer.h"
xiongziliang committed
18
using namespace toolkit;
xzl committed
19

xiongziliang committed
20
namespace mediakit {
21
class RtspMediaSourceImp : public RtspMediaSource, public Demuxer::Listener , public MultiMediaSourceMuxer::Listener  {
xzl committed
22
public:
23
    typedef std::shared_ptr<RtspMediaSourceImp> Ptr;
xzl committed
24

25
    /**
26 27 28 29 30 31
     * 构造函数
     * @param vhost 虚拟主机
     * @param app 应用名
     * @param id 流id
     * @param ringSize 环形缓存大小
     */
xiongziliang committed
32
    RtspMediaSourceImp(const string &vhost, const string &app, const string &id, int ringSize = RTP_GOP_SIZE) : RtspMediaSource(vhost, app, id,ringSize) {
33 34 35 36
        _demuxer = std::make_shared<RtspDemuxer>();
        _demuxer->setTrackListener(this);
    }

37
    ~RtspMediaSourceImp() = default;
38

39 40 41 42
    /**
     * 设置sdp
     */
    void setSdp(const string &strSdp) override {
43
        _demuxer->loadSdp(strSdp);
44
        RtspMediaSource::setSdp(strSdp);
xiongziliang committed
45
    }
46

47 48 49 50
    /**
     * 输入rtp并解析
     */
    void onWrite(const RtpPacket::Ptr &rtp, bool key_pos) override {
51
        if (_all_track_ready && !_muxer->isEnabled()) {
52 53 54
            //获取到所有Track后,并且未开启转协议,那么不需要解复用rtp
            //在关闭rtp解复用后,无法知道是否为关键帧,这样会导致无法秒开,或者开播花屏
            key_pos = rtp->type == TrackVideo;
55
        } else {
56 57 58
            //需要解复用rtp
            key_pos = _demuxer->inputRtp(rtp);
        }
59
        RtspMediaSource::onWrite(rtp, key_pos);
xiongziliang committed
60
    }
61

62
    /**
63 64 65 66
     * 获取观看总人数,包括(hls/rtsp/rtmp)
     */
    int totalReaderCount() override{
        return readerCount() + (_muxer ? _muxer->totalReaderCount() : 0);
67
    }
68 69

    /**
70 71 72 73
     * 设置协议转换
     * @param enableHls  是否转换成hls
     * @param enableMP4  是否mp4录制
     */
74
    void setProtocolTranslation(bool enableHls,bool enableMP4){
75
        //不重复生成rtsp
76
        _muxer = std::make_shared<MultiMediaSourceMuxer>(getVhost(), getApp(), getId(), _demuxer->getDuration(), false, true, enableHls, enableMP4);
77
        _muxer->setMediaListener(getListener());
78
        _muxer->setTrackListener(static_pointer_cast<RtspMediaSourceImp>(shared_from_this()));
79 80 81
        //让_muxer对象拦截一部分事件(比如说录像相关事件)
        setListener(_muxer);

82 83 84 85
        for(auto &track : _demuxer->getTracks(false)){
            _muxer->addTrack(track);
            track->addDelegate(_muxer);
        }
86 87 88
    }

    /**
89 90
     * _demuxer触发的添加Track事件
     */
91 92 93 94 95 96 97 98 99 100 101
    void onAddTrack(const Track::Ptr &track) override {
        if(_muxer){
            _muxer->addTrack(track);
            track->addDelegate(_muxer);
        }
    }

    /**
     * _muxer触发的所有Track就绪的事件
     */
    void onAllTrackReady() override{
102
        _all_track_ready = true;
103
    }
104

xiongziliang committed
105
private:
xiongziliang committed
106
    RtspDemuxer::Ptr _demuxer;
107
    MultiMediaSourceMuxer::Ptr _muxer;
108
    bool _all_track_ready = false;
xzl committed
109
};
xiongziliang committed
110
} /* namespace mediakit */
xzl committed
111 112

#endif /* SRC_RTSP_RTSPTORTMPMEDIASOURCE_H_ */