Skip to content

Commit

Permalink
[c2][hdr] Remove 10-bit HDR/HDR+ advertised support for framework
Browse files Browse the repository at this point in the history
case:
testHDRDisplayCapabilities[6_video/x-vnd.on2.vp9_c2.intel.vp9.decoder]
testHDRDisplayCapabilities[7_video/x-vnd.on2.vp9_c2.intel.vp9.encoder]

Temporarily remove 10-bit HDR advertised support until we actually
support them.

Tracked-On: OAM-118634
Signed-off-by: Zhang, YichiX <[email protected]>
  • Loading branch information
zhangyichix authored and sysopenci committed Jul 3, 2024
1 parent f99be71 commit d3aa084
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions c2_components/src/mfx_c2_decoder_component.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -370,8 +370,9 @@ MfxC2DecoderComponent::MfxC2DecoderComponent(const C2String name, const CreateCo
.oneOf({
PROFILE_VP9_0,
PROFILE_VP9_1,
PROFILE_VP9_2,
PROFILE_VP9_3,
// TODO: support 10-bit HDR
// PROFILE_VP9_2,
// PROFILE_VP9_3,
}),
C2F(m_profileLevel, C2ProfileLevelStruct::level)
.oneOf({
Expand Down
5 changes: 3 additions & 2 deletions c2_components/src/mfx_c2_encoder_component.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -376,8 +376,9 @@ MfxC2EncoderComponent::MfxC2EncoderComponent(const C2String name, const CreateCo
.oneOf({
PROFILE_VP9_0,
PROFILE_VP9_1,
PROFILE_VP9_2,
PROFILE_VP9_3,
// TODO: support 10-bit HDR
// PROFILE_VP9_2,
// PROFILE_VP9_3,
}),
C2F(m_profileLevel, C2ProfileLevelStruct::level)
.oneOf({
Expand Down

0 comments on commit d3aa084

Please sign in to comment.