Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7160af44 authored by Marco Nelissen's avatar Marco Nelissen Committed by android-build-merger
Browse files

Merge "Prefer software codec with debug property" am: 829b2a0b am: 78d6bc88

am: 35f53af1

Change-Id: I0a06aba054e4eeac75f456e164fe554d03bb385a
parents 3778c8e1 35f53af1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1173,7 +1173,7 @@ void MediaCodecList::findMatchingCodecs(
        }
    }

    if (flags & kPreferSoftwareCodecs) {
    if (flags & kPreferSoftwareCodecs || property_get_bool("debug.stagefright.swcodec", false)) {
        matches->sort(compareSoftwareCodecsFirst);
    }
}