Fix xmldoc issues

pull/6600/head
cvium 3 years ago
parent 30230aff73
commit ee8bd9b3b5

@ -29,7 +29,7 @@ namespace Jellyfin.MediaEncoding.Keyframes
/// <param name="filePath">Absolute file path to the media file.</param> /// <param name="filePath">Absolute file path to the media file.</param>
/// <param name="ffProbePath">Absolute file path to the ffprobe executable.</param> /// <param name="ffProbePath">Absolute file path to the ffprobe executable.</param>
/// <param name="ffToolPath">Absolute file path to the fftool executable.</param> /// <param name="ffToolPath">Absolute file path to the fftool executable.</param>
/// <returns></returns> /// <returns>An instance of <see cref="KeyframeData"/>.</returns>
public KeyframeData GetKeyframeData(string filePath, string ffProbePath, string ffToolPath) public KeyframeData GetKeyframeData(string filePath, string ffProbePath, string ffToolPath)
{ {
var extension = Path.GetExtension(filePath); var extension = Path.GetExtension(filePath);

@ -49,7 +49,7 @@ namespace Jellyfin.MediaEncoding.Keyframes.Matroska.Extensions
/// Reads from the start of the file to retrieve the SeekHead segment. /// Reads from the start of the file to retrieve the SeekHead segment.
/// </summary> /// </summary>
/// <param name="reader">An instance of <see cref="EbmlReader"/>.</param> /// <param name="reader">An instance of <see cref="EbmlReader"/>.</param>
/// <returns>Instance of <see cref="SeekHead"/></returns> /// <returns>Instance of <see cref="SeekHead"/>.</returns>
internal static SeekHead ReadSeekHead(this EbmlReader reader) internal static SeekHead ReadSeekHead(this EbmlReader reader)
{ {
reader = reader ?? throw new ArgumentNullException(nameof(reader)); reader = reader ?? throw new ArgumentNullException(nameof(reader));
@ -121,7 +121,7 @@ namespace Jellyfin.MediaEncoding.Keyframes.Matroska.Extensions
/// </summary> /// </summary>
/// <param name="reader">An instance of <see cref="EbmlReader"/>.</param> /// <param name="reader">An instance of <see cref="EbmlReader"/>.</param>
/// <param name="position">The position of the info segment relative to the Segment container.</param> /// <param name="position">The position of the info segment relative to the Segment container.</param>
/// <returns>Instance of <see cref="Info"/></returns> /// <returns>Instance of <see cref="Info"/>.</returns>
internal static Info ReadInfo(this EbmlReader reader, long position) internal static Info ReadInfo(this EbmlReader reader, long position)
{ {
reader.ReadAt(position); reader.ReadAt(position);

Loading…
Cancel
Save