From: Tsuda Kageyu Date: Fri, 31 Jul 2015 14:47:22 +0000 (+0900) Subject: FLAC: Add debug messages to tell some functions are obsolete. X-Git-Tag: v1.10beta~46^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1e752a1e8fe15d0a51ec903d36886bbea7f89604;p=taglib FLAC: Add debug messages to tell some functions are obsolete. --- diff --git a/taglib/flac/flacfile.cpp b/taglib/flac/flacfile.cpp index 66422f20..2483caf2 100644 --- a/taglib/flac/flacfile.cpp +++ b/taglib/flac/flacfile.cpp @@ -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; }