| 36 | _rtcp(stream) {} |
| 37 | |
| 38 | StreamThreadRtp::~StreamThreadRtp() { |
| 39 | terminateThread(); |
| 40 | const int streamID = _stream.getStreamID(); |
| 41 | StreamClient &client = _stream.getStreamClient(_clientID); |
| 42 | SI_LOG_INFO("Stream: %d, Destroy %s stream to %s:%d", streamID, _protocol.c_str(), |
| 43 | client.getIPAddressOfStream().c_str(), getStreamSocketPort(_clientID)); |
| 44 | client.getRtpSocketAttr().closeFD(); |
| 45 | } |
| 46 | |
| 47 | // ============================================================================= |
| 48 | // -- output::StreamThreadBase ------------------------------------------------ |
nothing calls this directly
no test coverage detected