MVH/NAudio-2.2.1/NAudio.Wasapi/MediaFoundation/_MFT_OUTPUT_STATUS_FLAGS.cs

20 lines
491 B
C#
Raw Normal View History

2024-06-07 00:47:07 +02:00
using System;
namespace NAudio.MediaFoundation
{
/// <summary>
/// Indicates whether a Media Foundation transform (MFT) can produce output data.
/// </summary>
[Flags]
public enum _MFT_OUTPUT_STATUS_FLAGS
{
/// <summary>
/// None
/// </summary>
None = 0,
/// <summary>
/// There is a sample available for at least one output stream.
/// </summary>
MFT_OUTPUT_STATUS_SAMPLE_READY = 0x00000001
}
}