diff options
| author | Luke <luke.pulverenti@gmail.com> | 2017-06-24 14:37:49 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-24 14:37:49 -0400 |
| commit | 287178cbf5321ad3e4b21f2e2e374a272a136b75 (patch) | |
| tree | e97323a2c9c31d0f045cf15ceddbc5f635cef0a7 /MediaBrowser.Api/ApiEntryPoint.cs | |
| parent | c9be2c21f42a3590e0c5860728b9b283d7648d5e (diff) | |
| parent | 31a3e0f5c49804e9acceb7718542d1c04445425b (diff) | |
Merge pull request #2726 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Api/ApiEntryPoint.cs')
| -rw-r--r-- | MediaBrowser.Api/ApiEntryPoint.cs | 3 |
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 }); } } |
