| 124 | } |
| 125 | |
| 126 | void VideoPlayerScrubTestApp::setup() |
| 127 | { |
| 128 | mSlider.setSliderCb( std::bind( &VideoPlayerScrubTestApp::sliderCb, this, std::placeholders::_1 ) ); |
| 129 | |
| 130 | fs::path moviePath = getOpenFilePath(); |
| 131 | if( ! moviePath.empty() ) |
| 132 | loadMovieFile( moviePath ); |
| 133 | } |
| 134 | |
| 135 | void VideoPlayerScrubTestApp::update() |
| 136 | { |
nothing calls this directly
no test coverage detected