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

Commit 984119d8 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "codec2 hidl plugin: back-propagate params only from enabled filters"...

Merge "codec2 hidl plugin: back-propagate params only from enabled filters" am: f406c63c am: 5e38dfef

Original change: https://android-review.googlesource.com/c/platform/frameworks/av/+/1897867

Change-Id: Ie9516d4cf0d9ba3b35cf99e3e8e31fa4c20f85d6
parents 5bd56e19 5e38dfef
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -430,6 +430,10 @@ private:
            LOG(DEBUG) << "WrappedDecoderInterface: FilterWrapper not found";
            return C2_OK;
        }
        if (!filterWrapper->isFilteringEnabled(next)) {
            LOG(VERBOSE) << "WrappedDecoderInterface: filtering not enabled";
            return C2_OK;
        }
        std::vector<std::unique_ptr<C2Param>> params;
        c2_status_t err = filterWrapper->queryParamsForPreviousComponent(next, &params);
        if (err != C2_OK) {