diff options
author | sr55 <[email protected]> | 2012-04-29 00:33:13 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-04-29 00:33:13 +0000 |
commit | c412ca81dd55d568c362ddef07de52dab90fcf4d (patch) | |
tree | c1c48828d8b7efaecd086f7875594c4532de3dbb /win/CS/HandBrake.ApplicationServices/Parsing/Subtitle.cs | |
parent | 78a297cb5580f37bca62cd660d3a04a72bcf7681 (diff) |
WinGui: Basic support for PGS subtitles in the forms UI.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4612 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Parsing/Subtitle.cs')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Parsing/Subtitle.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Parsing/Subtitle.cs b/win/CS/HandBrake.ApplicationServices/Parsing/Subtitle.cs index 5e7b89a10..d42cb0c22 100644 --- a/win/CS/HandBrake.ApplicationServices/Parsing/Subtitle.cs +++ b/win/CS/HandBrake.ApplicationServices/Parsing/Subtitle.cs @@ -126,6 +126,9 @@ namespace HandBrake.ApplicationServices.Parsing case "SSA":
thisSubtitle.SubtitleType = SubtitleType.SSA;
break;
+ case "PGS":
+ thisSubtitle.SubtitleType = SubtitleType.PGS;
+ break;
default:
thisSubtitle.SubtitleType = SubtitleType.Unknown;
break;
|