| 2528 | } |
| 2529 | |
| 2530 | void RtmpRetryingClientStream::StopCurrentStream() { |
| 2531 | butil::intrusive_ptr<RtmpStreamBase> sub_stream; |
| 2532 | { |
| 2533 | BAIDU_SCOPED_LOCK(_stream_mutex); |
| 2534 | sub_stream = _using_sub_stream; |
| 2535 | } |
| 2536 | if (sub_stream) { |
| 2537 | sub_stream->SignalError(); |
| 2538 | } |
| 2539 | } |
| 2540 | |
| 2541 | void RtmpRetryingClientStream::OnPlayable() {} |
| 2542 |
nothing calls this directly
no test coverage detected