Direct access to PCM sample data. Non-const accessor clears silent flag.
| 63 | |
| 64 | // Direct access to PCM sample data. Non-const accessor clears silent flag. |
| 65 | float * mutableData() |
| 66 | { |
| 67 | clearSilentFlag(); |
| 68 | return const_cast<float *>(data()); |
| 69 | } |
| 70 | |
| 71 | const float * data() const |
| 72 | { |
no outgoing calls
no test coverage detected