HomeSort by relevance Sort by last modified time
    Searched defs:pix_fmt (Results 1 - 3 of 3) sorted by null

  /external/v4l2_codec2/vda/
v4l2_device.cc 33 VideoPixelFormat V4L2Device::V4L2PixFmtToVideoPixelFormat(uint32_t pix_fmt) {
34 switch (pix_fmt) {
108 uint32_t pix_fmt,
113 switch (pix_fmt) {
140 VLOGF(1) << "Unhandled pixelformat " << std::hex << "0x" << pix_fmt; local
  /device/google/cuttlefish_common/guest/hals/camera/
EmulatedCamera.cpp 361 const char* pix_fmt = mParameters.getPictureFormat(); local
362 if (strcmp(pix_fmt, CameraParameters::PIXEL_FORMAT_YUV420P) == 0) {
364 } else if (strcmp(pix_fmt, CameraParameters::PIXEL_FORMAT_RGBA8888) == 0) {
366 } else if (strcmp(pix_fmt, CameraParameters::PIXEL_FORMAT_YUV420SP) == 0) {
368 } else if (strcmp(pix_fmt, CameraParameters::PIXEL_FORMAT_JPEG) == 0) {
372 ALOGE("%s: Unsupported pixel format %s", __FUNCTION__, pix_fmt);
411 reinterpret_cast<const char*>(&org_fmt), pix_fmt, width, height);
611 const char* pix_fmt = NULL; local
618 pix_fmt = mParameters.get(CameraParameters::KEY_VIDEO_FRAME_FORMAT);
622 if (pix_fmt == NULL)
    [all...]
  /device/generic/goldfish/camera/
EmulatedCamera.cpp 504 const char* pix_fmt = mParameters.getPictureFormat(); local
505 if (!GetFourCcFormatFromCameraParam(pix_fmt, &org_fmt)) {
508 if (strcmp(pix_fmt, CameraParameters::PIXEL_FORMAT_JPEG) == 0) {
512 ALOGE("%s: Unsupported pixel format %s", __FUNCTION__, pix_fmt);
533 reinterpret_cast<const char*>(&org_fmt), pix_fmt, width, height);
768 const char* pix_fmt = nullptr; local
776 pix_fmt = mParameters.get(CameraParameters::KEY_VIDEO_FRAME_FORMAT);
778 if (pix_fmt == nullptr) {
779 pix_fmt = mParameters.getPreviewFormat();
781 if (pix_fmt == nullptr)
    [all...]

Completed in 108 milliseconds