MCPcopy Index your code
hub / github.com/Audio4Linux/JDSP4Linux / coefficients

Method coefficients

src/data/model/VdcDatabaseModel.cpp:50–60  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

48}
49
50QString 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
62QString VdcDatabaseModel::id(int row) const
63{

Callers

nothing calls this directly

Calls 2

indexMethod · 0.80
dataMethod · 0.45

Tested by

no test coverage detected