mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
* bumped version and 'about' dialog
* cleaned up HDCD decoding code * added processPriorityIdle option to settings dialog
This commit is contained in:
@@ -25,6 +25,7 @@ namespace AudioCodecsDotNet
|
||||
void Write(int[,] buff, uint sampleCount);
|
||||
bool SetTags(NameValueCollection tags);
|
||||
void Close();
|
||||
void Delete();
|
||||
long FinalSampleCount { set; }
|
||||
string Path { get; }
|
||||
}
|
||||
@@ -141,6 +142,10 @@ namespace AudioCodecsDotNet
|
||||
{
|
||||
}
|
||||
|
||||
public void Delete()
|
||||
{
|
||||
}
|
||||
|
||||
public long FinalSampleCount
|
||||
{
|
||||
set
|
||||
@@ -575,6 +580,14 @@ namespace AudioCodecsDotNet
|
||||
_IO = null;
|
||||
}
|
||||
|
||||
public void Delete()
|
||||
{
|
||||
_bw.Close();
|
||||
_bw = null;
|
||||
_IO = null;
|
||||
File.Delete(_path);
|
||||
}
|
||||
|
||||
public long Position
|
||||
{
|
||||
get
|
||||
|
||||
Reference in New Issue
Block a user