15 lines
305 B
C#
15 lines
305 B
C#
namespace TheXamlGuy.Media.Capture;
|
|
|
|
public interface IMediaFrameSource
|
|
{
|
|
MediaFrameFormat CurrentFormat { get; }
|
|
|
|
string DisplayName { get; }
|
|
|
|
MediaFrameSourceInfo Info { get; }
|
|
|
|
IReadOnlyList<MediaFrameFormat> SupportedFormats { get; }
|
|
|
|
void SetFormat(MediaFrameFormat format);
|
|
}
|