| 33 | // ============================================================================= |
| 34 | |
| 35 | StreamThreadRtcpBase::StreamThreadRtcpBase( |
| 36 | const std::string &protocol, |
| 37 | StreamInterface &stream) : |
| 38 | _clientID(0), |
| 39 | _protocol(protocol), |
| 40 | _stream(stream), |
| 41 | _thread( |
| 42 | "RtcpThread", |
| 43 | std::bind(&StreamThreadRtcpBase::threadExecuteFunction, this)) {} |
| 44 | |
| 45 | StreamThreadRtcpBase::~StreamThreadRtcpBase() {} |
| 46 |
nothing calls this directly
no outgoing calls
no test coverage detected