libhb: disable scale_cuda again

Fixes #7218.
This commit is contained in:
Damiano Galassi 2025-09-17 08:32:41 +02:00
parent ad6ea06cf8
commit e8b9597e01
No known key found for this signature in database
GPG Key ID: 5452E231DFDBCA11
1 changed files with 0 additions and 10 deletions

View File

@ -261,16 +261,6 @@ static int hb_nvenc_are_filters_supported(hb_list_t *filters)
// Mode 0 doesn't require access to the frame data
supported = hb_dict_get_int(filter->settings, "mode") == 0;
break;
case HB_FILTER_CROP_SCALE:
{
// Crop is not supported
int top = hb_dict_get_int(filter->settings, "crop-top");
int bottom = hb_dict_get_int(filter->settings, "crop-bottom");
int left = hb_dict_get_int(filter->settings, "crop-left");
int right = hb_dict_get_int(filter->settings, "crop-right");
supported = top == 0 && bottom == 0 && left == 0 && right == 0;
break;
}
case HB_FILTER_FORMAT:
case HB_FILTER_AVFILTER:
break;