| 469 | } |
| 470 | |
| 471 | void PluginNetEventRouter::ProcessInsertKeyFrame(std::shared_ptr<Message>&& msg) { |
| 472 | app_->PostGlobalTask([=, this]() { |
| 473 | app_->SendAppMessage(MsgInsertKeyFrame{}); |
| 474 | }); |
| 475 | } |
| 476 | |
| 477 | void PluginNetEventRouter::ProcessEncodedAudioFrameEvent(const std::shared_ptr<Data>& data, int samples, int channels, int bits, int frame_size) { |
| 478 | auto net_msg = NetMessageMaker::MakeAudioFrameMsg(data, samples, channels, bits, frame_size); |
nothing calls this directly
no test coverage detected