Files
video-shader-toys/src/video/DeckLinkOutputThread.h
2026-05-22 14:58:42 +10:00

13 lines
316 B
C++

#pragma once
#include "VideoOutputThread.h"
namespace RenderCadenceCompositor
{
using DeckLinkOutputThreadConfig = VideoOutputThreadConfig;
using DeckLinkOutputThreadMetrics = VideoOutputThreadMetrics;
template <typename SystemFrameExchange>
using DeckLinkOutputThread = VideoOutputThread<SystemFrameExchange>;
}