Exemplo n.º 1
0
 /// ------------------------------------------------------------------------------------
 /// <summary>
 /// Loads the audio document writer with the data for the specified annotation type.
 /// </summary>
 /// ------------------------------------------------------------------------------------
 private void LoadWriterWithSegments(AnnotationType type, List <SegmentInfo> segInfo)
 {
     foreach (SegmentInfo segment in segInfo)
     {
         m_writer.AddSegment((int)type, segment.offset, segment.length, segment.segment);
     }
 }