MultiMediaSourceMuxer.h 5.99 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
13 14 15

#include "Common/Stamp.h"
#include "Rtp/PSRtpSender.h"
xiongziliang committed
16
#include "Record/Recorder.h"
17
#include "Record/HlsRecorder.h"
18 19 20
#include "Record/HlsMediaSource.h"
#include "Rtsp/RtspMediaSourceMuxer.h"
#include "Rtmp/RtmpMediaSourceMuxer.h"
21
#include "TS/TSMediaSourceMuxer.h"
22
#include "FMP4/FMP4MediaSourceMuxer.h"
23

24
namespace mediakit{
xiongziliang committed
25

xiongziliang committed
26
class MultiMuxerPrivate : public MediaSink, public std::enable_shared_from_this<MultiMuxerPrivate>{
xiongziliang committed
27
public:
28 29
    friend class MultiMediaSourceMuxer;
    typedef std::shared_ptr<MultiMuxerPrivate> Ptr;
30 31 32 33 34 35
    class Listener{
    public:
        Listener() = default;
        virtual ~Listener() = default;
        virtual void onAllTrackReady() = 0;
    };
36

37 38 39 40 41
    ~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);
42 43 44 45 46 47 48
    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);
49
    bool isEnabled();
50 51 52
    void onTrackReady(const Track::Ptr & track) override;
    void onTrackFrame(const Frame::Ptr &frame) override;
    void onAllTrackReady() override;
53

54
private:
55
    string _stream_url;
xiongziliang committed
56
    Listener *_track_listener = nullptr;
57 58
    RtmpMediaSourceMuxer::Ptr _rtmp;
    RtspMediaSourceMuxer::Ptr _rtsp;
59
    HlsRecorder::Ptr _hls;
60
    MediaSinkInterface::Ptr _mp4;
61
    TSMediaSourceMuxer::Ptr _ts;
62
    FMP4MediaSourceMuxer::Ptr _fmp4;
xiongziliang committed
63
    std::weak_ptr<MediaSourceEvent> _listener;
64
};
65

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

71
    ~MultiMediaSourceMuxer() override;
72 73
    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);
74 75

    /**
xiongziliang committed
76
     * 设置事件监听器
77
     * @param listener 监听器
xiongziliang committed
78
     */
79
    void setMediaListener(const std::weak_ptr<MediaSourceEvent> &listener);
80

81 82 83 84 85 86
     /**
      * 随着Track就绪事件监听器
      * @param listener 事件监听器
     */
    void setTrackListener(const std::weak_ptr<MultiMuxerPrivate::Listener> &listener);

87 88 89
    /**
     * 返回总的消费者个数
     */
90 91 92
    int totalReaderCount() const;

    /**
xiongziliang committed
93 94 95 96 97
     * 判断是否生效(是否正在转其他协议)
     */
    bool isEnabled();

    /**
98 99 100 101 102
     * 设置MediaSource时间戳
     * @param stamp 时间戳
     */
    void setTimeStamp(uint32_t stamp);

103
    /////////////////////////////////MediaSourceEvent override/////////////////////////////////
xiongziliang committed
104

105 106 107 108
    /**
     * 获取所有Track
     * @param trackReady 是否筛选过滤未就绪的track
     * @return 所有Track
xiongziliang committed
109
     */
110
    vector<Track::Ptr> getTracks(MediaSource &sender, bool trackReady = true) const override;
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134

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

    /**
     * 设置录制状态
     * @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;

135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
    /**
     * 开始发送ps-rtp流
     * @param dst_url 目标ip或域名
     * @param dst_port 目标端口
     * @param ssrc rtp的ssrc
     * @param is_udp 是否为udp
     * @param cb 启动成功或失败回调
     */
    void startSendRtp(MediaSource &sender, const string &dst_url, uint16_t dst_port, uint32_t ssrc, bool is_udp, const function<void(const SockException &ex)> &cb) override;

    /**
     * 停止ps-rtp发送
     * @return 是否成功
     */
    bool stopSendRtp(MediaSource &sender) override;

xiongziliang committed
151 152
    /////////////////////////////////MediaSinkInterface override/////////////////////////////////

153 154 155
    /**
    * 添加track,内部会调用Track的clone方法
    * 只会克隆sps pps这些信息 ,而不会克隆Delegate相关关系
156
    * @param track 添加音频或视频轨道
157
    */
158
    void addTrack(const Track::Ptr &track) override;
159 160 161 162

    /**
     * 添加track完毕
     */
xiongziliang committed
163
    void addTrackCompleted() override;
164 165

    /**
166 167 168 169 170 171 172 173 174
     * 重置track
     */
    void resetTracks() override;

    /**
     * 写入帧数据
     * @param frame 帧
     */
    void inputFrame(const Frame::Ptr &frame) override;
175

xiongziliang committed
176 177
    /////////////////////////////////MultiMuxerPrivate::Listener override/////////////////////////////////

178
    /**
xiongziliang committed
179
     * 所有track全部就绪
180
     */
xiongziliang committed
181
    void onAllTrackReady() override;
182

xiongziliang committed
183
private:
xiongziliang committed
184
    Stamp _stamp[2];
185
    MultiMuxerPrivate::Ptr _muxer;
186
    std::weak_ptr<MultiMuxerPrivate::Listener> _track_listener;
187 188 189
#if defined(ENABLE_RTPPROXY)
    PSRtpSender::Ptr _ps_rtp_sender;
#endif //ENABLE_RTPPROXY
xiongziliang committed
190 191
};

192
}//namespace mediakit
193
#endif //ZLMEDIAKIT_MULTIMEDIASOURCEMUXER_H