Bond_009 пре 6 година
родитељ
комит
73df5bdbe9
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      MediaBrowser.Api/Playback/StreamState.cs

+ 1 - 1
MediaBrowser.Api/Playback/StreamState.cs

@@ -167,7 +167,7 @@ namespace MediaBrowser.Api.Playback
         public DeviceProfile DeviceProfile { get; set; }
 
         public TranscodingJob TranscodingJob;
-        public void ReportTranscodingProgress(TimeSpan? transcodingPosition, float? framerate, double? percentComplete, long? bytesTranscoded, int? bitRate)
+        public override void ReportTranscodingProgress(TimeSpan? transcodingPosition, float framerate, double? percentComplete, long bytesTranscoded, int? bitRate)
         {
             ApiEntryPoint.Instance.ReportTranscodingProgress(TranscodingJob, this, transcodingPosition, framerate, percentComplete, bytesTranscoded, bitRate);
         }