aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/ApiEntryPoint.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2017-06-24 14:37:49 -0400
committerGitHub <noreply@github.com>2017-06-24 14:37:49 -0400
commit287178cbf5321ad3e4b21f2e2e374a272a136b75 (patch)
treee97323a2c9c31d0f045cf15ceddbc5f635cef0a7 /MediaBrowser.Api/ApiEntryPoint.cs
parentc9be2c21f42a3590e0c5860728b9b283d7648d5e (diff)
parent31a3e0f5c49804e9acceb7718542d1c04445425b (diff)
Merge pull request #2726 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Api/ApiEntryPoint.cs')
-rw-r--r--MediaBrowser.Api/ApiEntryPoint.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Api/ApiEntryPoint.cs b/MediaBrowser.Api/ApiEntryPoint.cs
index e4abe96f3..34d0bd413 100644
--- a/MediaBrowser.Api/ApiEntryPoint.cs
+++ b/MediaBrowser.Api/ApiEntryPoint.cs
@@ -265,7 +265,8 @@ namespace MediaBrowser.Api
Height = state.OutputHeight,
AudioChannels = state.OutputAudioChannels,
IsAudioDirect = string.Equals(state.OutputAudioCodec, "copy", StringComparison.OrdinalIgnoreCase),
- IsVideoDirect = string.Equals(state.OutputVideoCodec, "copy", StringComparison.OrdinalIgnoreCase)
+ IsVideoDirect = string.Equals(state.OutputVideoCodec, "copy", StringComparison.OrdinalIgnoreCase),
+ TranscodeReasons = state.TranscodeReasons
});
}
}