| 88 | } |
| 89 | |
| 90 | VideoPlayerRef VideoPlayer::create( const ci::Url& url ) |
| 91 | { |
| 92 | jstring jstrUrl = JniHelper::Get()->NewStringUTF( url.str() ); |
| 93 | jobject obj = JniHelper::Get()->CallStaticObjectMethod( Java::ClassObject, Java::createFromUrl, jstrUrl ); |
| 94 | JniHelper::Get()->DeleteLocalRef( jstrUrl ); |
| 95 | |
| 96 | VideoPlayerRef result = VideoPlayerRef( new VideoPlayer( obj ) ); |
| 97 | return result; |
| 98 | } |
| 99 | |
| 100 | VideoPlayerRef VideoPlayer::create( const ci::fs::path& path ) |
| 101 | { |
nothing calls this directly
no test coverage detected