加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
rtsp_properties.h 884 Bytes
一键复制 编辑 原始数据 按行查看 历史
scottxu 提交于 2020-07-03 23:37 . Update rtsp_properties.h
#ifndef RTSP_PROPERTIES_H
#define RTSP_PROPERTIES_H
#include <memory>
#include <QDialog>
#include <obs-module.h>
#include "my_rtsp_output.h"
namespace Ui {
class RtspProperties;
}
class RtspProperties : public QDialog {
Q_OBJECT
public:
explicit RtspProperties(QWidget *parent = 0);
~RtspProperties();
void SetVisable();
void showEvent(QShowEvent *event);
void closeEvent(QCloseEvent *event);
void EnableOptions(bool enable);
void ShowWarning(bool show);
MyRtspOutput *GetMyRtspOutput();
private Q_SLOTS:
void onButtonAddressCopy();
void onStart();
void onStop();
private:
Ui::RtspProperties *ui;
signal_handler_t *signalHandler;
std::unique_ptr<MyRtspOutput> myRtspOutput;
void UpdateParameter();
void SaveSetting();
static void OnStartSignal(void *data, calldata_t *cd);
static void OnStopSignal(void *data, calldata_t *cd);
};
#endif // RTSP_PROPERTIES_H
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化