Home
last modified time | relevance | path

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

/external/v4l2_codec2/components/
DV4L2EncodeInterface.cpp271 supportedProfile.max_resolution.width, supportedProfile.max_resolution.height); in Initialize()
273 maxSize.setWidth(std::max(maxSize.width, supportedProfile.max_resolution.width)); in Initialize()
274 maxSize.setHeight(std::max(maxSize.height, supportedProfile.max_resolution.height)); in Initialize()
/external/drm_hwcomposer/drm/
DDrmDevice.h56 std::pair<uint32_t, uint32_t> max_resolution() const { in max_resolution() function
/external/v4l2_codec2/common/include/v4l2_codec2/common/
DV4L2Device.h325 ui::Size max_resolution; member
335 ui::Size max_resolution; member
/external/v4l2_codec2/common/
DV4L2Device.cpp1807 getSupportedResolution(pixelFormat, &profile.min_resolution, &profile.max_resolution); in enumerateSupportedDecodeProfiles()
1817 toString(profile.max_resolution).c_str()); in enumerateSupportedDecodeProfiles()
1835 getSupportedResolution(pixelformat, &minResolution, &profile.max_resolution); in enumerateSupportedEncodeProfiles()
1844 toString(profile.max_resolution).c_str()); in enumerateSupportedEncodeProfiles()
/external/drm_hwcomposer/
DDrmHwcTwo.cpp368 std::pair<uint32_t, uint32_t> max = drm_->max_resolution(); in GetClientTargetSupport()