Lines Matching defs:imgVec
195 bool ReadZipFile(const std::string& srcFilePath, ImageStructVec& imgVec, FrameRateConfig& frameConfig)
229 if (!ReadImageFile(zipFile, name, imgVec, frameConfig, fileInfo.uncompressed_size)) {
251 void SortZipFile(ImageStructVec& imgVec)
253 if (imgVec.size() == 0) {
257 sort(imgVec.begin(), imgVec.end(), [](std::shared_ptr<ImageStruct> image1,
262 bool ReadImageFile(const unzFile zipFile, const std::string& fileName, ImageStructVec& imgVec,
296 CheckImageData(fileName, imageStruct, totalLen, imgVec);
321 int32_t bufferLen, ImageStructVec& imgVec)
337 imgVec.push_back(imageStruct);