Files
ZLMediaKit/src/Rtmp/RtmpMediaSourceImp.h

101 lines
2.5 KiB
C++
Raw Normal View History

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
*
* 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"
#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>;
2020-03-20 11:51:24 +08:00
/**
*
* @param vhost
* @param app
* @param id id
* @param ringSize
*/
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
*/
void setMetaData(const AMFValue &metadata) override;
2020-03-20 11:51:24 +08:00
/**
* rtmp并解析
*/
void onWrite(RtmpPacket::Ptr pkt, bool = true) override;
2019-12-28 16:48:11 +08:00
/**
* (hls/rtsp/rtmp)
*/
int totalReaderCount() override;
2019-08-22 17:48:10 +08:00
2020-03-20 11:51:24 +08:00
/**
*
*/
void setProtocolOption(const ProtocolOption &option);
const ProtocolOption &getProtocolOption() const {
return _option;
}
2020-03-20 11:51:24 +08:00
/**
* _demuxer触发的添加Track事件
*/
bool addTrack(const Track::Ptr &track) override;
2021-04-20 17:53:43 +08:00
/**
* _demuxer触发的Track添加完毕事件
*/
void addTrackCompleted() override;
2021-04-20 17:53:43 +08:00
void resetTracks() override;
2021-04-20 17:53:43 +08:00
2020-03-20 11:51:24 +08:00
/**
* _muxer触发的所有Track就绪的事件
*/
void onAllTrackReady() override;
/**
*
* @param listener
*/
void setListener(const std::weak_ptr<MediaSourceEvent> &listener) override;
2017-04-01 16:35:56 +08:00
private:
bool _all_track_ready = false;
bool _recreate_metadata = false;
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_ */