| 1483 | void RtmpStreamBase::OnFirstMessage() {} |
| 1484 | |
| 1485 | void RtmpStreamBase::OnUserData(void*) { |
| 1486 | LOG(INFO) << remote_side() << '[' << stream_id() |
| 1487 | << "] ignored UserData{}"; |
| 1488 | } |
| 1489 | |
| 1490 | void RtmpStreamBase::OnCuePoint(RtmpCuePoint* cuepoint) { |
| 1491 | LOG(INFO) << remote_side() << '[' << stream_id() |
nothing calls this directly
no test coverage detected