| 155 | return context && JniHelper::callBooleanMethod(className, "stop", context); |
| 156 | } |
| 157 | bool AndroidMediaEngine::isPlaybackEnded() const |
| 158 | { |
| 159 | return context && JniHelper::callBooleanMethod(className, "isPlaybackEnded", context); |
| 160 | } |
| 161 | MEMediaState AndroidMediaEngine::getState() const |
| 162 | { |
| 163 | return context ? (MEMediaState)JniHelper::callIntMethod(className, "getState", context) : MEMediaState::Closed; |
no test coverage detected