diff options
author | sr55 <[email protected]> | 2018-07-07 15:20:55 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2018-07-07 15:20:55 +0100 |
commit | 325cb484bfeccb2fa371c7af010c4eb4839c5f37 (patch) | |
tree | 9c8f4ace40f927ac8cc4dc4636ef0a79065e19e2 /win/CS/HandBrake.Interop/Interop/Json/Encode/Audio.cs | |
parent | fb1fe80d8cc9c65a1e3a030c0c61a81134c5efe2 (diff) |
WinGui: Update the Encode Json Factory to produce human readable Json for audio and video encoders.
Diffstat (limited to 'win/CS/HandBrake.Interop/Interop/Json/Encode/Audio.cs')
-rw-r--r-- | win/CS/HandBrake.Interop/Interop/Json/Encode/Audio.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrake.Interop/Interop/Json/Encode/Audio.cs b/win/CS/HandBrake.Interop/Interop/Json/Encode/Audio.cs index 924185f50..59ddd0481 100644 --- a/win/CS/HandBrake.Interop/Interop/Json/Encode/Audio.cs +++ b/win/CS/HandBrake.Interop/Interop/Json/Encode/Audio.cs @@ -24,11 +24,11 @@ namespace HandBrake.Interop.Interop.Json.Encode /// <summary> /// Gets or sets the copy mask. /// </summary> - public uint[] CopyMask { get; set; } + public string[] CopyMask { get; set; } /// <summary> /// Gets or sets the fallback encoder. /// </summary> - public int FallbackEncoder { get; set; } + public string FallbackEncoder { get; set; } } }
\ No newline at end of file |