diff options
author | randomengy <[email protected]> | 2013-08-23 03:06:23 +0000 |
---|---|---|
committer | randomengy <[email protected]> | 2013-08-23 03:06:23 +0000 |
commit | 1270ebc49fc8dc11ea509815094faacfa8338834 (patch) | |
tree | e6deed5b54b8c45f4efab2d42ce56f2579ec42cf /win/CS/HandBrake.Interop/HandBrakeInterop/Model/BitrateLimits.cs | |
parent | bd8ccfa4473bdad2340a6a191d465f2252e62efe (diff) |
Interop: Updated some structs to keep up with libhb. Exposed video quality limits. Exposed libhb language list. Suppressed a non-fatal avformat seek error. Fixed localization error in video rates list. Fixed missing sample rate for encoder-specific passthroughs. Fixed "disabled" quality level.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5740 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.Interop/HandBrakeInterop/Model/BitrateLimits.cs')
-rw-r--r-- | win/CS/HandBrake.Interop/HandBrakeInterop/Model/BitrateLimits.cs | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/BitrateLimits.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/BitrateLimits.cs index ed9905960..322ff5c9c 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/BitrateLimits.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/BitrateLimits.cs @@ -5,23 +5,23 @@ // <summary>
// Defines the BitrateLimits type.
// </summary>
-// -------------------------------------------------------------------------------------------------------------------- - -namespace HandBrake.Interop.Model +// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrake.Interop.Model
{
- /// <summary>
- /// The bitrate limits.
- /// </summary>
- public class BitrateLimits + /// <summary>
+ /// Represents bitrate limits as a range.
+ /// </summary>
+ public class BitrateLimits
{
- /// <summary>
- /// Gets or sets the low.
- /// </summary>
- public int Low { get; set; }
+ /// <summary>
+ /// The inclusive lower limit for the bitrate.
+ /// </summary>
+ public int Low { get; set; }
- /// <summary>
- /// Gets or sets the high.
- /// </summary>
- public int High { get; set; } - } -} + /// <summary>
+ /// The inclusive upper limit for the bitrate.
+ /// </summary>
+ public int High { get; set; }
+ }
+}
|