コード例 #1
0
 /// <summary>
 /// Determines if DRC can be applied to the given track with the given encoder.
 /// </summary>
 /// <param name="trackNumber">The track Number.</param>
 /// <param name="encoder">The encoder to use for DRC.</param>
 /// <param name="title">The title.</param>
 /// <returns>True if DRC can be applied to the track with the given encoder.</returns>
 public bool CanApplyDrc(int trackNumber, HBAudioEncoder encoder, int title)
 {
     return(hbFunctions.hb_audio_can_apply_drc2(this.Handle, title, trackNumber, encoder.Id) > 0);
 }