playback/player: android: Register native_stop() with JNI

https://github.com/sdroege/gst-player/issues/143
This commit is contained in:
Sebastian Dröge 2016-01-07 00:22:26 +02:00
parent f509043c1d
commit 048de74441

View file

@ -450,6 +450,7 @@ static JNINativeMethod native_methods[] = {
{"nativeNew", "()V", (void *) native_new},
{"nativePlay", "()V", (void *) native_play},
{"nativePause", "()V", (void *) native_pause},
{"nativeStop", "()V", (void *) native_stop},
{"nativeSeek", "(J)V", (void *) native_seek},
{"nativeFree", "()V", (void *) native_free},
{"nativeGetUri", "()Ljava/lang/String;", (void *) native_get_uri},