Home
last modified time | relevance | path

Searched refs:fourcc (Results 1 – 19 of 19) sorted by relevance

/hardware/libhardware/modules/camera/3_4/
Dstream_format.cpp56 v4l2_pixel_format_(format.fourcc), in StreamFormat()
149 uint32_t fourcc, uint32_t width, in FindBestFitFormat() argument
154 if (format.fourcc == fourcc && format.width == width && in FindBestFitFormat()
165 if (!arc::ImageProcessor::SupportsConversion(V4L2_PIX_FMT_YUV420, fourcc)) { in FindBestFitFormat()
166 HAL_LOGE("Conversion between YU12 and 0x%x not supported.", fourcc); in FindBestFitFormat()
205 if (supported_format.fourcc != supported_fourcc) { in GetQualifiedFormats()
Dstream_format.h64 uint32_t fourcc, uint32_t width,
Dv4l2_wrapper.cpp325 supported_format.fourcc = pixel_format; in GetSupportedFormats()
372 unique_fourccs.insert(format.fourcc); in GetQualifiedFormats()
683 uint32_t fourcc = in DequeueRequest() local
696 stream_buffer->stream->height, fourcc, buffer.length, in DequeueRequest()
704 if (request_context->camera_buffer->GetFourcc() == fourcc && in DequeueRequest()
/hardware/libhardware/modules/camera/3_4/arc/
Dframe_buffer.h37 void SetFourcc(uint32_t fourcc) { fourcc_ = fourcc; } in SetFourcc() argument
83 uint32_t height, uint32_t fourcc);
106 uint32_t fourcc, uint32_t device_buffer_length,
Dframe_buffer.cpp64 uint32_t fourcc) in V4L2FrameBuffer() argument
69 fourcc_ = fourcc; in V4L2FrameBuffer()
105 uint32_t height, uint32_t fourcc, in GrallocFrameBuffer() argument
121 fourcc_ = fourcc; in GrallocFrameBuffer()
Dimage_processor.h25 static size_t GetConvertedSize(int fourcc, uint32_t width, uint32_t height);
Dcommon_types.h43 uint32_t fourcc; member
Dcached_frame.h47 size_t GetConvertedSize(int fourcc) const;
Dcached_frame.cpp62 size_t CachedFrame::GetConvertedSize(int fourcc) const { in GetConvertedSize()
63 return ImageProcessor::GetConvertedSize(fourcc, yu12_frame_->GetWidth(), in GetConvertedSize()
Dimage_processor.cpp70 size_t ImageProcessor::GetConvertedSize(int fourcc, uint32_t width, in GetConvertedSize() argument
78 switch (fourcc) { in GetConvertedSize()
91 LOGF(ERROR) << "Pixel format " << FormatToString(fourcc) in GetConvertedSize()
/hardware/qcom/msm8960/kernel-headers/linux/
Dmsm_q6vdec.h137 u32 fourcc; member
252 u32 fourcc; member
290 u32 fourcc; member
/hardware/qcom/msm8960/original-kernel-headers/linux/
Dmsm_q6vdec.h116 u32 fourcc; /* video format */ member
224 u32 fourcc; member
259 u32 fourcc; member
/hardware/qcom/msm8996/kernel-headers/linux/
Dmsm_q6vdec.h137 u32 fourcc; member
252 u32 fourcc; member
290 u32 fourcc; member
/hardware/qcom/msm8996/original-kernel-headers/linux/
Dmsm_q6vdec.h116 u32 fourcc; /* video format */ member
224 u32 fourcc; member
259 u32 fourcc; member
/hardware/interfaces/camera/device/3.4/default/
DExternalCameraDevice.cpp275 switch (fmt.fourcc) { in initAvailableCapabilities()
593 uint32_t fourcc, const std::array<int, SIZE>& halFormats, in initOutputCharskeysByFormat() argument
605 if (supportedFormat.fourcc != fourcc) { in initOutputCharskeysByFormat()
708 switch (supportedFormat.fourcc) { in initOutputCharsKeys()
717 supportedFormat.fourcc & 0xFF, (supportedFormat.fourcc >> 8) & 0xFF, in initOutputCharsKeys()
718 (supportedFormat.fourcc >> 16) & 0xFF, (supportedFormat.fourcc >> 24) & 0xFF); in initOutputCharsKeys()
770 .pixel_format = format->fourcc, in getFrameRateList()
908 .fourcc = fmtdesc.pixelformat in getCandidateSupportedFormatsLocked()
911 if (format.fourcc == V4L2_PIX_FMT_Z16 && depthEnabled) { in getCandidateSupportedFormatsLocked()
DExternalCameraDeviceSession.cpp273 streamingFmt.fourcc & 0xFF, in dumpState()
274 (streamingFmt.fourcc >> 8) & 0xFF, in dumpState()
275 (streamingFmt.fourcc >> 16) & 0xFF, in dumpState()
276 (streamingFmt.fourcc >> 24) & 0xFF, in dumpState()
1973 fmt.fmt.pix.pixelformat = v4l2Fmt.fourcc; in configureV4l2StreamLocked()
1993 v4l2Fmt.fourcc != fmt.fmt.pix.pixelformat) { in configureV4l2StreamLocked()
1995 v4l2Fmt.fourcc & 0xFF, in configureV4l2StreamLocked()
1996 (v4l2Fmt.fourcc >> 8) & 0xFF, in configureV4l2StreamLocked()
1997 (v4l2Fmt.fourcc >> 16) & 0xFF, in configureV4l2StreamLocked()
1998 (v4l2Fmt.fourcc >> 24) & 0xFF, in configureV4l2StreamLocked()
[all …]
DExternalCameraUtils.cpp45 Frame::Frame(uint32_t width, uint32_t height, uint32_t fourcc) : in Frame() argument
46 mWidth(width), mHeight(height), mFourcc(fourcc) {} in Frame()
49 uint32_t w, uint32_t h, uint32_t fourcc, in V4L2Frame() argument
51 Frame(w, h, fourcc), in V4L2Frame()
/hardware/interfaces/camera/device/3.4/default/include/ext_device_v3_4_impl/
DExternalCameraUtils.h120 uint32_t fourcc; member
133 Frame(uint32_t width, uint32_t height, uint32_t fourcc);
146 V4L2Frame(uint32_t w, uint32_t h, uint32_t fourcc, int bufIdx, int fd,
DExternalCameraDevice_3_4.h124 uint32_t fourcc, const std::array<int, SIZE>& formats,