Example #1
0
 /// <summary>
 /// Reset the decoder.
 /// </summary>
 public void Reset()
 {
     // the synthesis filters need to be cleared
     if (_layerIDecoder != null)
     {
         _layerIDecoder.ResetForSeek();
     }
     if (_layerIIDecoder != null)
     {
         _layerIIDecoder.ResetForSeek();
     }
     if (_layerIIIDecoder != null)
     {
         _layerIIIDecoder.ResetForSeek();
     }
 }