Home
last modified time | relevance | path

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

/frameworks/av/media/codec2/sfplugin/
DCCodecBufferChannel.cpp131 mStash.clear(); in clear()
138 mStash.clear(); in flush()
142 mPending.splice(mPending.end(), mStash); in setDepth()
147 mPending.splice(mPending.end(), mStash); in setKey()
173 mStash.emplace_back(buffer, timestamp, flags, ordinal); in emplace()
176 auto it = mStash.begin(); in emplace()
177 for (; it != mStash.end(); ++it) { in emplace()
182 mStash.emplace(it, buffer, timestamp, flags, ordinal); in emplace()
184 mStash.back().flags = mStash.back().flags | MediaCodec::BUFFER_FLAG_EOS; in emplace()
187 while (!mStash.empty() && mStash.size() > mDepth) { in emplace()
[all …]
DCCodecBufferChannel.h310 std::list<Entry> mStash; variable