Searched refs:event_msg (Results 1 – 4 of 4) sorted by relevance
244 Event event_msg; in do_main() local269 while (ReadMessageFromFile(debug_file, &event_msg)) { in do_main()270 if (event_msg.type() == Event::REVERSE_STREAM) { in do_main()271 if (!event_msg.has_reverse_stream()) { in do_main()276 const ReverseStream msg = event_msg.reverse_stream(); in do_main()309 } else if (event_msg.type() == Event::STREAM) { in do_main()311 if (!event_msg.has_stream()) { in do_main()316 const Stream msg = event_msg.stream(); in do_main()417 } else if (event_msg.type() == Event::CONFIG) { in do_main()418 if (!event_msg.has_config()) { in do_main()[all …]
229 webrtc::audioproc::Event event_msg; in Process() local234 while (ReadMessageFromString(&input, &event_msg)) in Process()235 HandleEvent(event_msg, &num_forward_chunks_processed); in Process()239 while (ReadMessageFromFile(dump_input_file_, &event_msg)) in Process()240 HandleEvent(event_msg, &num_forward_chunks_processed); in Process()248 const webrtc::audioproc::Event& event_msg, in HandleEvent() argument250 switch (event_msg.type()) { in HandleEvent()252 RTC_CHECK(event_msg.has_init()); in HandleEvent()253 HandleMessage(event_msg.init()); in HandleEvent()256 RTC_CHECK(event_msg.has_stream()); in HandleEvent()[all …]
44 void HandleEvent(const webrtc::audioproc::Event& event_msg, in RTC_POP_IGNORING_WUNDEF()
1359 audioproc::Event event_msg; in ProcessDebugDump() local1362 while (ReadMessageFromFile(in_file, &event_msg)) { in ProcessDebugDump()1363 if (event_msg.type() == audioproc::Event::INIT) { in ProcessDebugDump()1364 const audioproc::Init msg = event_msg.init(); in ProcessDebugDump()1387 } else if (event_msg.type() == audioproc::Event::REVERSE_STREAM) { in ProcessDebugDump()1388 const audioproc::ReverseStream msg = event_msg.reverse_stream(); in ProcessDebugDump()1406 } else if (event_msg.type() == audioproc::Event::STREAM) { in ProcessDebugDump()1407 const audioproc::Stream msg = event_msg.stream(); in ProcessDebugDump()