HI All,
I am beginner in Intel media SDK. I am trying to run sample examples given in this
http://software.intel.com/sites/default/files/mediasdk-tutorials-0.0.3.tar.gz
On my set up i am able to run simple_session example which has printed output like this-
"
libva info: VA-API version 0.35.0
libva info: va_getDriverName() returns 0
libva info: Trying to open /usr/local/lib/dri/i965_drv_video.so
libva info: Found init function __vaDriverInit_0_35
libva info: va_openDriver() returns 0
Implementation: HARDWARE API Version: 1.15
"
When i ran Decode then also it worked.
But with Encode I am getting this error-
"
libva info: VA-API version 0.35.0
libva info: va_getDriverName() returns 0
libva info: Trying to open /usr/local/lib/dri/i965_drv_video.so
libva info: Found init function __vaDriverInit_0_35
libva info: va_openDriver() returns 0
Cannot get function of m_fvaCmExtSendReqMsg!
Device operation failure. src/simple_encode.cpp 172
"
On debugging i found that-
sts = mfxENC.Init(&mfxEncParams);
MSDK_IGNORE_MFX_STS(sts, MFX_WRN_PARTIAL_ACCELERATION);
MSDK_CHECK_RESULT(sts, MFX_ERR_NONE, sts);
this sts value= MFX_ERR_DEVICE_FAILED.
Plz suggest how to proceed further. Let me know if more information is required.