#pragma once #if defined(ENABLE_VIDEOSTACK) && defined(ENABLE_X264) && defined(ENABLE_FFMPEG) #include "Codec/Transcode.h" #include "Common/Device.h" #include "Player/MediaPlayer.h" #include "json/json.h" #include template class RefWrapper { public: using Ptr = std::shared_ptr>; template explicit RefWrapper(Args&&... args) : _rc(0), _entity(std::forward(args)...) {} T acquire() { ++_rc; return _entity; } bool dispose() { return --_rc <= 0; } private: std::atomic _rc; T _entity; }; class Channel; struct Param { using Ptr = std::shared_ptr; int posX = 0; int posY = 0; int width = 0; int height = 0; AVPixelFormat pixfmt = AV_PIX_FMT_YUV420P; std::string id{}; // runtime std::weak_ptr weak_chn; std::weak_ptr weak_buf; ~Param(); }; using Params = std::shared_ptr>; class Channel : public std::enable_shared_from_this { public: using Ptr = std::shared_ptr; Channel(const std::string& id, int width, int height, AVPixelFormat pixfmt); void addParam(const std::weak_ptr& p); void onFrame(const mediakit::FFmpegFrame::Ptr& frame); void fillBuffer(const Param::Ptr& p); protected: void forEachParam(const std::function& func); void copyData(const mediakit::FFmpegFrame::Ptr& buf, const Param::Ptr& p); private: std::string _id; int _width; int _height; AVPixelFormat _pixfmt; mediakit::FFmpegFrame::Ptr _tmp; std::recursive_mutex _mx; std::vector> _params; mediakit::FFmpegSws::Ptr _sws; toolkit::EventPoller::Ptr _poller; }; class StackPlayer : public std::enable_shared_from_this { public: using Ptr = std::shared_ptr; StackPlayer(const std::string& url) : _url(url) {} void addChannel(const std::weak_ptr& chn); void play(); void onFrame(const mediakit::FFmpegFrame::Ptr& frame); void onDisconnect(); protected: void rePlay(const std::string& url); private: std::string _url; mediakit::MediaPlayer::Ptr _player; // 用于断线重连 toolkit::Timer::Ptr _timer; int _failedCount = 0; std::recursive_mutex _mx; std::vector> _channels; }; class VideoStack { public: using Ptr = std::shared_ptr; VideoStack(const std::string& url, int width = 1920, int height = 1080, AVPixelFormat pixfmt = AV_PIX_FMT_YUV420P, float fps = 25.0, int bitRate = 2 * 1024 * 1024); ~VideoStack(); void setParam(const Params& params); void start(); protected: void initBgColor(); public: Params _params; mediakit::FFmpegFrame::Ptr _buffer; private: std::string _id; int _width; int _height; AVPixelFormat _pixfmt; float _fps; int _bitRate; mediakit::DevChannel::Ptr _dev; bool _isExit; std::thread _thread; }; class VideoStackManager { public: // 创建拼接流 int startVideoStack(const Json::Value& json); // 停止拼接流 int stopVideoStack(const std::string& id); // 可以在不断流的情况下,修改拼接流的配置(实现切换拼接屏内容) int resetVideoStack(const Json::Value& json); public: static VideoStackManager& Instance(); Channel::Ptr getChannel(const std::string& id, int width, int height, AVPixelFormat pixfmt); void unrefChannel(const std::string& id, int width, int height, AVPixelFormat pixfmt); bool loadBgImg(const std::string& path); void clear(); mediakit::FFmpegFrame::Ptr getBgImg(); protected: Params parseParams(const Json::Value& json, std::string& id, int& width, int& height); protected: Channel::Ptr createChannel(const std::string& id, int width, int height, AVPixelFormat pixfmt); StackPlayer::Ptr createPlayer(const std::string& id); private: mediakit::FFmpegFrame::Ptr _bgImg; private: std::recursive_mutex _mx; std::unordered_map _stackMap; std::unordered_map::Ptr> _channelMap; std::unordered_map::Ptr> _playerMap; }; #endif