| 38 | } |
| 39 | |
| 40 | QString VdcDatabaseModel::composeVdcFile(int row) const |
| 41 | { |
| 42 | QString vdc; |
| 43 | vdc += "SR_44100:"; |
| 44 | vdc += coefficients(row, 44100); |
| 45 | vdc += "\nSR_48000:"; |
| 46 | vdc += coefficients(row, 48000); |
| 47 | return vdc; |
| 48 | } |
| 49 | |
| 50 | QString VdcDatabaseModel::coefficients(int row, uint32_t srate) const |
| 51 | { |
no outgoing calls
no test coverage detected