Searched refs:mSrcIter (Results 1 – 2 of 2) sorted by relevance
194 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 …]
111 std::filesystem::directory_iterator mSrcIter; variable