diff options
author | sr55 <[email protected]> | 2015-01-17 19:42:42 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2015-01-17 19:42:42 +0000 |
commit | f94cb4643b02325d12f2ef5ee54018e86ef1c1db (patch) | |
tree | 50cef4b1a8754d107f9c7b0849418f464b39ddc5 /win/CS/HandBrake.Interop/HandBrakeInterop | |
parent | 34db38d676420cf1fc827f339f5c894d5b798762 (diff) |
WinGui: Make the Bitrate, compression and quality nullable in the json audiolist object to avoid warnings in the log.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6761 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.Interop/HandBrakeInterop')
-rw-r--r-- | win/CS/HandBrake.Interop/HandBrakeInterop/Json/Encode/AudioList.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Json/Encode/AudioList.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Json/Encode/AudioList.cs index 8227c2777..f78258495 100644 --- a/win/CS/HandBrake.Interop/HandBrakeInterop/Json/Encode/AudioList.cs +++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Json/Encode/AudioList.cs @@ -17,12 +17,12 @@ namespace HandBrake.Interop.Json.Encode /// <summary>
/// Gets or sets the bitrate.
/// </summary>
- public int Bitrate { get; set; }
+ public int? Bitrate { get; set; }
/// <summary>
/// Gets or sets the compression level.
/// </summary>
- public double CompressionLevel { get; set; }
+ public double? CompressionLevel { get; set; }
/// <summary>
/// Gets or sets the drc.
@@ -52,7 +52,7 @@ namespace HandBrake.Interop.Json.Encode /// <summary>
/// Gets or sets the quality.
/// </summary>
- public double Quality { get; set; }
+ public double? Quality { get; set; }
/// <summary>
/// Gets or sets the samplerate.
|