| 196 | } |
| 197 | |
| 198 | bool QVideoInputDevice::getNextEncodedPacket(RsVOIPDataChunk& chunk) |
| 199 | { |
| 200 | if(!_timer) |
| 201 | return false ; |
| 202 | |
| 203 | if(_video_processor) |
| 204 | return _video_processor->nextEncodedPacket(chunk) ; |
| 205 | else |
| 206 | return false ; |
| 207 | } |
| 208 | |
| 209 | uint32_t QVideoInputDevice::currentBandwidth() const |
| 210 | { |
no test coverage detected