Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DDI] Fixed incorrect convert FOURCC to GMM format (P012) #1870

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion media_driver/linux/common/ddi/media_libva_caps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3578,7 +3578,7 @@ GMM_RESOURCE_FORMAT MediaLibvaCaps::ConvertFourccToGmmFmt(uint32_t fourcc)
case VA_FOURCC_IMC3 : return GMM_FORMAT_IMC3_TYPE;
case VA_FOURCC_P208 : return GMM_FORMAT_P208_TYPE;
case VA_FOURCC_P010 : return GMM_FORMAT_P010_TYPE;
case VA_FOURCC_P012 : return GMM_FORMAT_P016_TYPE;
case VA_FOURCC_P012 : return GMM_FORMAT_P012_TYPE;
case VA_FOURCC_P016 : return GMM_FORMAT_P016_TYPE;
case VA_FOURCC_Y210 : return GMM_FORMAT_Y210_TYPE;
case VA_FOURCC_Y410 : return GMM_FORMAT_Y410_TYPE;
Expand Down