Modified namespace so that app can be published on Google Play

This commit is contained in:
Nicolas Raoul 2015-09-08 10:08:34 +09:00
parent 2427ee7b6f
commit 97a57be47a
69 changed files with 213 additions and 213 deletions

View file

@ -44,7 +44,7 @@ static int transcode(const char *infile, const char *outfile,
gst_structure_get_int(s, "percent", &percent);
cb_class = (*env)->FindClass(env, "org/wikimedia/commons/Transcoder$TranscoderProgressCallback");
cb_class = (*env)->FindClass(env, "fr/free/nrw/commons/Transcoder$TranscoderProgressCallback");
if ((*env)->ExceptionCheck(env)) {
__android_log_print(ANDROID_LOG_ERROR, "GStreamer", "Class not found");
break;
@ -100,7 +100,7 @@ done:
return ret;
}
jint Java_org_wikimedia_commons_Transcoder_transcode(JNIEnv* env,
jint Java_fr_free_nrw_commons_Transcoder_transcode(JNIEnv* env,
jclass *klass, jstring infile, jstring outfile, jstring profile,
jobject cb_obj)
{