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

Commit 78d6bc88 authored by Marco Nelissen's avatar Marco Nelissen Committed by android-build-merger
Browse files

Merge "Prefer software codec with debug property"

am: 829b2a0b

Change-Id: Ib5cc5065540f48efaebeb02ecd1bd8036f0e56d1
parents ba46fa93 829b2a0b
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);
    }
}