RHEL - va version check for av1 (#365)

* rhel va version check for av1

* remove #else case

[ROCm/rocdecode commit: 4f8506daec]
Tento commit je obsažen v:
Lakshmi Kumar
2024-06-10 08:09:29 -07:00
odevzdal GitHub
rodič a10f3ed86c
revize 8fb1019406
+4 -1
Zobrazit soubor
@@ -152,9 +152,11 @@ rocDecStatus VaapiVideoDecoder::CreateDecoderConfig() {
case rocDecVideoCodec_AVC:
va_profile_ = VAProfileH264Main;
break;
#if VA_CHECK_VERSION(1,6,0)
case rocDecVideoCodec_AV1:
va_profile_ = VAProfileAV1Profile0;
break;
#endif
default:
ERR("The codec type is not supported.");
return ROCDEC_NOT_SUPPORTED;
@@ -303,7 +305,7 @@ rocDecStatus VaapiVideoDecoder::SubmitDecode(RocdecPicParams *pPicParams) {
}
break;
}
#if VA_CHECK_VERSION(1,6,0)
case rocDecVideoCodec_AV1: {
pPicParams->pic_params.av1.current_frame = curr_surface_id;
@@ -345,6 +347,7 @@ rocDecStatus VaapiVideoDecoder::SubmitDecode(RocdecPicParams *pPicParams) {
}
break;
}
#endif
default: {
ERR("The codec type is not supported.");