diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-03-08 14:14:09 -0500 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-03-08 14:14:09 -0500 |
| commit | c4c9126f79f43ad865cfa670bda90a94ffb39d9c (patch) | |
| tree | 765ae58da0ca4c56d14c49072704860a1c0374d8 /MediaBrowser.Api/Playback/BaseStreamingService.cs | |
| parent | bbba73bc6f297cb134c82a96d1899522e7c1e6aa (diff) | |
added more attributes for api docs
Diffstat (limited to 'MediaBrowser.Api/Playback/BaseStreamingService.cs')
| -rw-r--r-- | MediaBrowser.Api/Playback/BaseStreamingService.cs | 6 |
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) { |
