From f94cb4643b02325d12f2ef5ee54018e86ef1c1db Mon Sep 17 00:00:00 2001 From: sr55 Date: Sat, 17 Jan 2015 19:42:42 +0000 Subject: 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 --- win/CS/HandBrake.Interop/HandBrakeInterop/Json/Encode/AudioList.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'win') 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 /// /// Gets or sets the bitrate. /// - public int Bitrate { get; set; } + public int? Bitrate { get; set; } /// /// Gets or sets the compression level. /// - public double CompressionLevel { get; set; } + public double? CompressionLevel { get; set; } /// /// Gets or sets the drc. @@ -52,7 +52,7 @@ namespace HandBrake.Interop.Json.Encode /// /// Gets or sets the quality. /// - public double Quality { get; set; } + public double? Quality { get; set; } /// /// Gets or sets the samplerate. -- cgit v1.2.3