mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-23 03:33:18 +01:00
VobSub compatibility now better with SubtitleCreator (reduced compression a bit)
git-svn-id: https://subtitleedit.googlecode.com/svn/trunk@1631 99eadd0c-20b8-1223-b5c4-2a2b2df33de2
This commit is contained in:
parent
39ac6d350f
commit
23ce62d07d
@ -220,7 +220,7 @@ namespace Nikse.SubtitleEdit.Logic
|
||||
lastColor = color;
|
||||
count = 1;
|
||||
}
|
||||
else if (lastColor == color)
|
||||
else if (lastColor == color && count < 64) // only allow up to 63 run-length (for SubtitleCreator compatibility)
|
||||
{
|
||||
count++;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user