| 36 | } |
| 37 | |
| 38 | void OpusEncoderPlugin::On1Second() { |
| 39 | #if MEMORY_STST_ON |
| 40 | plugin_context_->PostWorkTask([=, this]() { |
| 41 | auto info = MemoryStat::Instance()->GetStatInfo(); |
| 42 | LOGI("Memory usage: {}", info.Dump()); |
| 43 | }); |
| 44 | #endif |
| 45 | } |
| 46 | |
| 47 | bool OpusEncoderPlugin::OnCreate(const tc::GrPluginParam ¶m) { |
| 48 | GrAudioEncoderPlugin::OnCreate(param); |
nothing calls this directly
no test coverage detected