namespace NAudio.Dmo { /// /// Return value when Process is executed with IMediaObjectInPlace /// public enum DmoInPlaceProcessReturn { /// /// Success. There is no remaining data to process. /// Normal = 0x0, /// /// Success. There is still data to process. /// HasEffectTail = 0x1, } }