support audio sync transcoding

This commit is contained in:
Luke Pulverenti
2015-01-02 00:36:27 -05:00
parent 24e1f9834a
commit c93740461e
22 changed files with 157 additions and 47 deletions

View File

@@ -46,7 +46,9 @@ namespace MediaBrowser.Server.Implementations.Sync
public DeviceProfile GetDeviceProfile(SyncTarget target)
{
return new DeviceProfile();
var caps = _deviceManager.GetCapabilities(target.Id);
return caps == null || caps.DeviceProfile == null ? new DeviceProfile() : caps.DeviceProfile;
}
public string Name