aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-11-17 21:48:22 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-11-17 21:48:22 -0500
commit124754a04f1a85fc949e229e45bfd67e5ac6ff62 (patch)
treec5bad076801d85ae7eef9de7041efe407dacbd92 /MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs
parent049ef9b4ecd2c884e0ddb062b606770ef7f2dfa9 (diff)
use new naming project
Diffstat (limited to 'MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs')
-rw-r--r--MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs2
1 files changed, 0 insertions, 2 deletions
diff --git a/MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs b/MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs
index 97565cdc3..0b32ae052 100644
--- a/MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs
+++ b/MediaBrowser.Api/Playback/Hls/DynamicHlsService.cs
@@ -120,7 +120,6 @@ namespace MediaBrowser.Api.Playback.Hls
if (File.Exists(segmentPath))
{
- job = ApiEntryPoint.Instance.OnTranscodeBeginRequest(playlistPath, TranscodingJobType);
return await GetSegmentResult(playlistPath, segmentPath, index, segmentLength, job, cancellationToken).ConfigureAwait(false);
}
@@ -129,7 +128,6 @@ namespace MediaBrowser.Api.Playback.Hls
{
if (File.Exists(segmentPath))
{
- job = ApiEntryPoint.Instance.OnTranscodeBeginRequest(playlistPath, TranscodingJobType);
return await GetSegmentResult(playlistPath, segmentPath, index, segmentLength, job, cancellationToken).ConfigureAwait(false);
}
else