| 348 | } |
| 349 | |
| 350 | bool VideoImpl::rewind() { |
| 351 | if (!mStream || !mStream->rewind()) { |
| 352 | return false; |
| 353 | } |
| 354 | mFrameInterpolator->clear(); |
| 355 | return true; |
| 356 | } |
| 357 | |
| 358 | bool VideoImpl::hasEmbeddedScreenMap() const FL_NOEXCEPT { |
| 359 | if (!mStream) return false; |
no test coverage detected