/thirdparty/liblastfm2/src/fingerprint/contrib/VorbisSource.h

http://github.com/tomahawk-player/tomahawk · C Header · 47 lines · 23 code · 5 blank · 19 comment · 0 complexity · a99ec0ecd411fe6f0846c92685b55671 MD5 · raw file

  1. /*
  2. Copyright 2009 Last.fm Ltd.
  3. Copyright 2009 John Stamp <jstamp@users.sourceforge.net>
  4. This file is part of liblastfm.
  5. liblastfm is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation, either version 3 of the License, or
  8. (at your option) any later version.
  9. liblastfm is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. GNU General Public License for more details.
  13. You should have received a copy of the GNU General Public License
  14. along with liblastfm. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #ifndef __VORBIS_SOURCE_H__
  17. #define __VORBIS_SOURCE_H__
  18. #include <FingerprintableSource.h>
  19. #include <vorbis/vorbisfile.h>
  20. class VorbisSource : public lastfm::FingerprintableSource
  21. {
  22. public:
  23. VorbisSource();
  24. ~VorbisSource();
  25. virtual void getInfo(int& lengthSecs, int& samplerate, int& bitrate, int& nchannels);
  26. virtual void init(const QString& fileName);
  27. virtual int updateBuffer(signed short* pBuffer, size_t bufferSize);
  28. virtual void skip(const int mSecs);
  29. virtual void skipSilence(double silenceThreshold = 0.0001);
  30. virtual bool eof() const { return m_eof; }
  31. private:
  32. OggVorbis_File m_vf;
  33. QString m_fileName;
  34. int m_channels;
  35. int m_samplerate;
  36. bool m_eof;
  37. };
  38. #endif