Beispiel #1
0
        /// <summary>
        /// Create an instance of WmaWriterConfig specifying the writer input format and the ouput profile
        /// </summary>
        /// <param name="format">Input data format</param>
        /// <param name="profile">Output profile</param>
        public WmaWriterConfig(WaveFormat format, IWMProfile profile)
            : base(format)
        {
            var prf = new WMProfile(profile);

            m_ProfileData = prf.ProfileData;
        }
Beispiel #2
0
 /// <summary>
 /// Create an instance of WmaWriterConfig specifying the writer input format and the ouput profile
 /// </summary>
 /// <param name="format">Input data format</param>
 /// <param name="profile">Output profile</param>
 public WmaWriterConfig(WaveFormat format, IWMProfile profile)
     : base(format)
 {
     var prf = new WMProfile(profile);
     m_ProfileData = prf.ProfileData;
 }