diff mbox

[FFmpeg-devel,1/4] lavc/mediacodec_wrapper: do not discard codecs reporting they do not support any profile

Message ID 20161012132242.4440-1-matthieu.bouron@gmail.com
State Accepted
Commit b8c158a4eddb79ba3964dbe51b0e1db01454f96a
Headers show

Commit Message

Matthieu Bouron Oct. 12, 2016, 1:22 p.m. UTC
From: Matthieu Bouron <matthieu.bouron@stupeflix.com>

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 mbox

Patch

diff --git a/libavcodec/mediacodec_wrapper.c b/libavcodec/mediacodec_wrapper.c
index 97e3a29..c2af950 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;