Lines Matching refs:thiz
75 JNIEnv *env, jobject thiz,
79 jclass clazz = env->GetObjectClass(thiz);
83 mObject = env->NewWeakGlobalRef(thiz);
330 JNIEnv *env, jobject thiz, const sp<JMediaCodec> &codec) {
331 sp<JMediaCodec> old = (JMediaCodec *)env->GetIntField(thiz, gFields.context);
333 codec->incStrong(thiz);
336 old->decStrong(thiz);
338 env->SetIntField(thiz, gFields.context, (int)codec.get());
343 static sp<JMediaCodec> getMediaCodec(JNIEnv *env, jobject thiz) {
344 return (JMediaCodec *)env->GetIntField(thiz, gFields.context);
347 static void android_media_MediaCodec_release(JNIEnv *env, jobject thiz) {
348 setMediaCodec(env, thiz, NULL);
422 jobject thiz,
427 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
467 jobject thiz) {
470 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
489 static void android_media_MediaCodec_start(JNIEnv *env, jobject thiz) {
492 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
504 static void android_media_MediaCodec_stop(JNIEnv *env, jobject thiz) {
507 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
519 static void android_media_MediaCodec_flush(JNIEnv *env, jobject thiz) {
522 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
536 jobject thiz,
544 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
562 jobject thiz,
570 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
699 JNIEnv *env, jobject thiz, jlong timeoutUs) {
702 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
720 JNIEnv *env, jobject thiz, jobject bufferInfo, jlong timeoutUs) {
723 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
742 JNIEnv *env, jobject thiz, jint index, jboolean render) {
745 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
758 jobject thiz) {
761 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
773 JNIEnv *env, jobject thiz) {
776 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
796 JNIEnv *env, jobject thiz, jboolean input) {
799 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
822 JNIEnv *env, jobject thiz) {
825 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
845 JNIEnv *env, jobject thiz, jobjectArray keys, jobjectArray vals) {
848 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
866 JNIEnv *env, jobject thiz, jint mode) {
867 sp<JMediaCodec> codec = getMediaCodec(env, thiz);
936 JNIEnv *env, jobject thiz,
949 sp<JMediaCodec> codec = new JMediaCodec(env, thiz, tmp, nameIsType, encoder);
964 setMediaCodec(env,thiz, codec);
968 JNIEnv *env, jobject thiz) {
969 android_media_MediaCodec_release(env, thiz);