first commit

This commit is contained in:
2026-02-21 17:11:31 +09:00
commit 18b4338361
4001 changed files with 365464 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
#ifndef RM_FRAME_VIDEO_SUB_H
#define RM_FRAME_VIDEO_SUB_H
#include "../rm_include.h"
#include "../core/rm_player_base.h"
#include "rm_frame_video_base.h"
class RMVideoItem;
class RMButton;
class RMFrameVideoSub : public RMFrameVideoBase
{
Q_OBJECT
#if (RM_TESTING)
friend class RMTestProcess;
#endif
public:
explicit RMFrameVideoSub(QWidget *parent = nullptr);
private:
#if !((DUAL_CH_FILE && !DUAL_CH_1CH_EXIST) || SINGLE_CH_VIEWER)
bool _temporarySwap; // 전후방 토글 상태에서 1CH 파일이 로딩될 경우 임시 토글
#endif
protected:
public slots:
void onPlayEvent(PLAY_EVENT event, RMVideoItem* item);
};
#endif // RM_FRAME_VIDEO_SUB_H