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

Commit 571c285c authored by Max Spector's avatar Max Spector Committed by android-build-merger
Browse files

Merge "Fixing safteynet logging bug from ag/862848 - DO NOT MERGE" into...

Merge "Fixing safteynet logging bug from ag/862848  - DO NOT MERGE" into mnc-dev am: 49c04280 am: 97f13565
am: 89896480

* commit '89896480':
  Fixing safteynet logging bug from ag/862848  - DO NOT MERGE
parents 81b6cc61 89896480
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -344,7 +344,13 @@ status_t OMX::getGraphicBufferUsage(

status_t OMX::storeMetaDataInBuffers(
        node_id node, OMX_U32 port_index, OMX_BOOL enable, MetadataBufferType *type) {
    return findInstance(node)->storeMetaDataInBuffers(port_index, enable, type);
    OMXNodeInstance *instance = findInstance(node);

    if (instance == NULL) {
        android_errorWriteLog(0x534e4554, "26324358");
    }

    return instance->storeMetaDataInBuffers(port_index, enable, type);
}

status_t OMX::prepareForAdaptivePlayback(