Home
last modified time | relevance | path

Searched refs:hdrType (Results 1 – 4 of 4) sorted by relevance

/aosp12/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/displaysound/
H A DHdrFormatSelectionFragment.java140 for (int hdrType : mDeviceHdrTypes) { in onCreatePreferenceControllers()
230 for (int hdrType : HDR_FORMATS_DISPLAY_ORDER) { in createFormatPreferences()
231 if (mDeviceHdrTypes.contains(hdrType)) { in createFormatPreferences()
266 for (int hdrType : HDR_FORMATS_DISPLAY_ORDER) { in createFormatInfoPreferences()
267 if (mDeviceHdrTypes.contains(hdrType)) { in createFormatInfoPreferences()
295 pref.setKey(KEY_HDR_FORMAT_PREFIX + hdrType); in createSupportedFormatPreference()
297 if (getLogEntryId(hdrType) != -1) { in createSupportedFormatPreference()
311 pref.setKey(KEY_HDR_FORMAT_PREFIX + hdrType); in createUnsupportedFormatPreference()
373 switch (hdrType) { in getFormatPreferenceTitleId()
387 private int getLogEntryId(int hdrType) { in getLogEntryId() argument
[all …]
H A DHdrFormatPreferenceController.java40 Context context, int hdrType, DisplayManager displayManager) { in HdrFormatPreferenceController() argument
42 mHdrType = hdrType; in HdrFormatPreferenceController()
/aosp12/frameworks/base/apex/media/framework/java/android/media/
H A DApplicationMediaCapabilities.java137 @NonNull @MediaFeature.MediaHdrType String hdrType) { in isHdrTypeSupported()
138 if (mSupportedHdrTypes.contains(hdrType)) { in isHdrTypeSupported()
570 @NonNull @MediaFeature.MediaHdrType String hdrType) { in addSupportedHdrType()
571 if (!isValidVideoCodecHdrType(hdrType)) { in addSupportedHdrType()
574 mSupportedHdrTypes.add(hdrType); in addSupportedHdrType()
583 if (!hdrType.equals(MediaFeature.HdrType.DOLBY_VISION) in isValidVideoCodecHdrType()
584 && !hdrType.equals(MediaFeature.HdrType.HDR10) in isValidVideoCodecHdrType()
586 && !hdrType.equals(MediaFeature.HdrType.HLG)) { in isValidVideoCodecHdrType()
601 @NonNull @MediaFeature.MediaHdrType String hdrType) { in addUnsupportedHdrType()
602 if (!isValidVideoCodecHdrType(hdrType)) { in addUnsupportedHdrType()
[all …]
/aosp12/frameworks/native/services/surfaceflinger/CompositionEngine/src/
H A DDisplayColorProfile.cpp197 for (ui::Hdr hdrType : types) { in DisplayColorProfile() local
198 switch (hdrType) { in DisplayColorProfile()
212 ALOGE("UNKNOWN HDR capability: %d", static_cast<int32_t>(hdrType)); in DisplayColorProfile()