//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace MediaBrowser.Model.MediaInfo;
using global::System;
///
/// How is the audio index determined.
///
[Flags]
public enum AudioIndexSource
{
///
/// The default index when no preference is specified.
///
None = 0,
///
/// The index is calculated whether the track is marked as default or not.
///
Default = 1 << 0,
///
/// The index is calculated whether the track is in preferred language or not.
///
Language = 1 << 1,
///
/// The index is specified by the user.
///
User = 1 << 2,
}