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

Commit e1bafc9b authored by Lucas Gates's avatar Lucas Gates Committed by Android (Google) Code Review
Browse files

Merge "TunerHAL Fix filterDispatcher returning false"

parents 8bfa197e 11afa26d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -427,7 +427,7 @@ bool Dvr::startFilterDispatcher(bool isVirtualFrontend, bool isRecording) {
    map<int64_t, std::shared_ptr<IFilter>>::iterator it;
    // Handle the output data per filter type
    for (it = mFilters.begin(); it != mFilters.end(); it++) {
        if (mDemux->startFilterHandler(it->first).isOk()) {
        if (!mDemux->startFilterHandler(it->first).isOk()) {
            return false;
        }
    }