Lines Matching refs:fileFd
925 inputFrame.fileFd = syscall(__NR_memfd_create, tempOutputFile.str().c_str(), MFD_CLOEXEC); in startMuxerForInputFrame()
926 if (inputFrame.fileFd < 0) { in startMuxerForInputFrame()
931 inputFrame.muxer = new MediaMuxer(inputFrame.fileFd, MediaMuxer::OUTPUT_FORMAT_HEIF); in startMuxerForInputFrame()
934 __FUNCTION__, inputFrame.fileFd); in startMuxerForInputFrame()
1143 off_t fSize = lseek(inputFrame.fileFd, 0, SEEK_END); in processCompletedInputFrame()
1150 lseek(inputFrame.fileFd, 0, SEEK_SET); in processCompletedInputFrame()
1151 ssize_t bytesRead = read(inputFrame.fileFd, dstBuffer, fSize); in processCompletedInputFrame()
1157 close(inputFrame.fileFd); in processCompletedInputFrame()
1158 inputFrame.fileFd = -1; in processCompletedInputFrame()
1223 if (inputFrame->fileFd >= 0) { in releaseInputFrameLocked()
1224 close(inputFrame->fileFd); in releaseInputFrameLocked()
1225 inputFrame->fileFd = -1; in releaseInputFrameLocked()