Loading media/libstagefright/MediaCodecList.cpp +3 −1 Original line number Diff line number Diff line Loading @@ -1165,7 +1165,9 @@ void MediaCodecList::findMatchingCodecs( CHECK(info != NULL); AString componentName = info->getCodecName(); if (!((flags & kHardwareCodecsOnly) && !isSoftwareCodec(componentName))) { if ((flags & kHardwareCodecsOnly) && isSoftwareCodec(componentName)) { ALOGV("skipping SW codec '%s'", componentName.c_str()); } else { matches->push(componentName); ALOGV("matching '%s'", componentName.c_str()); } Loading Loading
media/libstagefright/MediaCodecList.cpp +3 −1 Original line number Diff line number Diff line Loading @@ -1165,7 +1165,9 @@ void MediaCodecList::findMatchingCodecs( CHECK(info != NULL); AString componentName = info->getCodecName(); if (!((flags & kHardwareCodecsOnly) && !isSoftwareCodec(componentName))) { if ((flags & kHardwareCodecsOnly) && isSoftwareCodec(componentName)) { ALOGV("skipping SW codec '%s'", componentName.c_str()); } else { matches->push(componentName); ALOGV("matching '%s'", componentName.c_str()); } Loading