/hardware/libhardware/modules/camera/3_4/ |
D | stream_format.cpp | 56 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()
|
D | stream_format.h | 64 uint32_t fourcc, uint32_t width,
|
D | v4l2_wrapper.cpp | 325 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/ |
D | frame_buffer.h | 37 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,
|
D | frame_buffer.cpp | 64 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()
|
D | image_processor.h | 25 static size_t GetConvertedSize(int fourcc, uint32_t width, uint32_t height);
|
D | common_types.h | 43 uint32_t fourcc; member
|
D | cached_frame.h | 47 size_t GetConvertedSize(int fourcc) const;
|
D | cached_frame.cpp | 62 size_t CachedFrame::GetConvertedSize(int fourcc) const { in GetConvertedSize() 63 return ImageProcessor::GetConvertedSize(fourcc, yu12_frame_->GetWidth(), in GetConvertedSize()
|
D | image_processor.cpp | 70 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/interfaces/camera/device/3.4/default/ |
D | ExternalCameraDevice.cpp | 275 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()
|
D | ExternalCameraDeviceSession.cpp | 273 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() 2022 fmt.fmt.pix.pixelformat = v4l2Fmt.fourcc; in configureV4l2StreamLocked() 2042 v4l2Fmt.fourcc != fmt.fmt.pix.pixelformat) { in configureV4l2StreamLocked() 2044 v4l2Fmt.fourcc & 0xFF, in configureV4l2StreamLocked() 2045 (v4l2Fmt.fourcc >> 8) & 0xFF, in configureV4l2StreamLocked() 2046 (v4l2Fmt.fourcc >> 16) & 0xFF, in configureV4l2StreamLocked() 2047 (v4l2Fmt.fourcc >> 24) & 0xFF, in configureV4l2StreamLocked() [all …]
|
D | ExternalCameraUtils.cpp | 45 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/default/ |
D | ExternalCameraDevice.cpp | 330 switch (fmt.fourcc) { in initAvailableCapabilities() 644 switch (supportedFormat.fourcc) { in initOutputCharsKeys() 653 supportedFormat.fourcc & 0xFF, (supportedFormat.fourcc >> 8) & 0xFF, in initOutputCharsKeys() 654 (supportedFormat.fourcc >> 16) & 0xFF, (supportedFormat.fourcc >> 24) & 0xFF); in initOutputCharsKeys() 713 uint32_t fourcc, const std::array<int, SIZE>& halFormats, int streamConfigTag, in initOutputCharsKeysByFormat() argument 725 if (supportedFormat.fourcc != fourcc) { in initOutputCharsKeysByFormat() 816 .pixel_format = format->fourcc, in getFrameRateList() 931 .fourcc = fmtdesc.pixelformat}; in getCandidateSupportedFormatsLocked() 933 if (format.fourcc == V4L2_PIX_FMT_Z16 && depthEnabled) { in getCandidateSupportedFormatsLocked()
|
D | ExternalCameraUtils.h | 124 uint32_t fourcc; member 140 Frame(uint32_t width, uint32_t height, uint32_t fourcc); 154 V4L2Frame(uint32_t w, uint32_t h, uint32_t fourcc, int bufIdx, int fd, uint32_t dataSize,
|
D | ExternalCameraDeviceSession.cpp | 399 ALOGE("V4L configuration failed!, format:%c%c%c%c, w %d, h %d", v4l2Fmt.fourcc & 0xFF, in configureStreams() 400 (v4l2Fmt.fourcc >> 8) & 0xFF, (v4l2Fmt.fourcc >> 16) & 0xFF, in configureStreams() 401 (v4l2Fmt.fourcc >> 24) & 0xFF, v4l2Fmt.width, v4l2Fmt.height); in configureStreams() 1067 fmt.fmt.pix.pixelformat = v4l2Fmt.fourcc; in configureV4l2StreamLocked() 1089 v4l2Fmt.fourcc != fmt.fmt.pix.pixelformat) { in configureV4l2StreamLocked() 1091 v4l2Fmt.fourcc & 0xFF, (v4l2Fmt.fourcc >> 8) & 0xFF, (v4l2Fmt.fourcc >> 16) & 0xFF, in configureV4l2StreamLocked() 1092 (v4l2Fmt.fourcc >> 24) & 0xFF, v4l2Fmt.width, v4l2Fmt.height, in configureV4l2StreamLocked() 1309 mV4l2StreamingFmt.fourcc, buffer.index, mV4l2Fd.get(), in dequeueV4l2FrameLocked() 1928 dprintf(fd, "Current V4L2 format %c%c%c%c %dx%d @ %ffps\n", streamingFmt.fourcc & 0xFF, in dump() 1929 (streamingFmt.fourcc >> 8) & 0xFF, (streamingFmt.fourcc >> 16) & 0xFF, in dump() [all …]
|
D | ExternalCameraUtils.cpp | 241 Frame::Frame(uint32_t width, uint32_t height, uint32_t fourcc) in Frame() argument 242 : mWidth(width), mHeight(height), mFourcc(fourcc) {} in Frame() 245 V4L2Frame::V4L2Frame(uint32_t w, uint32_t h, uint32_t fourcc, int bufIdx, int fd, uint32_t dataSize, in V4L2Frame() argument 247 : Frame(w, h, fourcc), mBufferIndex(bufIdx), mFd(fd), mDataSize(dataSize), mOffset(offset) {} in V4L2Frame()
|
D | ExternalCameraDevice.h | 104 uint32_t fourcc, const std::array<int, SIZE>& halFormats, int streamConfigTag,
|
/hardware/interfaces/camera/device/3.4/default/include/ext_device_v3_4_impl/ |
D | ExternalCameraUtils.h | 120 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,
|
D | ExternalCameraDevice_3_4.h | 124 uint32_t fourcc, const std::array<int, SIZE>& formats,
|
/hardware/google/gfxstream/host/apigen-codec-common/GL/internal/ |
D | dri_interface.h | 1068 int width, int height, int fourcc,
|
/hardware/google/gfxstream/host/apigen-codec-common/GL/ |
D | dri_interface.h | 1068 int width, int height, int fourcc,
|
/hardware/google/gfxstream/common/opengl/include/EGL/ |
D | eglext.h | 1016 …EXPORTDMABUFIMAGEQUERYMESAPROC) (EGLDisplay dpy, EGLImageKHR image, int *fourcc, int *num_planes, … 1019 …Y eglExportDMABUFImageQueryMESA (EGLDisplay dpy, EGLImageKHR image, int *fourcc, int *num_planes, …
|
/hardware/google/gfxstream/third-party/astc-encoder/Source/ |
D | astcenccli_image_load_store.cpp | 1586 uint32_t fourcc; // "DX10" to indicate a DX10 format, "DXTn" for the DXT formats member 1703 if (hdr.ddspf.fourcc == DX10_MAGIC) in load_dds_uncompressed_image()
|
D | wuffs-v0.3.c | 10618 SelectDecoder(uint32_t fourcc, 16069 int32_t fourcc; in wuffs_base__magic_number_guess_fourcc() member 16090 int32_t fourcc = 0; in wuffs_base__magic_number_guess_fourcc() local 16099 fourcc = table[i].fourcc; in wuffs_base__magic_number_guess_fourcc() 16131 if (fourcc < 0) { in wuffs_base__magic_number_guess_fourcc() 16132 fourcc = -fourcc; in wuffs_base__magic_number_guess_fourcc() 16134 if (fourcc == 0x52494646) { // 'RIFF'be in wuffs_base__magic_number_guess_fourcc() 16143 } else if (fourcc == 0x30302020) { // '00 'be in wuffs_base__magic_number_guess_fourcc() 16171 return fourcc; in wuffs_base__magic_number_guess_fourcc() 44675 DecodeImageCallbacks::SelectDecoder(uint32_t fourcc, in SelectDecoder() argument [all …]
|