Example #1
0
 public SongBuffer(MusicPlayer musicPlayer, string basename, SongInfo songInfo, int skipTo, int maxFileSize)
 {
     MusicPlayer = musicPlayer;
     Basename = basename;
     SongInfo = songInfo;
     SkipTo = skipTo;
     MaxFileSize = maxFileSize;
     CurrentFileStream = new FileStream(this.GetNextFile(), FileMode.OpenOrCreate, FileAccess.Read, FileShare.Write);
     _log = LogManager.GetCurrentClassLogger();
 }
Example #2
0
 public Song(SongInfo songInfo)
 {
     this.SongInfo = songInfo;
     this._log = LogManager.GetCurrentClassLogger();
 }
Example #3
0
 private Song(SongInfo songInfo)
 {
     this.SongInfo = songInfo;
 }
Example #4
0
File: Song.cs Project: Ryonez/Lucy
 public Song(SongInfo songInfo)
 {
     this.SongInfo = songInfo;
 }
Example #5
0
 private Song(SongInfo songInfo)
 {
     this.SongInfo = songInfo;
 }
Example #6
0
 public SongBuffer(string basename, SongInfo songInfo, int skipTo)
 {
     Basename = basename;
     SongInfo = songInfo;
     SkipTo = skipTo;
 }
Example #7
0
 public Song(SongInfo songInfo)
 {
     this.SongInfo = songInfo;
     this._log     = LogManager.GetCurrentClassLogger();
 }
Example #8
0
 public Song(SongInfo songInfo)
 {
     this.SongInfo = songInfo;
 }