mistserver/lib/subtitles.h
2021-10-19 22:29:40 +02:00

14 lines
227 B
C++

#pragma once
#include "dtsc.h"
#include <string>
namespace Subtitle{
struct Packet{
std::string subtitle;
uint64_t duration;
};
Packet getSubtitle(DTSC::Packet packet, DTSC::Meta meta);
}// namespace Subtitle