Skip to content

Commit

Permalink
VVCデコードのテストを追加。
Browse files Browse the repository at this point in the history
  • Loading branch information
rigaya committed Dec 18, 2024
1 parent 973685f commit 9f35193
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions QSVPipeline/qsv_query.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -524,6 +524,10 @@ std::vector<RGY_CSP> CheckDecFeaturesInternal(MFXVideoSession& session, mfxVersi
videoPrm.mfx.CodecProfile = MFX_PROFILE_AV1_MAIN;
videoPrm.mfx.CodecLevel = MFX_LEVEL_AV1_4;
break;
case MFX_CODEC_VVC:
videoPrm.mfx.CodecProfile = MFX_PROFILE_VVC_MAIN10;
videoPrm.mfx.CodecLevel = MFX_LEVEL_VVC_4;
break;
default:
return supportedCsp;
}
Expand Down
3 changes: 3 additions & 0 deletions QSVPipeline/rgy_avutil.h
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,9 @@ static const CodecMap HW_DECODE_LIST[] = {
{ AV_CODEC_ID_MPEG4, RGY_CODEC_MPEG4 },
#endif
{ AV_CODEC_ID_AV1, RGY_CODEC_AV1 },
#if ENCODER_QSV
{ AV_CODEC_ID_VVC, RGY_CODEC_VVC },
#endif
//{ AV_CODEC_ID_WMV3, RGY_CODEC_VC1 },
};

Expand Down

0 comments on commit 9f35193

Please sign in to comment.