| 125 | << ": Got " << *msg << " data=" << msg->data; |
| 126 | } |
| 127 | void OnAudioMessage(brpc::RtmpAudioMessage* msg) { |
| 128 | // audio data is ascii in UT, print it out. |
| 129 | LOG(INFO) << remote_side() << "|stream=" << stream_id() |
| 130 | << ": Got " << *msg << " data=" << msg->data; |
| 131 | } |
| 132 | private: |
| 133 | int _called_on_stop; |
| 134 | int _called_on_first_message; |
nothing calls this directly
no test coverage detected