Updated PlayTo profiles and recognition

This commit is contained in:
7illusions
2014-03-15 17:11:10 +01:00
parent d55af4f529
commit db3b106fe0
5 changed files with 216 additions and 8 deletions

View File

@@ -33,6 +33,14 @@ namespace MediaBrowser.Controller.Dlna
/// <value>The name of the model.</value>
public string ModelName { get; set; }
/// <summary>
/// Gets or sets the manufacturer.
/// </summary>
/// <value>
/// The manufacturer.
/// </value>
public string Manufacturer { get; set; }
/// <summary>
/// Gets or sets the transcoding profiles.
/// </summary>

View File

@@ -22,7 +22,8 @@ namespace MediaBrowser.Controller.Dlna
/// <param name="friendlyName">Name of the friendly.</param>
/// <param name="modelName">Name of the model.</param>
/// <param name="modelNumber">The model number.</param>
/// <returns>DlnaProfile.</returns>
DeviceProfile GetProfile(string friendlyName, string modelName, string modelNumber);
/// <param name="manufacturer">The manufacturer.</param>
/// <returns>DlnaProfile.</</returns>
DeviceProfile GetProfile(string friendlyName, string modelName, string modelNumber, string manufacturer);
}
}