mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
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:
parent
32fce730ed
commit
a3f8faa682
1 changed files with 13 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue