| 2891 | } |
| 2892 | |
| 2893 | float rcli_get_audio_level(RCLIHandle handle) { |
| 2894 | if (!handle) return 0.0f; |
| 2895 | auto* engine = static_cast<RCLIEngine*>(handle); |
| 2896 | return engine->pipeline.audio().get_rms(); |
| 2897 | } |
| 2898 | |
| 2899 | int rcli_is_using_parakeet(RCLIHandle handle) { |
| 2900 | if (!handle) return 0; |
no test coverage detected