MultiMediaSourceMuxer.h 5.29 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 48 49 50 51 52 53 54 55 56 57 58 59 60
    ~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);
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 63 64
class MultiMediaSourceMuxer : public MediaSourceEvent, public MediaSinkInterface, public TrackSource, public std::enable_shared_from_this<MultiMediaSourceMuxer>{
public:
    typedef MultiMuxerPrivate::Listener Listener;
65
    typedef std::shared_ptr<MultiMediaSourceMuxer> Ptr;
66

67 68 69 70 71 72 73 74 75
    ~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);
76 77

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

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

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

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

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

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

    /**
117 118 119 120
     * 通知停止流生成
     * @param sender 事件发送者
     * @param force 是否强制关闭
     * @return 成功与否
xiongziliang committed
121
     */
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
    bool close(MediaSource &sender,bool force) override;

    /**
     * 观看总人数
     * @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;

    /**
    * 添加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;
xiongziliang committed
170
private:
171 172
    MultiMuxerPrivate::Ptr _muxer;
    std::weak_ptr<MediaSourceEvent> _listener;
xiongziliang committed
173 174
};

175
}//namespace mediakit
176
#endif //ZLMEDIAKIT_MULTIMEDIASOURCEMUXER_H