diff options
| author | Rich Lander <rlander@microsoft.com> | 2021-08-11 13:37:46 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-11 13:37:46 -0700 |
| commit | 1ac2524844e869a7784e3bf2d5adaac81c009b81 (patch) | |
| tree | e32c06473623d1ec5af4d4a4dcac98d8dc6eb9fb | |
| parent | 32d27d71a833f35c313f1ae284e8a74aa06b1b6c (diff) | |
Apply suggestions from code review
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
| -rw-r--r-- | MediaBrowser.Controller/MediaEncoding/IMediaEncoder.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/MediaEncoding/IMediaEncoder.cs b/MediaBrowser.Controller/MediaEncoding/IMediaEncoder.cs index 3aacf92cd..ff2456070 100644 --- a/MediaBrowser.Controller/MediaEncoding/IMediaEncoder.cs +++ b/MediaBrowser.Controller/MediaEncoding/IMediaEncoder.cs @@ -88,7 +88,7 @@ namespace MediaBrowser.Controller.MediaEncoding /// <param name="container">Video container type.</param> /// <param name="mediaSource">Media source information.</param> /// <param name="imageStream">Media stream information.</param> - /// <param name="imageStreamIndex">Time offset.</param> + /// <param name="imageStreamIndex">Index of the stream to extract from.</param> /// <param name="cancellationToken">CancellationToken to use for operation.</param> /// <returns>Location of video image.</returns> Task<string> ExtractVideoImage(string inputFile, string container, MediaSourceInfo mediaSource, MediaStream imageStream, int? imageStreamIndex, CancellationToken cancellationToken); @@ -157,7 +157,7 @@ namespace MediaBrowser.Controller.MediaEncoding void SetFFmpegPath(); /// <summary> - /// Updated the encoder path. + /// Updates the encoder path. /// </summary> /// <param name="path">The path.</param> /// <param name="pathType">The type of path.</param> |
