20 lines
472 B
C#
20 lines
472 B
C#
|
using System;
|
|||
|
|
|||
|
namespace NAudio.MediaFoundation
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Process Output Status flags
|
|||
|
/// </summary>
|
|||
|
[Flags]
|
|||
|
public enum _MFT_PROCESS_OUTPUT_STATUS
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// None
|
|||
|
/// </summary>
|
|||
|
None = 0,
|
|||
|
/// <summary>
|
|||
|
/// The Media Foundation transform (MFT) has created one or more new output streams.
|
|||
|
/// </summary>
|
|||
|
MFT_PROCESS_OUTPUT_STATUS_NEW_STREAMS = 0x00000100
|
|||
|
}
|
|||
|
}
|