MCPcopy Create free account
hub / github.com/RunanywhereAI/RCLI / rcli_start_capture

Function rcli_start_capture

src/api/rcli_api.cpp:695–700  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

693}
694
695int rcli_start_capture(RCLIHandle handle) {
696 if (!handle) return -1;
697 auto* engine = static_cast<RCLIEngine*>(handle);
698 if (!engine->initialized) return -1;
699 return engine->pipeline.start_capture() ? 0 : -1;
700}
701
702const char* rcli_stop_capture_and_transcribe(RCLIHandle handle) {
703 if (!handle) return "";

Callers 2

cmd_listenFunction · 0.85
start_recordingMethod · 0.85

Calls 1

start_captureMethod · 0.80

Tested by

no test coverage detected