diff options
Diffstat (limited to 'MediaBrowser.Controller/Dlna/DeviceProfile.cs')
| -rw-r--r-- | MediaBrowser.Controller/Dlna/DeviceProfile.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Dlna/DeviceProfile.cs b/MediaBrowser.Controller/Dlna/DeviceProfile.cs index bdcfc009a..179321a53 100644 --- a/MediaBrowser.Controller/Dlna/DeviceProfile.cs +++ b/MediaBrowser.Controller/Dlna/DeviceProfile.cs @@ -56,12 +56,14 @@ namespace MediaBrowser.Controller.Dlna public string ProtocolInfo { get; set; } public MediaProfile[] MediaProfiles { get; set; } + public CodecProfile[] CodecProfiles { get; set; } public DeviceProfile() { DirectPlayProfiles = new DirectPlayProfile[] { }; TranscodingProfiles = new TranscodingProfile[] { }; MediaProfiles = new MediaProfile[] { }; + CodecProfiles = new CodecProfile[] { }; } } } |
