Mercurial > hg > svcore
comparison data/model/DenseTimeValueModel.cpp @ 1507:fe579dc6a713 import-audio-data
Merge from default branch
author | Chris Cannam |
---|---|
date | Tue, 04 Sep 2018 13:19:20 +0100 |
parents | 0d4f1fcad97a |
children | 0d89abd631ac |
comparison
equal
deleted
inserted
replaced
1493:f0c2b8b31609 | 1507:fe579dc6a713 |
---|---|
31 QString | 31 QString |
32 DenseTimeValueModel::toDelimitedDataStringSubset(QString delimiter, sv_frame_t f0, sv_frame_t f1) const | 32 DenseTimeValueModel::toDelimitedDataStringSubset(QString delimiter, sv_frame_t f0, sv_frame_t f1) const |
33 { | 33 { |
34 int ch = getChannelCount(); | 34 int ch = getChannelCount(); |
35 | 35 |
36 cerr << "f0 = " << f0 << ", f1 = " << f1 << endl; | 36 // cerr << "f0 = " << f0 << ", f1 = " << f1 << endl; |
37 | 37 |
38 if (f1 <= f0) return ""; | 38 if (f1 <= f0) return ""; |
39 | 39 |
40 auto data = getMultiChannelData(0, ch - 1, f0, f1 - f0); | 40 auto data = getMultiChannelData(0, ch - 1, f0, f1 - f0); |
41 | 41 |