diff --git a/MediaBrowser.Api/ApiEntryPoint.cs b/MediaBrowser.Api/ApiEntryPoint.cs index 7c655ef88e..d386373d4b 100644 --- a/MediaBrowser.Api/ApiEntryPoint.cs +++ b/MediaBrowser.Api/ApiEntryPoint.cs @@ -172,19 +172,8 @@ namespace MediaBrowser.Api if (!string.IsNullOrWhiteSpace(deviceId)) { - var audioCodec = state.Request.AudioCodec; - var videoCodec = state.VideoRequest == null ? null : state.VideoRequest.VideoCodec; - - if (string.Equals(state.OutputAudioCodec, "copy", StringComparison.OrdinalIgnoreCase) || - string.IsNullOrEmpty(audioCodec)) - { - audioCodec = state.OutputAudioCodec; - } - if (string.Equals(state.OutputVideoCodec, "copy", StringComparison.OrdinalIgnoreCase) || - string.IsNullOrEmpty(videoCodec)) - { - videoCodec = state.OutputVideoCodec; - } + var audioCodec = state.ActualOutputVideoCodec; + var videoCodec = state.ActualOutputVideoCodec; _sessionManager.ReportTranscodingInfo(deviceId, new TranscodingInfo { diff --git a/MediaBrowser.Api/MediaBrowser.Api.csproj b/MediaBrowser.Api/MediaBrowser.Api.csproj index 5d8a24f9ab..b233629e1f 100644 --- a/MediaBrowser.Api/MediaBrowser.Api.csproj +++ b/MediaBrowser.Api/MediaBrowser.Api.csproj @@ -172,13 +172,6 @@ - - - - This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - -