Lines Matching refs:fileFd
960 inputFrame.fileFd = syscall(__NR_memfd_create, tempOutputFile.str().c_str(), MFD_CLOEXEC); in startMuxerForInputFrame()
961 if (inputFrame.fileFd < 0) { in startMuxerForInputFrame()
966 inputFrame.muxer = MediaMuxer::create(inputFrame.fileFd, MediaMuxer::OUTPUT_FORMAT_HEIF); in startMuxerForInputFrame()
969 __FUNCTION__, inputFrame.fileFd); in startMuxerForInputFrame()
1178 off_t fSize = lseek(inputFrame.fileFd, 0, SEEK_END); in processCompletedInputFrame()
1185 lseek(inputFrame.fileFd, 0, SEEK_SET); in processCompletedInputFrame()
1186 ssize_t bytesRead = read(inputFrame.fileFd, dstBuffer, fSize); in processCompletedInputFrame()
1192 close(inputFrame.fileFd); in processCompletedInputFrame()
1193 inputFrame.fileFd = -1; in processCompletedInputFrame()
1260 if (inputFrame->fileFd >= 0) { in releaseInputFrameLocked()
1261 close(inputFrame->fileFd); in releaseInputFrameLocked()
1262 inputFrame->fileFd = -1; in releaseInputFrameLocked()