// --------------------------------------------------------------------------------------------------------------------
//
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
//
//
// The audio track defaults mode.
//
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrakeWPF.Model.Audio
{
using HandBrake.ApplicationServices.Attributes;
///
/// The audio behaviours.
///
public enum AudioTrackDefaultsMode
{
[DisplayName("Default")]
None = 0,
[DisplayName("Use First Track as template")]
FirstTrack,
[DisplayName("Use All Tracks as templates")]
AllTracks,
}
}