hwdec_vaapi: suppress comparision warning

comparison of unsigned expression in '< 0' is always false
This commit is contained in:
Kacper Michajłow 2024-06-06 23:13:20 +02:00
parent b2a4c0ce91
commit dea176a7bf
1 changed files with 4 additions and 2 deletions

View File

@ -84,16 +84,18 @@ static const struct va_create_native create_native_cbs[] = {
#if HAVE_VAAPI_DRM
{"drm", create_drm_va_display},
#endif
{0}
};
static VADisplay *create_native_va_display(struct ra *ra, struct mp_log *log)
{
for (int n = 0; n < MP_ARRAY_SIZE(create_native_cbs); n++) {
const struct va_create_native *disp = &create_native_cbs[n];
const struct va_create_native *disp = create_native_cbs;
while (disp->name) {
mp_verbose(log, "Trying to open a %s VA display...\n", disp->name);
VADisplay *display = disp->create(ra);
if (display)
return display;
disp++;
}
return NULL;
}