mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-26 03:57:12 +00:00
display additional transcoding info in dashboard
This commit is contained in:
@@ -226,5 +226,18 @@ namespace MediaBrowser.Controller.Session
|
||||
/// <param name="sessionId">The session identifier.</param>
|
||||
/// <param name="capabilities">The capabilities.</param>
|
||||
void ReportCapabilities(string sessionId, SessionCapabilities capabilities);
|
||||
|
||||
/// <summary>
|
||||
/// Reports the transcoding information.
|
||||
/// </summary>
|
||||
/// <param name="deviceId">The device identifier.</param>
|
||||
/// <param name="info">The information.</param>
|
||||
void ReportTranscodingInfo(string deviceId, TranscodingInfo info);
|
||||
|
||||
/// <summary>
|
||||
/// Clears the transcoding information.
|
||||
/// </summary>
|
||||
/// <param name="deviceId">The device identifier.</param>
|
||||
void ClearTranscodingInfo(string deviceId);
|
||||
}
|
||||
}
|
||||
@@ -122,6 +122,8 @@ namespace MediaBrowser.Controller.Session
|
||||
/// <value>The supported commands.</value>
|
||||
public List<string> SupportedCommands { get; set; }
|
||||
|
||||
public TranscodingInfo TranscodingInfo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets a value indicating whether this instance is active.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user