2014-08-29 00:49:25 +00:00
|
|
|
|
using MediaBrowser.Model.Dto;
|
|
|
|
|
using System.Collections.Generic;
|
2014-05-08 20:26:20 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Dlna
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class AudioOptions.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class AudioOptions
|
|
|
|
|
{
|
2014-08-29 00:49:25 +00:00
|
|
|
|
public AudioOptions()
|
|
|
|
|
{
|
|
|
|
|
Context = EncodingContext.Streaming;
|
2016-07-09 17:39:04 +00:00
|
|
|
|
|
|
|
|
|
EnableDirectPlay = true;
|
|
|
|
|
EnableDirectStream = true;
|
2014-08-29 00:49:25 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-07-09 17:39:04 +00:00
|
|
|
|
public bool EnableDirectPlay { get; set; }
|
|
|
|
|
public bool EnableDirectStream { get; set; }
|
2016-07-25 05:12:38 +00:00
|
|
|
|
public bool ForceDirectPlay { get; set; }
|
|
|
|
|
public bool ForceDirectStream { get; set; }
|
2016-07-09 17:39:04 +00:00
|
|
|
|
|
2014-05-08 20:26:20 +00:00
|
|
|
|
public string ItemId { get; set; }
|
|
|
|
|
public List<MediaSourceInfo> MediaSources { get; set; }
|
|
|
|
|
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 int? MaxBitrate { get; set; }
|
2014-07-17 03:17:14 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the context.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The context.</value>
|
|
|
|
|
public EncodingContext Context { get; set; }
|
2014-07-27 22:01:29 +00:00
|
|
|
|
|
2014-08-14 13:24:30 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the audio transcoding bitrate.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The audio transcoding bitrate.</value>
|
|
|
|
|
public int? AudioTranscodingBitrate { get; set; }
|
2015-02-07 03:25:23 +00:00
|
|
|
|
|
2014-07-27 22:01:29 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the maximum bitrate.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>System.Nullable<System.Int32>.</returns>
|
2016-08-23 05:08:07 +00:00
|
|
|
|
public int? GetMaxBitrate(bool isAudio)
|
2014-07-27 22:01:29 +00:00
|
|
|
|
{
|
|
|
|
|
if (MaxBitrate.HasValue)
|
|
|
|
|
{
|
|
|
|
|
return MaxBitrate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (Profile != null)
|
|
|
|
|
{
|
|
|
|
|
if (Context == EncodingContext.Static)
|
|
|
|
|
{
|
2016-08-23 05:08:07 +00:00
|
|
|
|
if (isAudio && Profile.MaxStaticMusicBitrate.HasValue)
|
|
|
|
|
{
|
|
|
|
|
return Profile.MaxStaticMusicBitrate;
|
|
|
|
|
}
|
2014-07-27 22:01:29 +00:00
|
|
|
|
return Profile.MaxStaticBitrate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Profile.MaxStreamingBitrate;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2014-05-08 20:26:20 +00:00
|
|
|
|
}
|
|
|
|
|
}
|