123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- #ifndef MODULES_RTSP_SINK_INCLUDE_RTSP_SINK_HPP_
- #define MODULES_RTSP_SINK_INCLUDE_RTSP_SINK_HPP_
- #include <memory>
- #include <mutex>
- #include <set>
- #include <string>
- #include <unordered_map>
- #include "cnstream_frame.hpp"
- #include "cnstream_module.hpp"
- #include "cnstream_frame_va.hpp"
- #include "private/cnstream_param.hpp"
- #include "video/video_stream/video_stream.hpp"
- namespace cnstream {
- using CNFrameInfoPtr = std::shared_ptr<CNFrameInfo>;
- struct RtspSinkContext;
- struct RtspSinkParam;
- class RtspSink : public Module, public ModuleCreator<RtspSink> {
- public:
-
- explicit RtspSink(const std::string& name);
-
- ~RtspSink();
-
- bool Open(ModuleParamSet paramSet) override;
-
- void Close() override;
-
- int Process(CNFrameInfoPtr data) override;
- void OnEos(const std::string &stream_id) override;
- private:
- RtspSinkContext * GetContext(CNFrameInfoPtr data);
- RtspSinkContext * CreateContext(CNFrameInfoPtr data, const std::string &stream_id);
- ModuleParamsHelper<RtspSinkParam>* param_helper_ = nullptr;
- int stream_index_ = 0;
- std::mutex ctx_lock_;
- std::unordered_map<std::string, RtspSinkContext *> contexts_;
- std::set<std::string> tile_streams_;
- };
- }
- #endif
|