using System.Runtime.InteropServices; namespace NAudio.MediaFoundation { /// /// Contains information about an output stream on a Media Foundation transform (MFT). /// [StructLayout(LayoutKind.Sequential)] public struct MFT_OUTPUT_STREAM_INFO { /// /// Bitwise OR of zero or more flags from the _MFT_OUTPUT_STREAM_INFO_FLAGS enumeration. /// public _MFT_OUTPUT_STREAM_INFO_FLAGS dwFlags; /// /// Minimum size of each output buffer, in bytes. /// public int cbSize; /// /// The memory alignment required for output buffers. /// public int cbAlignment; } }