using System;
namespace NAudio.MediaFoundation
{
    /// 
    /// Defines flags for processing output samples in a Media Foundation transform (MFT).
    /// 
    [Flags]
    public enum _MFT_PROCESS_OUTPUT_FLAGS
    {
        /// 
        /// None
        /// 
        None,
        /// 
        /// Do not produce output for streams in which the pSample member of the MFT_OUTPUT_DATA_BUFFER structure is NULL. 
        /// 
        MFT_PROCESS_OUTPUT_DISCARD_WHEN_NO_BUFFER = 0x00000001,
        /// 
        /// Regenerates the last output sample.
        /// 
        MFT_PROCESS_OUTPUT_REGENERATE_LAST_OUTPUT = 0x00000002 
    }
}