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.
3056 Discussions

MFX_ERR_UNDEFINED_BEHAVIOR after update of graphics driver.

marina_golovkina
Beginner
631 Views
Hi,

I encode the same stream in a cycle. Each time I call MFXVideoENCODE_Init and MFXVideoENCODE_Close. I use auto selection of any hardware implementation (MFX_IMPL_HARDWARE_ANY).

Stream info:
width = 320
height = 240
FourCC = YV12
56 frames

For example:

int total_frame_cnt = 0; //total count of encoded frames
while(1)
{
MFXVideoENCODE_Init();
Encode 56 frames...
total_frame_cnt += 56;
MFXVideoENCODE_Close();
}

After update of Processor Graphics 2000 to version 8.15.10.2696 MFXVideoENCODE_Init returns MFX_ERR_UNDEFINED_BEHAVIOR when total_frame_cnt = 114632.

0 Kudos
3 Replies
marina_golovkina
Beginner
631 Views
CodecId = MFX_CODEC_AVC
0 Kudos
Eric_S_Intel
Employee
631 Views

Hi,

Thanks for letting us know. We will investigate it.

-Eric

0 Kudos
Petter_L_Intel
Employee
631 Views
Hi Marina,

this has been confirmed to be an issue when using an HW accelerated session. We will work to get this resolved as soon as possible.

As a workaround you can instead close the session and create a new one for each encoding workload.

Regards,
Petter
0 Kudos
Reply