| 147 | // from StreamBase |
| 148 | |
| 149 | OniStatus VideoStream::start() |
| 150 | { |
| 151 | driver_dev->start(); |
| 152 | running = true; |
| 153 | return ONI_STATUS_OK; |
| 154 | } |
| 155 | void VideoStream::stop() |
| 156 | { |
| 157 | driver_dev->stop(); |
nothing calls this directly
no outgoing calls
no test coverage detected