Merge pull request #3343 from telans/comment-stops

Add full stop at end of comments (SA1629)
This commit is contained in:
Bond-009
2020-06-16 11:54:58 +02:00
committed by GitHub
269 changed files with 816 additions and 816 deletions

View File

@@ -110,7 +110,7 @@ namespace MediaBrowser.Controller.MediaEncoding
}
/// <summary>
/// Gets the name of the output video codec
/// Gets the name of the output video codec.
/// </summary>
public string GetVideoEncoder(EncodingJobInfo state, EncodingOptions encodingOptions)
{
@@ -287,7 +287,7 @@ namespace MediaBrowser.Controller.MediaEncoding
}
/// <summary>
/// Infers the audio codec based on the url
/// Infers the audio codec based on the url.
/// </summary>
public string InferAudioCodec(string container)
{
@@ -717,7 +717,7 @@ namespace MediaBrowser.Controller.MediaEncoding
}
/// <summary>
/// Gets the video bitrate to specify on the command line
/// Gets the video bitrate to specify on the command line.
/// </summary>
public string GetVideoQualityParam(EncodingJobInfo state, string videoEncoder, EncodingOptions encodingOptions, string defaultPreset)
{
@@ -1314,7 +1314,7 @@ namespace MediaBrowser.Controller.MediaEncoding
}
/// <summary>
/// Gets the number of audio channels to specify on the command line
/// Gets the number of audio channels to specify on the command line.
/// </summary>
/// <param name="state">The state.</param>
/// <param name="audioStream">The audio stream.</param>
@@ -1500,7 +1500,7 @@ namespace MediaBrowser.Controller.MediaEncoding
}
/// <summary>
/// Determines which stream will be used for playback
/// Determines which stream will be used for playback.
/// </summary>
/// <param name="allStream">All stream.</param>
/// <param name="desiredIndex">Index of the desired.</param>
@@ -1977,7 +1977,7 @@ namespace MediaBrowser.Controller.MediaEncoding
}
/// <summary>
/// If we're going to put a fixed size on the command line, this will calculate it
/// If we're going to put a fixed size on the command line, this will calculate it.
/// </summary>
public string GetOutputSizeParam(
EncodingJobInfo state,
@@ -2521,7 +2521,7 @@ namespace MediaBrowser.Controller.MediaEncoding
}
/// <summary>
/// Gets the name of the output video codec
/// Gets the name of the output video codec.
/// </summary>
protected string GetHardwareAcceleratedVideoDecoder(EncodingJobInfo state, EncodingOptions encodingOptions)
{

View File

@@ -425,7 +425,7 @@ namespace MediaBrowser.Controller.MediaEncoding
}
/// <summary>
/// Predicts the audio sample rate that will be in the output stream
/// Predicts the audio sample rate that will be in the output stream.
/// </summary>
public double? TargetVideoLevel
{
@@ -448,7 +448,7 @@ namespace MediaBrowser.Controller.MediaEncoding
}
/// <summary>
/// Predicts the audio sample rate that will be in the output stream
/// Predicts the audio sample rate that will be in the output stream.
/// </summary>
public int? TargetVideoBitDepth
{
@@ -483,7 +483,7 @@ namespace MediaBrowser.Controller.MediaEncoding
}
/// <summary>
/// Predicts the audio sample rate that will be in the output stream
/// Predicts the audio sample rate that will be in the output stream.
/// </summary>
public float? TargetFramerate
{
@@ -515,7 +515,7 @@ namespace MediaBrowser.Controller.MediaEncoding
}
/// <summary>
/// Predicts the audio sample rate that will be in the output stream
/// Predicts the audio sample rate that will be in the output stream.
/// </summary>
public int? TargetPacketLength
{
@@ -531,7 +531,7 @@ namespace MediaBrowser.Controller.MediaEncoding
}
/// <summary>
/// Predicts the audio sample rate that will be in the output stream
/// Predicts the audio sample rate that will be in the output stream.
/// </summary>
public string TargetVideoProfile
{
@@ -687,20 +687,20 @@ namespace MediaBrowser.Controller.MediaEncoding
}
/// <summary>
/// Enum TranscodingJobType
/// Enum TranscodingJobType.
/// </summary>
public enum TranscodingJobType
{
/// <summary>
/// The progressive
/// The progressive.
/// </summary>
Progressive,
/// <summary>
/// The HLS
/// The HLS.
/// </summary>
Hls,
/// <summary>
/// The dash
/// The dash.
/// </summary>
Dash
}

View File

@@ -11,7 +11,7 @@ using MediaBrowser.Model.System;
namespace MediaBrowser.Controller.MediaEncoding
{
/// <summary>
/// Interface IMediaEncoder
/// Interface IMediaEncoder.
/// </summary>
public interface IMediaEncoder : ITranscoderSupport
{

View File

@@ -7,7 +7,7 @@ using MediaBrowser.Model.IO;
namespace MediaBrowser.Controller.MediaEncoding
{
/// <summary>
/// Class MediaEncoderHelpers
/// Class MediaEncoderHelpers.
/// </summary>
public static class MediaEncoderHelpers
{