Home
last modified time | relevance | path

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

/aosp12/packages/services/Car/cpp/evs/manager/1.1/emul/
H A DVideoCapture.cpp207 mSrcIter = filesystem::directory_iterator(path); in open()
343 while (mPixelBuffer == nullptr && mSrcIter != end_iter) { in collectFrames()
344 LOG(INFO) << "Synthesizing a frame from " << mSrcIter->path(); in collectFrames()
345 auto ext = mSrcIter->path().extension(); in collectFrames()
349 fillBufferFromPng(mSrcIter->path(), header); in collectFrames()
355 std::ifstream fin(mSrcIter->path(), ios::in | ios::binary); in collectFrames()
372 PLOG(ERROR) << "Failed to open " << mSrcIter->path(); in collectFrames()
376 << mSrcIter->path().filename(); in collectFrames()
380 ++mSrcIter; in collectFrames()
401 if (mSrcIter == end_iter) { in collectFrames()
[all …]
H A DVideoCapture.h114 std::filesystem::directory_iterator mSrcIter; variable