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.

MFXQueryVersion with driver Version:15.33.22.3621 problem?

l_k_1
Beginner
476 Views

Hi,

          I use Version:15.33.22.3621 for my i7-4770 and i7-3370 both get  version.Minor == 10  ?

       

        mfxVersion HWversion = {0,1};
        mfxSession HWsession;
        mfxStatus sts;
        sts = MFXInit(MFX_IMPL_HARDWARE_ANY, &HWversion, &HWsession);  
        if (MFX_ERR_NONE == sts)
        {
            MFXQueryVersion(HWsession,&version);
            #ifdef _DEBUG
            printf("\nIntel Media SDK. HW API Level: %d.%d",version.Major, version.Minor);
            #endif
        }

       And I get error for use this version.Minor == 10 to init session ?      

Please Help!  

Regards,

LK

0 Kudos
2 Replies
Anthony_P_Intel
Employee
476 Views

The driver you are using does not actually support API 1.10 (which is not a published API yet), and the query is incorrect.  The error on initialization is correct. Please do not use API value that is higher than the SDK you are using.

Thank you for pointing out this bug.

0 Kudos
l_k_1
Beginner
476 Views

Thanks, Tony

       Get it.

Regards,

LK

0 Kudos
Reply