Home
last modified time | relevance | path

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

/packages/services/Car/cpp/evs/manager/1.1/emul/
DVideoCapture.cpp194 mSrcIter = std::filesystem::directory_iterator(path); in open()
324 while (mPixelBuffer == nullptr && mSrcIter != end_iter) { in collectFrames()
325 LOG(INFO) << "Synthesizing a frame from " << mSrcIter->path(); in collectFrames()
326 auto ext = mSrcIter->path().extension(); in collectFrames()
329 mPixelBuffer = fillBufferFromPng(mSrcIter->path(), header); in collectFrames()
335 std::ifstream fin(mSrcIter->path(), std::ios::in | std::ios::binary); in collectFrames()
348 LOG(WARNING) << mSrcIter->path() << " contains less than expected."; in collectFrames()
352 PLOG(ERROR) << "Failed to open " << mSrcIter->path(); in collectFrames()
355 LOG(DEBUG) << "Unsupported file extension. Ignores " << mSrcIter->path().filename(); in collectFrames()
359 ++mSrcIter; in collectFrames()
[all …]
DVideoCapture.h111 std::filesystem::directory_iterator mSrcIter; variable