Lines Matching refs:fileFd
923 inputFrame.fileFd = syscall(__NR_memfd_create, tempOutputFile.str().c_str(), MFD_CLOEXEC); in startMuxerForInputFrame()
924 if (inputFrame.fileFd < 0) { in startMuxerForInputFrame()
929 inputFrame.muxer = new MediaMuxer(inputFrame.fileFd, MediaMuxer::OUTPUT_FORMAT_HEIF); in startMuxerForInputFrame()
932 __FUNCTION__, inputFrame.fileFd); in startMuxerForInputFrame()
1140 off_t fSize = lseek(inputFrame.fileFd, 0, SEEK_END); in processCompletedInputFrame()
1147 lseek(inputFrame.fileFd, 0, SEEK_SET); in processCompletedInputFrame()
1148 ssize_t bytesRead = read(inputFrame.fileFd, dstBuffer, fSize); in processCompletedInputFrame()
1154 close(inputFrame.fileFd); in processCompletedInputFrame()
1155 inputFrame.fileFd = -1; in processCompletedInputFrame()
1220 if (inputFrame->fileFd >= 0) { in releaseInputFrameLocked()
1221 close(inputFrame->fileFd); in releaseInputFrameLocked()
1222 inputFrame->fileFd = -1; in releaseInputFrameLocked()