| 48 | } |
| 49 | |
| 50 | QString VdcDatabaseModel::coefficients(int row, uint32_t srate) const |
| 51 | { |
| 52 | Q_ASSERT(srate == 44100 || srate == 48000); |
| 53 | |
| 54 | if(srate == 44100) |
| 55 | { |
| 56 | return this->data(this->index(row, 2), Qt::DisplayRole).toString(); |
| 57 | } |
| 58 | |
| 59 | return this->data(this->index(row, 3), Qt::DisplayRole).toString(); |
| 60 | } |
| 61 | |
| 62 | QString VdcDatabaseModel::id(int row) const |
| 63 | { |