implemented core subtitle support

This commit is contained in:
itsmattkc
2021-05-18 12:42:47 +10:00
parent 4adaedb304
commit cc21ed37a7
37 changed files with 898 additions and 47 deletions
+6
View File
@@ -25,6 +25,7 @@
#include <QString>
#include "common/define.h"
#include "render/subtitleparams.h"
namespace olive {
@@ -52,6 +53,9 @@ public:
kCodecVorbis,
kCodecFLAC,
// Subtitle codecs
kCodecSRT,
kCodecCount
};
@@ -59,6 +63,8 @@ public:
static bool IsCodecAStillImage(Codec c);
static SubtitleParams::Encoding GetDefaultSubtitleEncoding(Codec c);
};
}