diff options
author | sr55 <[email protected]> | 2016-04-09 15:24:50 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2016-04-09 15:24:50 +0100 |
commit | d3866786b03887914eb66f06dc1a529036e86244 (patch) | |
tree | 884d7e41c3af9debcafb0bda76d78f9222fd1eca /win/CS/HandBrake.ApplicationServices/Interop | |
parent | 478431fc9ca190a8a43df354bd0a872903bb6c02 (diff) |
WinGui: Sanitise all Mixdown selections. Passthru the Codec into the Scanned Track object.
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Interop')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Interop/Json/Scan/SourceAudioTrack.cs | 88 |
1 files changed, 44 insertions, 44 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/Json/Scan/SourceAudioTrack.cs b/win/CS/HandBrake.ApplicationServices/Interop/Json/Scan/SourceAudioTrack.cs index b26baea0e..3185694a8 100644 --- a/win/CS/HandBrake.ApplicationServices/Interop/Json/Scan/SourceAudioTrack.cs +++ b/win/CS/HandBrake.ApplicationServices/Interop/Json/Scan/SourceAudioTrack.cs @@ -5,48 +5,48 @@ // <summary>
// An audio track from the source video.
// </summary>
-// -------------------------------------------------------------------------------------------------------------------- - -namespace HandBrake.ApplicationServices.Interop.Json.Scan -{ - /// <summary> - /// An audio track from the source video. - /// </summary> - public class SourceAudioTrack - { - /// <summary> - /// Gets or sets the bit rate. - /// </summary> - public int BitRate { get; set; } - - /// <summary> - /// Gets or sets the channel layout. - /// </summary> - public int ChannelLayout { get; set; } - - /// <summary> - /// Gets or sets the description. - /// </summary> - public string Description { get; set; } - - /// <summary> - /// Gets or sets the language. - /// </summary> - public string Language { get; set; } - - /// <summary> - /// Gets or sets the language code. - /// </summary> - public string LanguageCode { get; set; } - - /// <summary> - /// Gets or sets the sample rate. - /// </summary> - public int SampleRate { get; set; } - - /// <summary> - /// Gets or sets the codec. - /// </summary> - public int Codec { get; set; } - } +// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrake.ApplicationServices.Interop.Json.Scan
+{
+ /// <summary>
+ /// An audio track from the source video.
+ /// </summary>
+ public class SourceAudioTrack
+ {
+ /// <summary>
+ /// Gets or sets the bit rate.
+ /// </summary>
+ public int BitRate { get; set; }
+
+ /// <summary>
+ /// Gets or sets the channel layout.
+ /// </summary>
+ public int ChannelLayout { get; set; }
+
+ /// <summary>
+ /// Gets or sets the description.
+ /// </summary>
+ public string Description { get; set; }
+
+ /// <summary>
+ /// Gets or sets the language.
+ /// </summary>
+ public string Language { get; set; }
+
+ /// <summary>
+ /// Gets or sets the language code.
+ /// </summary>
+ public string LanguageCode { get; set; }
+
+ /// <summary>
+ /// Gets or sets the sample rate.
+ /// </summary>
+ public int SampleRate { get; set; }
+
+ /// <summary>
+ /// Gets or sets the codec.
+ /// </summary>
+ public int Codec { get; set; }
+ }
}
\ No newline at end of file |