Lines Matching refs:fileFd
800 inputFrame.fileFd = syscall(__NR_memfd_create, tempOutputFile.str().c_str(), MFD_CLOEXEC); in startMuxerForInputFrame()
801 if (inputFrame.fileFd < 0) { in startMuxerForInputFrame()
806 inputFrame.muxer = new MediaMuxer(inputFrame.fileFd, MediaMuxer::OUTPUT_FORMAT_HEIF); in startMuxerForInputFrame()
809 __FUNCTION__, inputFrame.fileFd); in startMuxerForInputFrame()
1011 off_t fSize = lseek(inputFrame.fileFd, 0, SEEK_END); in processCompletedInputFrame()
1018 lseek(inputFrame.fileFd, 0, SEEK_SET); in processCompletedInputFrame()
1019 ssize_t bytesRead = read(inputFrame.fileFd, dstBuffer, fSize); in processCompletedInputFrame()
1025 close(inputFrame.fileFd); in processCompletedInputFrame()
1026 inputFrame.fileFd = -1; in processCompletedInputFrame()
1089 if (inputFrame->fileFd >= 0) { in releaseInputFrameLocked()
1090 close(inputFrame->fileFd); in releaseInputFrameLocked()
1091 inputFrame->fileFd = -1; in releaseInputFrameLocked()