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;
}
#if (MFX_VERSION >= 1019)
mfxPlatform platform = { 0 };
status = MFXVideoCORE_QueryPlatform (session, &platform);
if (MFX_ERR_NONE == status) {
GST_INFO ("Detected MFX platform with device code %d", platform.CodeName);
} else {
GST_WARNING ("Platform auto-detection failed with MFX status %d", status);
{
mfxPlatform platform = { 0 };
status = MFXVideoCORE_QueryPlatform (session, &platform);
if (MFX_ERR_NONE == status) {
GST_INFO ("Detected MFX platform with device code %d", platform.CodeName);
} else {
GST_WARNING ("Platform auto-detection failed with MFX status %d", status);
}
}
#endif