using System;
namespace MediaBrowser.Model.MediaInfo;
///
/// 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
}