diff options
| author | 7illusions <z@7illusions.com> | 2014-03-15 17:11:10 +0100 |
|---|---|---|
| committer | 7illusions <z@7illusions.com> | 2014-03-15 17:11:10 +0100 |
| commit | db3b106fe09e8e28a99fc817937113896d5f5169 (patch) | |
| tree | ee18d7f376c22cbc9cc97fddb570e70715c3c656 /MediaBrowser.Controller/Dlna | |
| parent | d55af4f5292236317f572e0bddfe9575a21c4662 (diff) | |
Updated PlayTo profiles and recognition
Diffstat (limited to 'MediaBrowser.Controller/Dlna')
| -rw-r--r-- | MediaBrowser.Controller/Dlna/DeviceProfile.cs | 8 | ||||
| -rw-r--r-- | MediaBrowser.Controller/Dlna/IDlnaManager.cs | 5 |
2 files changed, 11 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Dlna/DeviceProfile.cs b/MediaBrowser.Controller/Dlna/DeviceProfile.cs index 3fecf957b7..f3a3bc1713 100644 --- a/MediaBrowser.Controller/Dlna/DeviceProfile.cs +++ b/MediaBrowser.Controller/Dlna/DeviceProfile.cs @@ -34,6 +34,14 @@ namespace MediaBrowser.Controller.Dlna 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> /// <value>The transcoding profiles.</value> diff --git a/MediaBrowser.Controller/Dlna/IDlnaManager.cs b/MediaBrowser.Controller/Dlna/IDlnaManager.cs index 04f6588055..599b42dd54 100644 --- a/MediaBrowser.Controller/Dlna/IDlnaManager.cs +++ b/MediaBrowser.Controller/Dlna/IDlnaManager.cs @@ -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); } } |
