Commit 817235b1 authored by Matthieu Bouron's avatar Matthieu Bouron

avcodec/mediacodec_wrapper: remove unused local variables in ff_AMediaCodec_getCodecNameByType()

parent 3f232d71
...@@ -392,8 +392,6 @@ char *ff_AMediaCodecList_getCodecNameByType(const char *mime, int profile, int e ...@@ -392,8 +392,6 @@ char *ff_AMediaCodecList_getCodecNameByType(const char *mime, int profile, int e
struct JNIAMediaCodecListFields jfields = { 0 }; struct JNIAMediaCodecListFields jfields = { 0 };
struct JNIAMediaFormatFields mediaformat_jfields = { 0 }; struct JNIAMediaFormatFields mediaformat_jfields = { 0 };
jobject format = NULL;
jobject codec = NULL;
jobject codec_name = NULL; jobject codec_name = NULL;
jobject info = NULL; jobject info = NULL;
...@@ -571,14 +569,6 @@ done_with_info: ...@@ -571,14 +569,6 @@ done_with_info:
} }
done: done:
if (format) {
(*env)->DeleteLocalRef(env, format);
}
if (codec) {
(*env)->DeleteLocalRef(env, codec);
}
if (codec_name) { if (codec_name) {
(*env)->DeleteLocalRef(env, codec_name); (*env)->DeleteLocalRef(env, codec_name);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment