Update IMediaEncoder.cs

This commit is contained in:
artiume 2020-05-25 17:43:26 -04:00 committed by Vasily
parent 0eb5791c70
commit 62e47d056d

View file

@ -27,21 +27,21 @@ namespace MediaBrowser.Controller.MediaEncoding
string EncoderPath { get; } string EncoderPath { get; }
/// <summary> /// <summary>
/// Supportses the encoder. /// Whether given encoder codec is supported.
/// </summary> /// </summary>
/// <param name="encoder">The encoder.</param> /// <param name="encoder">The encoder.</param>
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns> /// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
bool SupportsEncoder(string encoder); bool SupportsEncoder(string encoder);
/// <summary> /// <summary>
/// Supportses the decoder. /// Whether given decoder codec is supported.
/// </summary> /// </summary>
/// <param name="decoder">The decoder.</param> /// <param name="decoder">The decoder.</param>
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns> /// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
bool SupportsDecoder(string decoder); bool SupportsDecoder(string decoder);
/// <summary> /// <summary>
/// Supportses the hwaccel. /// Whether given hardware acceleration type is supported.
/// </summary> /// </summary>
/// <param name="hwaccel">The hwaccel.</param> /// <param name="hwaccel">The hwaccel.</param>
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns> /// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>