From 20470ea6822b3592cb3f76c543c9e09bedbc5943 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Sun, 10 Aug 2014 06:51:40 -0700 Subject: [PATCH] Actually register the SSA subtitle format --- src/subtitle_format.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/subtitle_format.cpp b/src/subtitle_format.cpp index d2d1573da..6f8f0c341 100644 --- a/src/subtitle_format.cpp +++ b/src/subtitle_format.cpp @@ -44,6 +44,7 @@ #include "subtitle_format_microdvd.h" #include "subtitle_format_mkv.h" #include "subtitle_format_srt.h" +#include "subtitle_format_ssa.h" #include "subtitle_format_transtation.h" #include "subtitle_format_ttxt.h" #include "subtitle_format_txt.h" @@ -267,6 +268,7 @@ void SubtitleFormat::LoadFormats() { formats.emplace_back(agi::make_unique()); formats.emplace_back(agi::make_unique()); formats.emplace_back(agi::make_unique()); + formats.emplace_back(agi::make_unique()); formats.emplace_back(agi::make_unique()); formats.emplace_back(agi::make_unique()); formats.emplace_back(agi::make_unique());