msdk: Fix mixed declarations warning

msdk.c:194:3: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
This commit is contained in:
Seungha Yang 2019-11-27 12:24:46 +09:00
parent e3297be433
commit 00cb881431

View file

@ -191,12 +191,14 @@ msdk_open_session (mfxIMPL impl)
goto failed; goto failed;
} }
#if (MFX_VERSION >= 1019) #if (MFX_VERSION >= 1019)
mfxPlatform platform = { 0 }; {
status = MFXVideoCORE_QueryPlatform (session, &platform); mfxPlatform platform = { 0 };
if (MFX_ERR_NONE == status) { status = MFXVideoCORE_QueryPlatform (session, &platform);
GST_INFO ("Detected MFX platform with device code %d", platform.CodeName); if (MFX_ERR_NONE == status) {
} else { GST_INFO ("Detected MFX platform with device code %d", platform.CodeName);
GST_WARNING ("Platform auto-detection failed with MFX status %d", status); } else {
GST_WARNING ("Platform auto-detection failed with MFX status %d", status);
}
} }
#endif #endif