diff options
author | sr55 <[email protected]> | 2017-12-09 15:56:46 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2017-12-09 16:05:46 +0000 |
commit | 238a830dbddec68f597023da5025ecda20a9c177 (patch) | |
tree | 04b33019ec5158a6fcc16534cc6c12463d198f7a /win/CS/HandBrake.ApplicationServices/Interop | |
parent | 808736004b3481eacc6522abd5cd3a6e7e33009f (diff) |
WinGui: Fix ChannelLayout. Int -> Long #1045
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Interop')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Interop/Json/Scan/SourceAudioTrack.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Interop/Json/Scan/SourceAudioTrack.cs b/win/CS/HandBrake.ApplicationServices/Interop/Json/Scan/SourceAudioTrack.cs index 62335eeff..3cdba5794 100644 --- a/win/CS/HandBrake.ApplicationServices/Interop/Json/Scan/SourceAudioTrack.cs +++ b/win/CS/HandBrake.ApplicationServices/Interop/Json/Scan/SourceAudioTrack.cs @@ -22,7 +22,7 @@ namespace HandBrake.ApplicationServices.Interop.Json.Scan /// <summary>
/// Gets or sets the channel layout.
/// </summary>
- public int ChannelLayout { get; set; }
+ public long ChannelLayout { get; set; }
/// <summary>
/// Gets or sets the description.
|