2017-10-09 22:11:01 +08:00
|
|
|
|
/*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
|
2017-09-27 16:20:30 +08:00
|
|
|
|
*
|
2021-01-17 18:31:50 +08:00
|
|
|
|
* This file is part of ZLMediaKit(https://github.com/xia-chu/ZLMediaKit).
|
2017-09-27 16:20:30 +08:00
|
|
|
|
*
|
2020-04-04 20:30:09 +08:00
|
|
|
|
* 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.
|
2017-04-01 16:35:56 +08:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef SRC_RTMP_RTMPTORTSPMEDIASOURCE_H_
|
|
|
|
|
|
#define SRC_RTMP_RTMPTORTSPMEDIASOURCE_H_
|
2017-04-25 11:35:41 +08:00
|
|
|
|
|
|
|
|
|
|
#include <mutex>
|
2017-04-01 16:35:56 +08:00
|
|
|
|
#include <string>
|
|
|
|
|
|
#include <memory>
|
2017-04-25 11:35:41 +08:00
|
|
|
|
#include <functional>
|
2017-04-01 16:35:56 +08:00
|
|
|
|
#include <unordered_map>
|
|
|
|
|
|
#include "amf.h"
|
|
|
|
|
|
#include "Rtmp.h"
|
2022-12-02 14:43:06 +08:00
|
|
|
|
#include "RtmpDemuxer.h"
|
2017-04-01 16:35:56 +08:00
|
|
|
|
#include "RtmpMediaSource.h"
|
2019-07-22 18:37:32 +08:00
|
|
|
|
#include "Common/MultiMediaSourceMuxer.h"
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2018-10-24 17:17:55 +08:00
|
|
|
|
namespace mediakit {
|
2022-12-02 14:43:06 +08:00
|
|
|
|
|
2022-10-16 19:49:56 +08:00
|
|
|
|
class RtmpMediaSourceImp final : public RtmpMediaSource, private TrackListener, public MultiMediaSourceMuxer::Listener {
|
2017-04-01 16:35:56 +08:00
|
|
|
|
public:
|
2022-10-16 19:49:56 +08:00
|
|
|
|
using Ptr = std::shared_ptr<RtmpMediaSourceImp>;
|
2018-02-02 18:06:08 +08:00
|
|
|
|
|
2020-03-20 11:51:24 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 构造函数
|
|
|
|
|
|
* @param vhost 虚拟主机
|
|
|
|
|
|
* @param app 应用名
|
|
|
|
|
|
* @param id 流id
|
|
|
|
|
|
* @param ringSize 环形缓存大小
|
|
|
|
|
|
*/
|
2022-11-29 11:07:13 +08:00
|
|
|
|
RtmpMediaSourceImp(const std::string &vhost, const std::string &app, const std::string &id, int ringSize = RTMP_GOP_SIZE);
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2022-10-16 19:49:56 +08:00
|
|
|
|
~RtmpMediaSourceImp() override = default;
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
2020-03-20 11:51:24 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 设置metadata
|
|
|
|
|
|
*/
|
2022-11-29 11:07:13 +08:00
|
|
|
|
void setMetaData(const AMFValue &metadata) override;
|
2019-12-26 12:10:54 +08:00
|
|
|
|
|
2020-03-20 11:51:24 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 输入rtmp并解析
|
|
|
|
|
|
*/
|
2022-11-29 11:07:13 +08:00
|
|
|
|
void onWrite(RtmpPacket::Ptr pkt, bool = true) override;
|
2019-05-27 16:09:29 +08:00
|
|
|
|
|
2019-12-28 16:48:11 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 获取观看总人数,包括(hls/rtsp/rtmp)
|
|
|
|
|
|
*/
|
2022-11-29 11:07:13 +08:00
|
|
|
|
int totalReaderCount() override;
|
2019-08-22 17:48:10 +08:00
|
|
|
|
|
2020-03-20 11:51:24 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 设置协议转换
|
|
|
|
|
|
*/
|
2022-11-29 11:07:13 +08:00
|
|
|
|
void setProtocolOption(const ProtocolOption &option);
|
2019-12-26 11:53:19 +08:00
|
|
|
|
|
2022-03-12 13:19:21 +08:00
|
|
|
|
const ProtocolOption &getProtocolOption() const {
|
|
|
|
|
|
return _option;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2020-03-20 11:51:24 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* _demuxer触发的添加Track事件
|
|
|
|
|
|
*/
|
2022-11-29 11:07:13 +08:00
|
|
|
|
bool addTrack(const Track::Ptr &track) override;
|
2019-12-26 11:53:19 +08:00
|
|
|
|
|
2021-04-20 17:53:43 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* _demuxer触发的Track添加完毕事件
|
|
|
|
|
|
*/
|
2022-11-29 11:07:13 +08:00
|
|
|
|
void addTrackCompleted() override;
|
2021-04-20 17:53:43 +08:00
|
|
|
|
|
2022-11-29 11:07:13 +08:00
|
|
|
|
void resetTracks() override;
|
2021-04-20 17:53:43 +08:00
|
|
|
|
|
2020-03-20 11:51:24 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* _muxer触发的所有Track就绪的事件
|
|
|
|
|
|
*/
|
2022-11-29 11:07:13 +08:00
|
|
|
|
void onAllTrackReady() override;
|
2020-05-28 17:03:12 +08:00
|
|
|
|
|
2020-10-24 23:31:58 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 设置事件监听器
|
|
|
|
|
|
* @param listener 监听器
|
|
|
|
|
|
*/
|
2022-11-29 11:07:13 +08:00
|
|
|
|
void setListener(const std::weak_ptr<MediaSourceEvent> &listener) override;
|
2020-10-24 23:31:58 +08:00
|
|
|
|
|
2017-04-01 16:35:56 +08:00
|
|
|
|
private:
|
2020-04-29 11:59:45 +08:00
|
|
|
|
bool _all_track_ready = false;
|
2020-05-28 17:03:12 +08:00
|
|
|
|
bool _recreate_metadata = false;
|
2022-03-12 13:19:21 +08:00
|
|
|
|
ProtocolOption _option;
|
2020-08-30 10:48:34 +08:00
|
|
|
|
AMFValue _metadata;
|
2022-12-02 14:43:06 +08:00
|
|
|
|
RtmpDemuxer::Ptr _demuxer;
|
2020-08-30 10:48:34 +08:00
|
|
|
|
MultiMediaSourceMuxer::Ptr _muxer;
|
|
|
|
|
|
|
2017-04-01 16:35:56 +08:00
|
|
|
|
};
|
2018-10-24 17:17:55 +08:00
|
|
|
|
} /* namespace mediakit */
|
2017-04-01 16:35:56 +08:00
|
|
|
|
|
|
|
|
|
|
#endif /* SRC_RTMP_RTMPTORTSPMEDIASOURCE_H_ */
|