Mercurial > hg > sonic-annotator
annotate runner/MultiplexedReader.h @ 120:dcecd6997214 test-reorg
Abandon if we fail to add a transform; don't continue with the remaining transforms (that's very confusing behaviour)
author | Chris Cannam |
---|---|
date | Wed, 08 Oct 2014 15:26:48 +0100 |
parents | 7b60603966cf |
children | 3f7c65f26559 |
rev | line source |
---|---|
Chris@106 | 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ |
Chris@106 | 2 |
Chris@106 | 3 /* |
Chris@106 | 4 Sonic Annotator |
Chris@106 | 5 A utility for batch feature extraction from audio files. |
Chris@106 | 6 Mark Levy, Chris Sutton and Chris Cannam, Queen Mary, University of London. |
Chris@106 | 7 Copyright 2007-2014 QMUL. |
Chris@106 | 8 |
Chris@106 | 9 This program is free software; you can redistribute it and/or |
Chris@106 | 10 modify it under the terms of the GNU General Public License as |
Chris@106 | 11 published by the Free Software Foundation; either version 2 of the |
Chris@106 | 12 License, or (at your option) any later version. See the file |
Chris@106 | 13 COPYING included with this distribution for more information. |
Chris@106 | 14 */ |
Chris@106 | 15 |
Chris@106 | 16 #ifndef _MULTIPLEXED_READER_H_ |
Chris@106 | 17 #define _MULTIPLEXED_READER_H_ |
Chris@106 | 18 |
Chris@106 | 19 #include "data/fileio/AudioFileReader.h" |
Chris@106 | 20 |
Chris@106 | 21 #include <QString> |
Chris@106 | 22 #include <QList> |
Chris@106 | 23 |
Chris@107 | 24 class MultiplexedReader : public AudioFileReader |
Chris@106 | 25 { |
Chris@106 | 26 Q_OBJECT |
Chris@106 | 27 |
Chris@106 | 28 public: |
Chris@107 | 29 // I take ownership of readers |
Chris@106 | 30 MultiplexedReader(QList<AudioFileReader *> readers); |
Chris@107 | 31 virtual ~MultiplexedReader(); |
Chris@106 | 32 |
Chris@107 | 33 virtual QString getError() const { return m_error; } |
Chris@107 | 34 virtual bool isQuicklySeekable() const { return m_quicklySeekable; } |
Chris@106 | 35 |
Chris@107 | 36 virtual void getInterleavedFrames(int start, int count, |
Chris@107 | 37 SampleBlock &frames) const; |
Chris@106 | 38 |
Chris@107 | 39 virtual int getDecodeCompletion() const; |
Chris@106 | 40 |
Chris@107 | 41 virtual bool isUpdating() const; |
Chris@106 | 42 |
Chris@106 | 43 protected: |
Chris@107 | 44 QString m_error; |
Chris@107 | 45 bool m_quicklySeekable; |
Chris@107 | 46 QList<AudioFileReader *> m_readers; |
Chris@106 | 47 }; |
Chris@106 | 48 |
Chris@106 | 49 #endif |