Home
last modified time | relevance | path

Searched refs:ownedByClient (Results 1 – 2 of 2) sorted by relevance

/frameworks/av/media/codec2/sfplugin/
DCCodecBuffers.cpp760 bool ownedByClient = (clientBuffer != nullptr); in initialize() local
761 if (!ownedByClient) { in initialize()
764 mBuffers.push_back({ clientBuffer, impl.mBuffers[i].compBuffer, ownedByClient }); in initialize()
780 if (!mBuffers[i].ownedByClient && mBuffers[i].compBuffer.expired()) { in grabBuffer()
782 mBuffers[i].ownedByClient = true; in grabBuffer()
804 if (!mBuffers[i].ownedByClient) { in returnBuffer()
810 mBuffers[i].ownedByClient = false; in returnBuffer()
841 if (mBuffers[i].ownedByClient) { in expireComponentBuffer()
864 entry.ownedByClient = false; in flush()
888 return entry.ownedByClient || !entry.compBuffer.expired(); in numActiveSlots()
DCCodecBuffers.h751 bool ownedByClient; member