ripping almost works

This commit is contained in:
chudov
2008-12-01 20:24:16 +00:00
parent a6673c4c2d
commit 9d64805a5e
17 changed files with 1945 additions and 1430 deletions

View File

@@ -12,6 +12,7 @@ namespace CUETools.Codecs
ulong Length { get; }
ulong Position { get; set; }
NameValueCollection Tags { get; set; }
bool UpdateTags(bool preserveTime);
ulong Remaining { get; }
void Close();
int BitsPerSample { get; }
@@ -246,6 +247,11 @@ namespace CUETools.Codecs
}
}
public bool UpdateTags(bool preserveTime)
{
return false;
}
public uint Read(int [,] buff, uint sampleCount)
{
uint samplesRemaining = (uint)(_sampleCount - _sampleOffset);
@@ -476,6 +482,11 @@ namespace CUETools.Codecs
}
}
public bool UpdateTags(bool preserveTime)
{
return false;
}
public void GetTags(out List<string> names, out List<string> values)
{
names = new List<string>();