Esempio n. 1
0
 /// <summary>
 /// Downloads the chunk of data that is part of the specified track and has the specified timestamp id.
 /// </summary>
 /// <param name="track">the track that contains the data to be downloaded.</param>
 /// <param name="chunk">the chunk to be downloaded.</param>
 public void DownloadStreamData(TrackInfo track, ChunkInfo chunk)
 {
     if (track != null)
     {
         _chunkDownloadManager.AddRequest(track, chunk.TimeStamp);
     }
 }