| 51 | } |
| 52 | |
| 53 | void Device::onStartStream() { |
| 54 | for (Port* port : subscribed) { |
| 55 | contextSet(port->context); |
| 56 | port->onStartStream(); |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | void Device::onStopStream() { |
| 61 | for (Port* port : subscribed) { |
nothing calls this directly
no test coverage detected