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

H.264 full range encoding,decoding and conversion to/from RGB4

mathias_m_
Beginner
431 Views

Hello,
I am using Intel Media SDK 1.19 on Windows. Currently I try to figure out

1. How to convert an image from RGB4 to NV12 color space with "full range" color values I tried to use the mfxExtVPPVideoSignalInfo as extended parameter at the VPP initialization, but then the Init call always returns error -14 (MFX_ERR_INCOMPATIBLE_VIDEO_PARAM).

    mfxExtVPPVideoSignalInfo video_signal_info = {};
    video_signal_info.Header.BufferId = MFX_EXTBUFF_VPP_VIDEO_SIGNAL_INFO;
    video_signal_info.Header.BufferSz = sizeof(mfxExtVPPVideoSignalInfo);
    video_signal_info.TransferMatrix = MFX_TRANSFERMATRIX_UNKNOWN;
    video_signal_info.NominalRange = MFX_NOMINALRANGE_0_255;


2. How to use the mfxExtVideoSignalInfo structure at the initialization step of the encoder.

Are there any examples which illustrates these features ?

Best regards,
Mathias

 

0 Kudos
0 Replies
Reply