msdk: set right BitDepth and Shift for Y210 mfx frame

BitDepth is 10 and Shitf must be set to 1 when creating Y210 mfx
frame in MSDK
This commit is contained in:
Haihao Xiang 2019-05-30 12:20:54 +08:00 committed by Víctor Manuel Jáquez Leal
parent 32fce730ed
commit a3f8faa682

View file

@ -282,10 +282,19 @@ gst_msdk_set_mfx_frame_info_from_video_info (mfxFrameInfo * mfx_info,
mfx_info->ChromaFormat =
gst_msdk_get_mfx_chroma_from_format (GST_VIDEO_INFO_FORMAT (info));
if (mfx_info->FourCC == MFX_FOURCC_P010) {
switch (mfx_info->FourCC) {
case MFX_FOURCC_P010:
#if (MFX_VERSION >= 1027)
case MFX_FOURCC_Y210:
#endif
mfx_info->BitDepthLuma = 10;
mfx_info->BitDepthChroma = 10;
mfx_info->Shift = 1;
break;
default:
break;
}
return;