summaryrefslogtreecommitdiffstats
path: root/win/CS
diff options
context:
space:
mode:
authorsr55 <[email protected]>2012-11-22 19:16:16 +0000
committersr55 <[email protected]>2012-11-22 19:16:16 +0000
commitc4250b87a11587ac17543af6890359be2f8fdebc (patch)
tree0aa2203ac656c3bec36829768e8c22ec2c92b899 /win/CS
parenta020ee671a4baa3cfc03aa408776707a79e184b9 (diff)
WinGui: Quick fix to restore building of the app.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5079 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS')
-rw-r--r--win/CS/HandBrake.ApplicationServices/Utilities/InteropModelCreator.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Utilities/InteropModelCreator.cs b/win/CS/HandBrake.ApplicationServices/Utilities/InteropModelCreator.cs
index 6a5be06cb..8f9260079 100644
--- a/win/CS/HandBrake.ApplicationServices/Utilities/InteropModelCreator.cs
+++ b/win/CS/HandBrake.ApplicationServices/Utilities/InteropModelCreator.cs
@@ -84,7 +84,7 @@ namespace HandBrake.ApplicationServices.Utilities
Right = work.Cropping.Right
};
- profile.CustomCropping = true; // TODO deal with this better
+ profile.CroppingType = CroppingType.Custom; // TODO deal with this better
profile.CustomDecomb = work.CustomDecomb;
profile.CustomDeinterlace = work.CustomDeinterlace;
profile.CustomDenoise = work.CustomDenoise;
@@ -118,7 +118,7 @@ namespace HandBrake.ApplicationServices.Utilities
profile.OutputFormat = Container.Mkv;
break;
}
- profile.PeakFramerate = work.FramerateMode == FramerateMode.PFR;
+ profile.ConstantFramerate = work.FramerateMode == FramerateMode.CFR;
profile.PixelAspectX = work.PixelAspectX;
profile.PixelAspectY = work.PixelAspectY;