From 1e752a1e8fe15d0a51ec903d36886bbea7f89604 Mon Sep 17 00:00:00 2001 From: Tsuda Kageyu Date: Fri, 31 Jul 2015 23:47:22 +0900 Subject: [PATCH] FLAC: Add debug messages to tell some functions are obsolete. --- taglib/flac/flacfile.cpp | 2 ++ 1 file changed, 2 insertions(+) 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; }