| 33 | }; |
| 34 | |
| 35 | void QuickTimeSampleApp::setup() |
| 36 | { |
| 37 | #if defined( CINDER_ANDROID ) || defined( CINDER_LINUX ) |
| 38 | fs::path moviePath = getAssetPath( "bbb.mp4" ); |
| 39 | #else |
| 40 | fs::path moviePath = getOpenFilePath(); |
| 41 | console() << "moviePath: " << moviePath << std::endl; |
| 42 | #endif |
| 43 | if( ! moviePath.empty() ) |
| 44 | loadMovieFile( moviePath ); |
| 45 | } |
| 46 | |
| 47 | void QuickTimeSampleApp::keyDown( KeyEvent event ) |
| 48 | { |
nothing calls this directly
no test coverage detected