jellyfin/MediaBrowser.Model/Dlna/AudioOptions.cs

95 lines
2.5 KiB
C#
Raw Normal View History

#nullable disable
2020-02-03 19:49:27 -05:00
#pragma warning disable CS1591
using System;
using MediaBrowser.Model.Dto;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Model.Dlna
{
/// <summary>
/// Class AudioOptions.
/// </summary>
public class AudioOptions
{
public AudioOptions()
{
Context = EncodingContext.Streaming;
EnableDirectPlay = true;
EnableDirectStream = true;
}
public bool EnableDirectPlay { get; set; }
2018-12-27 18:27:57 -05:00
public bool EnableDirectStream { get; set; }
2018-12-27 18:27:57 -05:00
public bool ForceDirectPlay { get; set; }
2018-12-27 18:27:57 -05:00
public bool ForceDirectStream { get; set; }
public Guid ItemId { get; set; }
2018-12-27 18:27:57 -05:00
public MediaSourceInfo[] MediaSources { get; set; }
2018-12-27 18:27:57 -05:00
public DeviceProfile Profile { get; set; }
/// <summary>
/// Optional. Only needed if a specific AudioStreamIndex or SubtitleStreamIndex are requested.
/// </summary>
public string MediaSourceId { get; set; }
public string DeviceId { get; set; }
/// <summary>
/// Allows an override of supported number of audio channels
/// Example: DeviceProfile supports five channel, but user only has stereo speakers
/// </summary>
public int? MaxAudioChannels { get; set; }
/// <summary>
/// The application's configured quality setting
/// </summary>
public long? MaxBitrate { get; set; }
/// <summary>
/// Gets or sets the context.
/// </summary>
/// <value>The context.</value>
public EncodingContext Context { get; set; }
/// <summary>
/// Gets or sets the audio transcoding bitrate.
/// </summary>
/// <value>The audio transcoding bitrate.</value>
public int? AudioTranscodingBitrate { get; set; }
2019-01-07 18:27:46 -05:00
2018-12-27 18:27:57 -05:00
/// <summary>
/// Gets the maximum bitrate.
/// </summary>
/// <returns>System.Nullable&lt;System.Int32&gt;.</returns>
public long? GetMaxBitrate(bool isAudio)
{
if (MaxBitrate.HasValue)
{
return MaxBitrate;
}
2019-01-20 05:34:33 -05:00
if (Profile == null)
2018-12-27 18:27:57 -05:00
{
2019-01-20 05:34:33 -05:00
return null;
}
if (Context == EncodingContext.Static)
{
if (isAudio && Profile.MaxStaticMusicBitrate.HasValue)
2018-12-27 18:27:57 -05:00
{
2019-01-20 05:34:33 -05:00
return Profile.MaxStaticMusicBitrate;
2018-12-27 18:27:57 -05:00
}
2019-01-20 05:34:33 -05:00
return Profile.MaxStaticBitrate;
2018-12-27 18:27:57 -05:00
}
2019-01-20 05:34:33 -05:00
return Profile.MaxStreamingBitrate;
2018-12-27 18:27:57 -05:00
}
}
}