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

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

Merge "CodecConfig: Hide vendor params that are marked hidden" am: 8a2de98e am: 4b073135

parents e3e4f94e 4b073135
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -1896,8 +1896,10 @@ status_t CCodecConfig::querySupportedParameters(std::vector<std::string> *names)
    names->clear();
    // TODO: expand to standard params
    for (const auto &[key, desc] : mVendorParams) {
        if (desc->isVisible()) {
            names->push_back(key);
        }
    }
    return OK;
}