using System;
namespace NAudio.MediaFoundation
{
///
/// Indicates the status of an input stream on a Media Foundation transform (MFT).
///
[Flags]
public enum _MFT_INPUT_STATUS_FLAGS
{
///
/// None
///
None = 0,
///
/// The input stream can receive more data at this time.
///
MFT_INPUT_STATUS_ACCEPT_DATA = 0x00000001
}
}