Searched refs:fileFd (Results 1 – 2 of 2) sorted by relevance
/frameworks/av/services/camera/libcameraservice/api2/ |
D | HeicCompositeStream.cpp | 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() [all …]
|
D | HeicCompositeStream.h | 162 int fileFd; member 171 errorNotified(false), frameNumber(-1), fenceFd(-1), fileFd(-1), in InputFrame()
|