using System;
namespace NAudio.MediaFoundation
{
///
/// Indicates whether a Media Foundation transform (MFT) can produce output data.
///
[Flags]
public enum _MFT_OUTPUT_STATUS_FLAGS
{
///
/// None
///
None = 0,
///
/// There is a sample available for at least one output stream.
///
MFT_OUTPUT_STATUS_SAMPLE_READY = 0x00000001
}
}