| 97 | } |
| 98 | |
| 99 | void |
| 100 | PluginMemory::freeMem() |
| 101 | { |
| 102 | QMutexLocker l(&_imp->mutex); |
| 103 | EffectInstancePtr e = _imp->effect.lock(); |
| 104 | |
| 105 | if (e) { |
| 106 | e->unregisterPluginMemory( _imp->data.size() ); |
| 107 | } |
| 108 | _imp->data.clear(); |
| 109 | _imp->locked = 0; |
| 110 | } |
| 111 | |
| 112 | void* |
| 113 | PluginMemory::getPtr() |
nothing calls this directly
no test coverage detected