diff options
author | sr55 <[email protected]> | 2015-01-09 20:21:13 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2015-01-09 20:21:13 +0000 |
commit | 9772731f48920014d889e9e8bcf4035b120a6e42 (patch) | |
tree | df0f2ca198ab3f4c0e234899f5cf57a5a1d1b2ef /win/CS/HandBrake.Interop/HandBrakeInterop | |
parent | 6301bd5b63dd8c7e095331d22fe196210c79f316 (diff) |
WinGui: Remove "Aspect Ratio" Display on the Picture tab. It's not really useful to anyone.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6702 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.Interop/HandBrakeInterop')
3 files changed, 1 insertions, 7 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/HandBrakeInstance.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/HandBrakeInstance.cs index 7a7aaab5c..a62fb82fe 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/HandBrakeInstance.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/HandBrakeInstance.cs @@ -616,7 +616,7 @@ namespace HandBrake.Interop lastScan = scanObject;
foreach (Title title in ScanFactory.CreateTitleSet(scanObject))
- {
+ {
// Set the Main Title.
this.featureTitle = title.IsMainFeature ? title.TitleNumber : 0;
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Json/Factories/ScanFactory.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Json/Factories/ScanFactory.cs index e8153b239..61ffa892e 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/Json/Factories/ScanFactory.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Json/Factories/ScanFactory.cs @@ -78,7 +78,6 @@ namespace HandBrake.Interop.Json.Factories Left = title.Crop[2],
Right = title.Crop[3]
},
- //AspectRatio = (double)title.Geometry.DAR.Width / title.Geometry.DAR.Height,
AngleCount = title.AngleCount,
VideoCodecName = title.VideoCodec,
Framerate = ((double)title.FrameRate.Num) / title.FrameRate.Den,
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Scan/Title.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Scan/Title.cs index 8f5880123..3b2baa27d 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Scan/Title.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Scan/Title.cs @@ -94,11 +94,6 @@ namespace HandBrake.Interop.Model.Scan public Size Resolution { get; set; }
/// <summary>
- /// Gets or sets the aspect ratio of this Title
- /// </summary>
- public decimal AspectRatio { get; set; }
-
- /// <summary>
/// Gets or sets the number of angles on the title.
/// </summary>
public int AngleCount { get; set; }
|