From 4e97cc24a75973bec84ce046c734a924a7001361 Mon Sep 17 00:00:00 2001 From: Tong Wu Date: Fri, 1 Apr 2022 15:35:17 +0800 Subject: [PATCH] msdk: use mfxU32 instead of uint32_t Msdk should use mfx variables defined in mfxdefs.h. Replace uint32_t with mfxU32. Part-of: --- subprojects/gst-plugins-bad/sys/msdk/msdk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gst-plugins-bad/sys/msdk/msdk.c b/subprojects/gst-plugins-bad/sys/msdk/msdk.c index fc5462f..a415e10 100644 --- a/subprojects/gst-plugins-bad/sys/msdk/msdk.c +++ b/subprojects/gst-plugins-bad/sys/msdk/msdk.c @@ -187,7 +187,7 @@ msdk_init_msdk_session (mfxIMPL impl, mfxVersion * pver, mfxStatus sts = MFX_ERR_NONE; mfxLoader loader = NULL; mfxSession session = NULL; - uint32_t impl_idx = 0; + mfxU32 impl_idx = 0; mfxConfig cfg; mfxVariant impl_value; -- 2.7.4