| 45 | } |
| 46 | |
| 47 | bool OpusEncoderPlugin::OnCreate(const tc::GrPluginParam ¶m) { |
| 48 | GrAudioEncoderPlugin::OnCreate(param); |
| 49 | auto key_save_debug_file = "save_debug_file"; |
| 50 | if (HasParam(key_save_debug_file)) { |
| 51 | debug_opus_decoder_ = GetConfigParam<bool>(key_save_debug_file); |
| 52 | } |
| 53 | |
| 54 | return true; |
| 55 | } |
| 56 | |
| 57 | bool OpusEncoderPlugin::OnDestroy() { |
| 58 | GrAudioEncoderPlugin::OnDestroy(); |
nothing calls this directly
no outgoing calls
no test coverage detected