7 lines
244 B
C
7 lines
244 B
C
#pragma once
|
|
|
|
#define VA_CHECK(x) do{VAStatus s; if ((s = (x)) != VA_STATUS_SUCCESS) KMSVNC_FATAL("va operation error %#x %s on line %d\n", s, vaErrorStr(s), __LINE__); } while (0)
|
|
|
|
void va_cleanup ();
|
|
int va_init();
|
|
int va_hwframe_to_vaapi();
|