Added some summaries

Former-commit-id: 6f8c7915f8
This commit is contained in:
Максим Багрянцев 2020-04-27 19:46:58 +03:00
parent f93566e749
commit e21880c4a1
3 changed files with 9 additions and 0 deletions

View file

@ -6,6 +6,9 @@
namespace FFMpegCore.FFMPEG.Pipes
{
/// <summary>
/// Interface for ffmpeg pipe source data IO
/// </summary>
public interface IPipeSource
{
string GetFormat();

View file

@ -5,6 +5,9 @@
namespace FFMpegCore.FFMPEG.Pipes
{
/// <summary>
/// Interface for Video frame
/// </summary>
public interface IVideoFrame
{
int Width { get; }

View file

@ -6,6 +6,9 @@
namespace FFMpegCore.FFMPEG.Pipes
{
/// <summary>
/// Implementation of <see cref="IPipeSource"/> for a raw video stream that is gathered from <see cref="IEnumerator{IVideoFrame}"/>
/// </summary>
public class RawVideoPipeSource : IPipeSource
{
public string StreamFormat { get; set; }