Media (Intel® Video Processing Library, Intel Media SDK)
Access community support with transcoding, decoding, and encoding in applications using media tools like Intel® oneAPI Video Processing Library and Intel® Media SDK
Announcements
The Intel Media SDK project is no longer active. For continued support and access to new features, Intel Media SDK users are encouraged to read the transition guide on upgrading from Intel® Media SDK to Intel® Video Processing Library (VPL), and to move to VPL as soon as possible.
For more information, see the VPL website.

MFX_WRN_INCOMPATIBLE_VIDEO_PARAM + MFX_WRN_PARTIAL_ACCELERATION

OTorg
New Contributor III
453 Views

What is returned by MFXVideoENCODE_Init, MFXVideoENCODE_QueryIOSurf, etc in a cases when both MFX_WRN_INCOMPATIBLE_VIDEO_PARAM and MFX_WRN_PARTIAL_ACCELERATION are the supposed return values (MFX_WRN_* are enumerated values, not a bitset)? Is it possible to detect presence of both (e.g. via some additional MFX* calls)?

The same goes for MFX_WRN_PARTIAL_ACCELERATION + MFX_WRN_INCOMPATIBLE_VIDEO_PARAM + MFX_WRN_FILTER_SKIPPED at MFXVideoVPP_Init, etc, etc, etc...

 

0 Kudos
2 Replies
Anthony_P_Intel
Employee
453 Views

Hi,

The SDK functions may return errors or other warnings overwriting MFX_WRN_PARTIAL_ACCELERATION, as it is a lower priority warning.  When MFX_WRN_INCOMPATIBLE_VIDEO_PARAM is returned from Init , you can then call Query with the modified parameters as input and see MFX_WRN_PARTIAL_ACCELERATION status, OR do it the other way, and call Query first so that you know you will not get MFX_WRN_INCOMPATIBLE_VIDEO_PARAM during call to Init (or future Query).

0 Kudos
OTorg
New Contributor III
453 Views

Thanks!

0 Kudos
Reply