using System; using System.Runtime.InteropServices; namespace NAudio.Dmo { /// /// Windows Media Resampler Props /// wmcodecdsp.h /// [Guid("E7E9984F-F09F-4da4-903F-6E2E0EFE56B5"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown), ComImport] interface IWMResamplerProps { /// /// Range is 1 to 60 /// int SetHalfFilterLength(int outputQuality); /// /// Specifies the channel matrix. /// int SetUserChannelMtx([In] float[] channelConversionMatrix); } }