| 70 | bool VideoImpl::full() const { return mFrameInterpolator->getFrames()->full(); } |
| 71 | |
| 72 | bool VideoImpl::draw(fl::u32 now, Frame *frame) { |
| 73 | return draw(now, frame->rgb()); |
| 74 | } |
| 75 | |
| 76 | i32 VideoImpl::durationMicros() const { |
| 77 | if (!mStream) { |
nothing calls this directly
no test coverage detected