Skip to content
Snippets Groups Projects
Commit 6798ec48 authored by Ludovico de Nittis's avatar Ludovico de Nittis
Browse files

check-va-api: use stdbool.h boolean definitions

parent 6a887005
No related branches found
No related tags found
1 merge request!363check-va-api: Do not stop if one decoding profile fails
......@@ -167,9 +167,9 @@ _do_vaapi (const char *description,
if (va_status != VA_STATUS_SUCCESS)
{
fprintf (stderr, "%s failed: %s (%d)\n", description, vaErrorStr (va_status), va_status);
return False;
return false;
}
return True;
return true;
}
int
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment