diff options
author | sr55 <[email protected]> | 2014-06-14 18:59:35 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2014-06-14 18:59:35 +0000 |
commit | 81f1d2b617e535704d9a8bc50192339d22bc6d74 (patch) | |
tree | 67115ed63a9f8c04cdc6ae9ae798e5e00bbd3042 /win | |
parent | 949247a7183c6091f0fde6f5736e87a793990dea (diff) |
WinGui: Missing file from last checkin.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6213 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win')
-rw-r--r-- | win/CS/HandBrake.Interop/HandBrakeInterop/HandBrakeInstance.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/HandBrakeInstance.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/HandBrakeInstance.cs index 521f5912a..597e8cbe7 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/HandBrakeInstance.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/HandBrakeInstance.cs @@ -1289,13 +1289,13 @@ namespace HandBrake.Interop break;
case Anamorphic.Strict:
- nativeJob.anamorphic.mode = 1;
+ nativeJob.anamorphic.mode = hb_anamorphic_mode_t.HB_ANAMORPHIC_STRICT;
nativeJob.anamorphic.par_width = title.ParVal.Width;
nativeJob.anamorphic.par_height = title.ParVal.Height;
break;
case Anamorphic.Loose:
- nativeJob.anamorphic.mode = 2;
+ nativeJob.anamorphic.mode = hb_anamorphic_mode_t.HB_ANAMORPHIC_LOOSE;
nativeJob.modulus = profile.Modulus;
@@ -1307,7 +1307,7 @@ namespace HandBrake.Interop nativeJob.anamorphic.par_height = title.ParVal.Height;
break;
case Anamorphic.Custom:
- nativeJob.anamorphic.mode = 3;
+ nativeJob.anamorphic.mode = hb_anamorphic_mode_t.HB_ANAMORPHIC_CUSTOM;
nativeJob.modulus = profile.Modulus;
|