RtmpMediaSourceImp.h 4.98 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
 */

#ifndef SRC_RTMP_RTMPTORTSPMEDIASOURCE_H_
#define SRC_RTMP_RTMPTORTSPMEDIASOURCE_H_
xiongzilaing committed
13 14

#include <mutex>
xzl committed
15 16
#include <string>
#include <memory>
xiongzilaing committed
17
#include <functional>
xzl committed
18
#include <unordered_map>
xiongziliang committed
19 20
#include "Util/util.h"
#include "Util/logger.h"
xzl committed
21 22 23
#include "amf.h"
#include "Rtmp.h"
#include "RtmpMediaSource.h"
xiongziliang committed
24
#include "RtmpDemuxer.h"
25
#include "Common/MultiMediaSourceMuxer.h"
xzl committed
26
using namespace std;
xiongziliang committed
27
using namespace toolkit;
xzl committed
28

xiongziliang committed
29
namespace mediakit {
30
class RtmpMediaSourceImp: public RtmpMediaSource, public Demuxer::Listener , public MultiMediaSourceMuxer::Listener {
xzl committed
31
public:
32
    typedef std::shared_ptr<RtmpMediaSourceImp> Ptr;
33

34 35 36 37 38 39 40 41 42 43 44
    /**
     * 构造函数
     * @param vhost 虚拟主机
     * @param app 应用名
     * @param id 流id
     * @param ringSize 环形缓存大小
     */
    RtmpMediaSourceImp(const string &vhost, const string &app, const string &id, int ringSize = RTMP_GOP_SIZE) : RtmpMediaSource(vhost, app, id, ringSize) {
        _demuxer = std::make_shared<RtmpDemuxer>();
        _demuxer->setTrackListener(this);
    }
xzl committed
45

46
    ~RtmpMediaSourceImp() = default;
xzl committed
47

48 49 50 51
    /**
     * 设置metadata
     */
    void setMetaData(const AMFValue &metadata) override{
52 53 54 55 56
        if(!_demuxer->loadMetaData(metadata)){
            //该metadata无效,需要重新生成
            _metadata = metadata;
            _recreate_metadata = true;
        }
57
        RtmpMediaSource::setMetaData(metadata);
58
    }
59

60 61 62 63
    /**
     * 输入rtmp并解析
     */
    void onWrite(const RtmpPacket::Ptr &pkt,bool key_pos = true) override {
64 65 66 67 68 69 70 71
        if(_all_track_ready && !_muxer->isEnabled()){
            //获取到所有Track后,并且未开启转协议,那么不需要解复用rtmp
            key_pos = pkt->isVideoKeyFrame();
        }else{
            //需要解复用rtmp
            key_pos = _demuxer->inputRtmp(pkt);
        }

72 73
        RtmpMediaSource::onWrite(pkt,key_pos);
    }
74

75 76 77 78 79
    /**
     * 设置监听器
     * @param listener
     */
    void setListener(const std::weak_ptr<MediaSourceEvent> &listener) override {
80
        RtmpMediaSource::setListener(listener);
81
        if(_muxer){
82
            _muxer->setMediaListener(listener);
83 84
        }
    }
85

86 87 88 89 90
    /**
     * 获取观看总人数,包括(hls/rtsp/rtmp)
     */
    int totalReaderCount() override{
        return readerCount() + (_muxer ? _muxer->totalReaderCount() : 0);
91
    }
92

93
    /**
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
     * 设置录制状态
     * @param type 录制类型
     * @param start 开始或停止
     * @param custom_path 开启录制时,指定自定义路径
     * @return 是否设置成功
     */
    bool setupRecord(Recorder::type type, bool start, const string &custom_path) override{
        if(_muxer){
            return _muxer->setupRecord(*this,type, start, custom_path);
        }
        return RtmpMediaSource::setupRecord(type, start, custom_path);
    }

    /**
     * 获取录制状态
     * @param type 录制类型
     * @return 录制状态
     */
    bool isRecording(Recorder::type type) override{
        if(_muxer){
            return _muxer->isRecording(*this,type);
        }
        return RtmpMediaSource::isRecording(type);
    }


    /**
121 122 123 124 125 126 127 128
     * 设置协议转换
     * @param enableRtsp 是否转换成rtsp
     * @param enableHls  是否转换成hls
     * @param enableMP4  是否mp4录制
     */
    void setProtocolTranslation(bool enableRtsp, bool enableHls, bool enableMP4) {
        //不重复生成rtmp
        _muxer = std::make_shared<MultiMediaSourceMuxer>(getVhost(), getApp(), getId(), _demuxer->getDuration(), enableRtsp, false, enableHls, enableMP4);
129
        _muxer->setMediaListener(getListener());
130
        _muxer->setTrackListener(this);
131 132 133 134
        for(auto &track : _demuxer->getTracks(false)){
            _muxer->addTrack(track);
            track->addDelegate(_muxer);
        }
135
    }
136

137 138 139 140 141 142 143 144 145
    /**
     * _demuxer触发的添加Track事件
     */
    void onAddTrack(const Track::Ptr &track) override {
        if(_muxer){
            _muxer->addTrack(track);
            track->addDelegate(_muxer);
        }
    }
146

147 148 149 150 151
    /**
     * _muxer触发的所有Track就绪的事件
     */
    void onAllTrackReady() override{
        setTrackSource(_muxer);
152
        _all_track_ready = true;
153

xiongziliang committed
154
        if (_recreate_metadata) {
155
            //更新metadata
xiongziliang committed
156 157 158
            for (auto &track : _muxer->getTracks()) {
                Metadata::addTrack(_metadata, track);
            }
159
            RtmpMediaSource::updateMetaData(_metadata);
160
        }
161
    }
162

xzl committed
163
private:
164 165
    RtmpDemuxer::Ptr _demuxer;
    MultiMediaSourceMuxer::Ptr _muxer;
166
    AMFValue _metadata;
167
    bool _all_track_ready = false;
168
    bool _recreate_metadata = false;
xzl committed
169
};
xiongziliang committed
170
} /* namespace mediakit */
xzl committed
171 172

#endif /* SRC_RTMP_RTMPTORTSPMEDIASOURCE_H_ */