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

Commit 53a5cdf9 authored by Elliott Hughes's avatar Elliott Hughes Committed by android-build-merger
Browse files

Merge "libstagefright: track libziparchive API change."

am: badfa869

Change-Id: I72e7f99937172a7024ee344fc7e625518ca0d24f
parents 47e9ffdb badfa869
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -223,10 +223,8 @@ void MediaExtractorFactory::RegisterExtractorsInApk(
        char abi[PROPERTY_VALUE_MAX];
        property_get("ro.product.cpu.abi", abi, "arm64-v8a");
        String8 prefix8 = String8::format("lib/%s/", abi);
        ZipString prefix(prefix8.c_str());
        ZipString suffix("extractor.so");
        void* cookie;
        ret = StartIteration(zipHandle, &cookie, &prefix, &suffix);
        ret = StartIteration(zipHandle, &cookie, prefix8.c_str(), "extractor.so");
        if (ret == 0) {
            ZipEntry entry;
            ZipString name;