Searched refs:fileFd (Results 1 – 2 of 2) sorted by relevance
/frameworks/av/services/camera/libcameraservice/api2/ |
D | HeicCompositeStream.cpp | 835 inputFrame.fileFd = syscall(__NR_memfd_create, tempOutputFile.str().c_str(), MFD_CLOEXEC); in startMuxerForInputFrame() 836 if (inputFrame.fileFd < 0) { in startMuxerForInputFrame() 841 inputFrame.muxer = new MediaMuxer(inputFrame.fileFd, MediaMuxer::OUTPUT_FORMAT_HEIF); in startMuxerForInputFrame() 844 __FUNCTION__, inputFrame.fileFd); in startMuxerForInputFrame() 1058 off_t fSize = lseek(inputFrame.fileFd, 0, SEEK_END); in processCompletedInputFrame() 1065 lseek(inputFrame.fileFd, 0, SEEK_SET); in processCompletedInputFrame() 1066 ssize_t bytesRead = read(inputFrame.fileFd, dstBuffer, fSize); in processCompletedInputFrame() 1072 close(inputFrame.fileFd); in processCompletedInputFrame() 1073 inputFrame.fileFd = -1; in processCompletedInputFrame() 1137 if (inputFrame->fileFd >= 0) { in releaseInputFrameLocked() [all …]
|
D | HeicCompositeStream.h | 164 int fileFd; member 173 errorNotified(false), frameNumber(-1), fenceFd(-1), fileFd(-1), in InputFrame()
|