Mercurial > hg > svcore
comparison data/fileio/CSVFileReader.h @ 1867:2654bf447a84
CSV reader tests and fixes - avoid creating null events for lines in which the timings could not be read
author | Chris Cannam |
---|---|
date | Thu, 11 Jun 2020 14:09:59 +0100 |
parents | c01cbe41aeb5 |
children |
comparison
equal
deleted
inserted
replaced
1866:b4b11af915f4 | 1867:2654bf447a84 |
---|---|
68 qint64 m_fileSize; | 68 qint64 m_fileSize; |
69 mutable qint64 m_readCount; | 69 mutable qint64 m_readCount; |
70 mutable int m_progress; | 70 mutable int m_progress; |
71 ProgressReporter *m_reporter; | 71 ProgressReporter *m_reporter; |
72 | 72 |
73 sv_frame_t convertTimeValue(QString, int lineno, sv_samplerate_t sampleRate, | 73 bool convertTimeValue(QString, int lineno, sv_samplerate_t sampleRate, |
74 int windowSize) const; | 74 int windowSize, sv_frame_t &calculatedFrame) const; |
75 | 75 |
76 QString getConvertedAudioFilePath() const; | 76 QString getConvertedAudioFilePath() const; |
77 }; | 77 }; |
78 | 78 |
79 | 79 |