Home
last modified time | relevance | path

Searched refs:max_resolution (Results 1 – 10 of 10) sorted by relevance

/external/v4l2_codec2/vda/
Dv4l2_device.cc284 Size* max_resolution) { in GetSupportedResolution() argument
285 max_resolution->SetSize(0, 0); in GetSupportedResolution()
293 base::checked_cast<uint32_t>(max_resolution->width()) && in GetSupportedResolution()
295 base::checked_cast<uint32_t>(max_resolution->height())) { in GetSupportedResolution()
296 max_resolution->SetSize(frame_size.discrete.width, in GetSupportedResolution()
309 max_resolution->SetSize(frame_size.stepwise.max_width, in GetSupportedResolution()
316 if (max_resolution->IsEmpty()) { in GetSupportedResolution()
317 max_resolution->SetSize(1920, 1088); in GetSupportedResolution()
320 << ", fall back to " << max_resolution->ToString(); in GetSupportedResolution()
362 &profile.max_resolution); in EnumerateSupportedDecodeProfiles()
[all …]
Dvideo_decode_accelerator.cc66 << "x" << sp.min_resolution.height() << "->" << sp.max_resolution.width() in AsHumanReadableString()
67 << "x" << sp.max_resolution.height(); in AsHumanReadableString()
Dv4l2_device.h108 Size* max_resolution);
Dvideo_decode_accelerator.h38 Size max_resolution; member
Dv4l2_video_decode_accelerator.cc1866 Size max_resolution, min_resolution; in SetupFormats() local
1868 &max_resolution); in SetupFormats()
1869 if (max_resolution.width() > 1920 && max_resolution.height() > 1088) in SetupFormats()
/external/autotest/client/site_tests/camera_V4L2/src/
Dmedia_v4l2_test.cc326 SupportedFormat max_resolution = GetMaximumResolution(supported_formats); in TestResolutions() local
347 } else if (max_resolution.width >= 1920 && max_resolution.height >= 1200) { in TestResolutions()
355 if (max_resolution.width < test_resolution.width || in TestResolutions()
356 max_resolution.height < test_resolution.height) { in TestResolutions()
550 SupportedFormat max_resolution = GetMaximumResolution(supported_formats); in TestMaximumSupportedResolution() local
567 if (max_resolution.width < required_width || in TestMaximumSupportedResolution()
568 max_resolution.height < required_height) { in TestMaximumSupportedResolution()
570 "%dx%d for %s-facing\n", max_resolution.width, in TestMaximumSupportedResolution()
571 max_resolution.height, required_width, required_height, in TestMaximumSupportedResolution()
/external/drm_hwcomposer/
Ddrmdevice.h55 std::pair<uint32_t, uint32_t> max_resolution() const { in max_resolution() function
Ddrmhwctwo.cpp314 std::pair<uint32_t, uint32_t> max = drm_->max_resolution(); in GetClientTargetSupport()
/external/v4l2_codec2/
DC2VDAAdaptorProxy.cpp154 profiles[0].max_resolution = media::Size(4096, 4096); in GetSupportedProfiles()
DC2VDAComponent.cpp228 auto maxSize = supportedProfiles[0].max_resolution; in IntfImpl()