FLAC: Add debug messages to tell some functions are obsolete.

This commit is contained in:
Tsuda Kageyu 2015-07-31 23:47:22 +09:00
parent 29a31859ff
commit 1e752a1e8f

View File

@ -292,11 +292,13 @@ void FLAC::File::setID3v2FrameFactory(const ID3v2::FrameFactory *factory)
ByteVector FLAC::File::streamInfoData()
{
debug("FLAC::File::streamInfoData() -- This function is obsolete. Returning an empty ByteVector.");
return ByteVector();
}
long FLAC::File::streamLength()
{
debug("FLAC::File::streamLength() -- This function is obsolete. Returning zero.");
return 0;
}