msdk: set right BitDepth and Shift for P010 mfx frame

BitDepth is 10 and Shitf must be set to 1 when creating P010 mfx
frame in MSDK
This commit is contained in:
Xiang, Haihao 2018-11-19 22:24:33 +08:00 committed by Víctor Manuel Jáquez Leal
parent fda4918cc8
commit 2b0923842a

View file

@ -274,6 +274,12 @@ gst_msdk_set_mfx_frame_info_from_video_info (mfxFrameInfo * mfx_info,
mfx_info->ChromaFormat = mfx_info->ChromaFormat =
gst_msdk_get_mfx_chroma_from_format (GST_VIDEO_INFO_FORMAT (info)); gst_msdk_get_mfx_chroma_from_format (GST_VIDEO_INFO_FORMAT (info));
if (mfx_info->FourCC == MFX_FOURCC_P010) {
mfx_info->BitDepthLuma = 10;
mfx_info->BitDepthChroma = 10;
mfx_info->Shift = 1;
}
return; return;
} }