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
告知
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.

Bug in IMSDK samples

OTorg
新規コントリビューター III
1,262件の閲覧回数

line at current sample_encode\src\pipeline_encode.cpp:
[plain]initPar.Implementation = (initPar.Implementation & !MFX_IMPL_HARDWARE_ANY) | MFX_IMPL_HARDWARE;[/plain]

should be replaced by:
[plain]initPar.Implementation = (initPar.Implementation & ~MFX_IMPL_HARDWARE_ANY) | MFX_IMPL_HARDWARE;[/plain]

(binary NOT confused with logical NOT)

0 件の賞賛
1 解決策
Mark_L_Intel1
モデレーター
1,262件の閲覧回数

Thanks, I will post a bug to the dev team.

Mark

元の投稿で解決策を見る

3 返答(返信)
Mark_L_Intel1
モデレーター
1,262件の閲覧回数

Hi dj_alek,

Thanks for checking the sample code. Can you also confirm if the sample can run correctly after your suggested code change? I will report the bug once you confirmed.

Mark

OTorg
新規コントリビューター III
1,262件の閲覧回数

Yes, the sample runs correctly.

PS:
This is such an obvious mistake that it doesn't even need to be checked:)

Mark_L_Intel1
モデレーター
1,263件の閲覧回数

Thanks, I will post a bug to the dev team.

Mark

返信