MultiMediaSourceMuxer.h 5.8 KB
Newer Older
1
/*
xiongziliang committed
2
 * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
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.
9
 */
xiongziliang committed
10

11 12
#ifndef ZLMEDIAKIT_MULTIMEDIASOURCEMUXER_H
#define ZLMEDIAKIT_MULTIMEDIASOURCEMUXER_H
xiongziliang committed
13 14
#include "Rtsp/RtspMediaSourceMuxer.h"
#include "Rtmp/RtmpMediaSourceMuxer.h"
xiongziliang committed
15
#include "Record/Recorder.h"
16
#include "Record/HlsMediaSource.h"
17
#include "Record/HlsRecorder.h"
18
namespace mediakit{
xiongziliang committed
19

20
class MultiMuxerPrivate : public MediaSink , public std::enable_shared_from_this<MultiMuxerPrivate>{
xiongziliang committed
21
public:
22 23
    friend class MultiMediaSourceMuxer;
    typedef std::shared_ptr<MultiMuxerPrivate> Ptr;
24 25 26 27 28 29
    class Listener{
    public:
        Listener() = default;
        virtual ~Listener() = default;
        virtual void onAllTrackReady() = 0;
    };
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
    ~MultiMuxerPrivate() override ;
private:
    MultiMuxerPrivate(const string &vhost,
                      const string &app,
                      const string &stream,
                      float dur_sec,
                      bool enable_rtsp,
                      bool enable_rtmp,
                      bool enable_hls,
                      bool enable_mp4);

    void resetTracks() override;
    void setMediaListener(const std::weak_ptr<MediaSourceEvent> &listener);
    int totalReaderCount() const;
    void setTimeStamp(uint32_t stamp);
    void setTrackListener(Listener *listener);
    bool setupRecord(MediaSource &sender, Recorder::type type, bool start, const string &custom_path);
    bool isRecording(MediaSource &sender, Recorder::type type);
48
    bool isEnabled();
49 50 51 52 53 54 55 56 57 58 59 60
private:
    void onTrackReady(const Track::Ptr & track) override;
    void onTrackFrame(const Frame::Ptr &frame) override;
    void onAllTrackReady() override;
    MediaSource::Ptr getHlsMediaSource() const;
private:
    RtmpMediaSourceMuxer::Ptr _rtmp;
    RtspMediaSourceMuxer::Ptr _rtsp;
    MediaSinkInterface::Ptr _hls;
    MediaSinkInterface::Ptr _mp4;
    Listener *_listener = nullptr;
    std::weak_ptr<MediaSourceEvent> _meida_listener;
61 62
    bool _enable_rtxp = false;
    bool _enable_record = false;
63
};
64

65 66 67
class MultiMediaSourceMuxer : public MediaSourceEvent, public MediaSinkInterface, public TrackSource, public std::enable_shared_from_this<MultiMediaSourceMuxer>{
public:
    typedef MultiMuxerPrivate::Listener Listener;
68
    typedef std::shared_ptr<MultiMediaSourceMuxer> Ptr;
69

70 71 72 73 74 75 76 77 78
    ~MultiMediaSourceMuxer() override;
    MultiMediaSourceMuxer(const string &vhost,
                          const string &app,
                          const string &stream,
                          float dur_sec = 0.0,
                          bool enable_rtsp = true,
                          bool enable_rtmp = true,
                          bool enable_hls = true,
                          bool enable_mp4 = false);
79 80

    /**
xiongziliang committed
81 82 83
     * 设置事件监听器
     * @param listener
     */
84
    void setMediaListener(const std::weak_ptr<MediaSourceEvent> &listener);
85 86 87 88 89

    /**
     * 返回总的消费者个数
     * @return
     */
90 91 92 93 94 95 96 97 98 99 100 101 102 103
    int totalReaderCount() const;

    /**
     * 设置MediaSource时间戳
     * @param stamp 时间戳
     */
    void setTimeStamp(uint32_t stamp);

    /**
     * 随着Track就绪事件监听器
     * @param listener 事件监听器
     */
    void setTrackListener(Listener *listener);

xiongziliang committed
104
    /**
105 106 107
     * 获取所有Track
     * @param trackReady 是否筛选过滤未就绪的track
     * @return 所有Track
xiongziliang committed
108
     */
109
    vector<Track::Ptr> getTracks(bool trackReady = true) const override;
xiongziliang committed
110 111

    /**
112 113 114 115
     * 通知拖动进度条
     * @param sender 事件发送者
     * @param ui32Stamp 目标时间戳
     * @return 是否成功
xiongziliang committed
116
     */
117
    bool seekTo(MediaSource &sender,uint32_t ui32Stamp) override;
xiongziliang committed
118 119

    /**
120 121 122 123
     * 通知停止流生成
     * @param sender 事件发送者
     * @param force 是否强制关闭
     * @return 成功与否
xiongziliang committed
124
     */
125 126 127 128 129 130 131 132 133 134
    bool close(MediaSource &sender,bool force) override;

    /**
     * 观看总人数
     * @param sender 事件发送者
     * @return 观看总人数
     */
    int totalReaderCount(MediaSource &sender) override;

    /**
135 136 137 138 139 140
     * 触发无人观看事件
     * @param sender 触发者
     */
    void onNoneReader(MediaSource &sender) override;

    /**
141 142 143 144 145 146 147
     * 媒体注册注销事件
     * @param sender 触发者
     * @param regist 是否为注册事件
     */
    void onRegist(MediaSource &sender, bool regist) override;

    /**
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
     * 设置录制状态
     * @param type 录制类型
     * @param start 开始或停止
     * @param custom_path 开启录制时,指定自定义路径
     * @return 是否设置成功
     */
    bool setupRecord(MediaSource &sender, Recorder::type type, bool start, const string &custom_path) override;

    /**
     * 获取录制状态
     * @param type 录制类型
     * @return 录制状态
     */
    bool isRecording(MediaSource &sender, Recorder::type type) override;

    /**
    * 添加track,内部会调用Track的clone方法
    * 只会克隆sps pps这些信息 ,而不会克隆Delegate相关关系
    * @param track
    */
    void addTrack(const Track::Ptr & track) override;

    /**
     * 添加track完毕
     * @param track
     */
    void addTrackCompleted();

    /**
     * 重置track
     */
    void resetTracks() override;

    /**
     * 写入帧数据
     * @param frame 帧
     */
    void inputFrame(const Frame::Ptr &frame) override;
186 187 188 189 190

    /**
     * 判断是否生效(是否正在转其他协议)
     */
    bool isEnabled();
xiongziliang committed
191
private:
192 193
    MultiMuxerPrivate::Ptr _muxer;
    std::weak_ptr<MediaSourceEvent> _listener;
194
    Stamp _stamp[2];
xiongziliang committed
195 196
};

197
}//namespace mediakit
198
#endif //ZLMEDIAKIT_MULTIMEDIASOURCEMUXER_H