Skip to content

Commit

Permalink
Revert "VPL での AV1 を未サポートとする"
Browse files Browse the repository at this point in the history
This reverts commit 796f48e.
  • Loading branch information
miosakuma committed Aug 2, 2024
1 parent b806b2e commit 63e84d5
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/hwenc_vpl/vpl_video_encoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -676,13 +676,6 @@ bool VplVideoEncoder::IsSupported(std::shared_ptr<VplSession> session,
return false;
}

// FIXME(miosakuma): Intel Core Ultra 7 では IsSupported(AV1) == true となるが、
// 実際に使ってみると映像が送信されないため、一時的に AV1 だったら未サポートとして返す。
// (VPL の問題なのか使い方の問題なのかは不明)
if (codec == webrtc::kVideoCodecAV1) {
return false;
}

auto encoder = VplVideoEncoderImpl::CreateEncoder(
session, ToMfxCodec(codec), 1920, 1080, 30, 10, 20, false);
bool result = encoder != nullptr;
Expand Down

0 comments on commit 63e84d5

Please sign in to comment.