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.

tutorial_screen_capture ERROR!!!

keiyuen__feng
Beginner
889 Views

hello

   when i using the pluging(mfxplugin64_screen_capture.dll) to capture the desktop

mfxVideoParam par;

.......

 par.mfx.FrameInfo.FourCC = params.fourcc;
    par.mfx.FrameInfo.ChromaFormat = params.chroma_format;
    par.mfx.CodecId = MFX_CODEC_CAPTURE;

//par.NumExtParam = 1;
   // par.ExtParam = &mfxextbuf;

..........

everything works well!

when:

mfxVideoParam par;

.......

 par.mfx.FrameInfo.FourCC = params.fourcc;
    par.mfx.FrameInfo.ChromaFormat = params.chroma_format;
    par.mfx.CodecId = MFX_CODEC_CAPTURE;

par.NumExtParam = 1;
par.ExtParam = &mfxextbuf;

..........

mfxSts = MFXVideoDECODE_Query(mfxSes, &par, &par);

always return MFX_ERR_UNSUPPORTED.

what's the problem with this??how can i to do?

 

0 Kudos
1 Reply
Mark_L_Intel1
Moderator
889 Views

Hi Keiyuen,

Is this related to the other post before?

https://software.intel.com/en-us/forums/intel-media-sdk/topic/796416

I think the error message tells me the driver doesn't support this feature, did you confirm with our previous release (Media SDK for Windows 2017) and old sample release(check the samples released in 2017). I think once we have the environment aligned, this should work.

Mark

0 Kudos
Reply