Skip to content

Commit

Permalink
allow SSA/ASS in external subtitle files
Browse files Browse the repository at this point in the history
Support for SSA/ASS was added in #9294

Support in external files was tested by BLZbubba on IRC
https://irc.mythtv.org/ircLog/channel/4/2015-09-18:14:33:57/2015-09-18:14:34:08
  • Loading branch information
dekarl committed Sep 19, 2015
1 parent 90b9852 commit 970bf5c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions mythtv/libs/libmythtv/ringbuffer.cpp
Expand Up @@ -251,7 +251,10 @@ RingBuffer::RingBuffer(RingBufferType rbtype) :
if (subExt.empty())
{
// Possible subtitle file extensions '.srt', '.sub', '.txt'
// since #9294 also .ass and .ssa
subExt += ".ass";
subExt += ".srt";
subExt += ".ssa";
subExt += ".sub";
subExt += ".txt";

Expand Down

0 comments on commit 970bf5c

Please sign in to comment.