Skip to content

Commit

Permalink
AV1 10bit decodeはうまく動作しないので無効化し、swデコーダを使用するようにする。 ( #92 )
Browse files Browse the repository at this point in the history
  • Loading branch information
rigaya committed Nov 8, 2023
1 parent 8122475 commit 4961544
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion VCECore/vce_device.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ amf::AMFCapsPtr VCEDevice::getEncCaps(RGY_CODEC codec) {
}
//10bit深度のチェック
if (ret == AMF_OK
&& (codec == RGY_CODEC_HEVC || codec == RGY_CODEC_AV1)) {
&& (codec == RGY_CODEC_HEVC /* || codec == RGY_CODEC_AV1 */)) { // AV1 10bit decodeはうまく動作しないので無効化し、swデコーダを使用するようにする
amf::AMFComponentPtr p_encoder;
if (m_factory->CreateComponent(m_context, codec_rgy_to_enc(codec), &p_encoder) == AMF_OK) {
try {
Expand Down

0 comments on commit 4961544

Please sign in to comment.