diff options
author | sr55 <[email protected]> | 2009-08-25 16:16:00 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2009-08-25 16:16:00 +0000 |
commit | 31f7fbe8dd16aa524a8e3675060423127956a3e9 (patch) | |
tree | 9cb9701a6beba6a5c57a34b22d77d688c6926003 /win/C#/Parsing | |
parent | 9a8b91075cc16230498db80e524a6f3899aac2cd (diff) |
WinGui:
- Fix several issues with Picture Settings panel related to aspect ration and resolution calculation.
- Fix issue where file extension could be mp4 when chapters is enabled. Problem in the autoname function.
- Fix a regex error in the appcast reader and make it more robust to errors.
- Clear up changelog
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2776 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/C#/Parsing')
-rw-r--r-- | win/C#/Parsing/Title.cs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/win/C#/Parsing/Title.cs b/win/C#/Parsing/Title.cs index deee24ad0..9c44330f1 100644 --- a/win/C#/Parsing/Title.cs +++ b/win/C#/Parsing/Title.cs @@ -175,8 +175,6 @@ namespace Handbrake.Parsing @"^ \+ size: ([0-9]*)x([0-9]*), pixel aspect: ([0-9]*)/([0-9]*), display aspect: ([0-9]*\.[0-9]*), ([0-9]*\.[0-9]*) fps");
//size: 720x576, pixel aspect: 16/15, display aspect: 1.33, 25.000 fps
-
-
if (m.Success)
{
thisTitle.m_resolution = new Size(int.Parse(m.Groups[1].Value), int.Parse(m.Groups[2].Value));
|