diff options
Diffstat (limited to 'win/CS/HandBrake.Interop/Interop/Json/Encode/Audio.cs')
-rw-r--r-- | win/CS/HandBrake.Interop/Interop/Json/Encode/Audio.cs | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/win/CS/HandBrake.Interop/Interop/Json/Encode/Audio.cs b/win/CS/HandBrake.Interop/Interop/Json/Encode/Audio.cs new file mode 100644 index 000000000..924185f50 --- /dev/null +++ b/win/CS/HandBrake.Interop/Interop/Json/Encode/Audio.cs @@ -0,0 +1,34 @@ +// -------------------------------------------------------------------------------------------------------------------- +// <copyright file="Audio.cs" company="HandBrake Project (http://handbrake.fr)"> +// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. +// </copyright> +// <summary> +// The audio. +// </summary> +// -------------------------------------------------------------------------------------------------------------------- + +namespace HandBrake.Interop.Interop.Json.Encode +{ + using System.Collections.Generic; + + /// <summary> + /// The audio. + /// </summary> + public class Audio + { + /// <summary> + /// Gets or sets the audio list. + /// </summary> + public List<AudioTrack> AudioList { get; set; } + + /// <summary> + /// Gets or sets the copy mask. + /// </summary> + public uint[] CopyMask { get; set; } + + /// <summary> + /// Gets or sets the fallback encoder. + /// </summary> + public int FallbackEncoder { get; set; } + } +}
\ No newline at end of file |