aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback/BaseStreamingService.cs
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-03-08 14:14:09 -0500
committerLukePulverenti <luke.pulverenti@gmail.com>2013-03-08 14:14:09 -0500
commitc4c9126f79f43ad865cfa670bda90a94ffb39d9c (patch)
tree765ae58da0ca4c56d14c49072704860a1c0374d8 /MediaBrowser.Api/Playback/BaseStreamingService.cs
parentbbba73bc6f297cb134c82a96d1899522e7c1e6aa (diff)
added more attributes for api docs
Diffstat (limited to 'MediaBrowser.Api/Playback/BaseStreamingService.cs')
-rw-r--r--MediaBrowser.Api/Playback/BaseStreamingService.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs
index 012a55363..bc07f93de 100644
--- a/MediaBrowser.Api/Playback/BaseStreamingService.cs
+++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs
@@ -516,7 +516,7 @@ namespace MediaBrowser.Api.Playback
EnableRaisingEvents = true
};
- ServerEntryPoint.Instance.OnTranscodeBeginning(outputPath, TranscodingJobType, process);
+ ApiEntryPoint.Instance.OnTranscodeBeginning(outputPath, TranscodingJobType, process);
Logger.Info(process.StartInfo.FileName + " " + process.StartInfo.Arguments);
@@ -535,7 +535,7 @@ namespace MediaBrowser.Api.Playback
{
Logger.ErrorException("Error starting ffmpeg", ex);
- ServerEntryPoint.Instance.OnTranscodeFailedToStart(outputPath, TranscodingJobType);
+ ApiEntryPoint.Instance.OnTranscodeFailedToStart(outputPath, TranscodingJobType);
state.LogFileStream.Dispose();
@@ -586,7 +586,7 @@ namespace MediaBrowser.Api.Playback
process.Dispose();
- ServerEntryPoint.Instance.OnTranscodingFinished(outputFilePath, TranscodingJobType);
+ ApiEntryPoint.Instance.OnTranscodingFinished(outputFilePath, TranscodingJobType);
if (!exitCode.HasValue || exitCode.Value != 0)
{