aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback/BaseStreamingService.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-10-19 12:05:03 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-10-19 12:05:03 -0400
commit51c3f270ae80290da75e48b0e4aa838af72b07b6 (patch)
tree98e9b20680e320b0f111ab2e934b2746c2d6a4b3 /MediaBrowser.Api/Playback/BaseStreamingService.cs
parent00bb68d2e8801c3b89b6cb5e5af495aad4f352f5 (diff)
add codec tag value
Diffstat (limited to 'MediaBrowser.Api/Playback/BaseStreamingService.cs')
-rw-r--r--MediaBrowser.Api/Playback/BaseStreamingService.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs
index cf84b839f..36207c8b4 100644
--- a/MediaBrowser.Api/Playback/BaseStreamingService.cs
+++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs
@@ -1993,7 +1993,8 @@ namespace MediaBrowser.Api.Playback
state.IsTargetCabac,
state.TargetRefFrames,
state.TargetVideoStreamCount,
- state.TargetAudioStreamCount);
+ state.TargetAudioStreamCount,
+ state.TargetVideoCodecTag);
if (mediaProfile != null)
{
@@ -2090,7 +2091,8 @@ namespace MediaBrowser.Api.Playback
state.IsTargetCabac,
state.TargetRefFrames,
state.TargetVideoStreamCount,
- state.TargetAudioStreamCount
+ state.TargetAudioStreamCount,
+ state.TargetVideoCodecTag
).FirstOrDefault() ?? string.Empty;
}