From b8c158a4eddb79ba3964dbe51b0e1db01454f96a Mon Sep 17 00:00:00 2001 From: Matthieu Bouron Date: Fri, 7 Oct 2016 11:20:33 +0200 Subject: [PATCH] lavc/mediacodec_wrapper: do not discard codecs reporting they do not support any profile Depending on the device, some (VP8/VP9/...) decoders report that they do not support any profiles. --- libavcodec/mediacodec_wrapper.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libavcodec/mediacodec_wrapper.c b/libavcodec/mediacodec_wrapper.c index 97e3a29646..c2af950f39 100644 --- a/libavcodec/mediacodec_wrapper.c +++ b/libavcodec/mediacodec_wrapper.c @@ -480,6 +480,9 @@ char *ff_AMediaCodecList_getCodecNameByType(const char *mime, int profile, int e } profile_count = (*env)->GetArrayLength(env, profile_levels); + if (!profile_count) { + found_codec = 1; + } for (k = 0; k < profile_count; k++) { int supported_profile = 0;